Home
last modified time | relevance | path

Searched refs:mContent (Results 1 – 20 of 20) sorted by relevance

/aosp14/frameworks/base/telephony/java/android/telephony/ims/
H A DSipMessage.java50 private final byte[] mContent; field in SipMessage
70 mContent = content; in SipMessage()
86 mContent = new byte[source.readInt()]; in SipMessage()
87 source.readByteArray(mContent); in SipMessage()
111 return mContent; in getContent()
140 dest.writeInt(mContent.length); in writeToParcel()
141 dest.writeByteArray(mContent); in writeToParcel()
195 && Arrays.equals(mContent, that.mContent); in equals()
201 result = 31 * result + Arrays.hashCode(mContent); in hashCode()
221 byte[] sipMessage = new byte[header.length + mContent.length]; in toEncodedMessage()
[all …]
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DDecorCaptionView.java82 private View mContent; field in DecorCaptionView
258 mContent = child; in addView()
270 if (mContent != null) { in onMeasure()
274 measureChildWithMargins(mContent, widthMeasureSpec, 0, heightMeasureSpec, in onMeasure()
297 if (mContent != null) { in onLayout()
299 mContent.layout(0, 0, mContent.getMeasuredWidth(), mContent.getMeasuredHeight()); in onLayout()
301 mContent.layout(0, captionHeight, mContent.getMeasuredWidth(), in onLayout()
302 captionHeight + mContent.getMeasuredHeight()); in onLayout()
340 if (mContent != null) { in removeContentView()
341 removeView(mContent); in removeContentView()
[all …]
H A DActionBarOverlayLayout.java60 private View mContent; field in ActionBarOverlayLayout
453 applyInsets(mContent, mContentInsets, true, true, true, true);
460 mContent.dispatchApplyWindowInsets(mInnerInsets);
463 measureChildWithMargins(mContent, widthMeasureSpec, 0, heightMeasureSpec, 0);
464 lp = (LayoutParams) mContent.getLayoutParams();
466 mContent.getMeasuredWidth() + lp.leftMargin + lp.rightMargin);
468 mContent.getMeasuredHeight() + lp.topMargin + lp.bottomMargin);
469 childState = combineMeasuredStates(childState, mContent.getMeasuredState());
587 if (mContent == null) {
588 mContent = findViewById(com.android.internal.R.id.content);
/aosp14/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextureViewActivity.java43 private FrameLayout mContent; field in TextureViewActivity
50 mContent = new FrameLayout(this); in onCreate()
83 mContent.removeView(mTextureView); in onCreate()
85 mContent.addView(mTextureView); in onCreate()
91 mContent.addView(mTextureView, new FrameLayout.LayoutParams( in onCreate()
94 mContent.addView(button, new FrameLayout.LayoutParams( in onCreate()
97 setContentView(mContent); in onCreate()
H A DMyLittleTextureView.java36 private RenderNode mContent = new RenderNode("CustomRenderer"); field in MyLittleTextureView
52 mContent.setLeftTopRightBottom(0, 0, 100, 100); in onCreate()
70 Canvas canvas = mContent.beginRecording(); in onCreate()
76 mContent.endRecording(); in onCreate()
77 mRenderer.setContentRoot(mContent); in onCreate()
H A DMultiProducerActivity.java39 private View mContent = null; field in MultiProducerActivity
78 mContent = new View(this); in onCreate()
79 mContent.setBackground(new ColorPulse(0xFFF44336, 0xFF9C27B0, null)); in onCreate()
80 mContent.setOnClickListener(this); in onCreate()
83 layout.addView(mContent, contentLP); in onCreate()
189 mContent.getLocationInSurface(surfaceOrigin); in run()
191 surfaceOrigin[0] + mContent.getWidth(), in run()
192 surfaceOrigin[1] + mContent.getHeight()); in run()
/aosp14/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DWebContent.java28 private final String mContent; field in WebContent
33 mContent = content; in WebContent()
49 return mContent; in getContent()
/aosp14/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java104 private View mContent; field in SlidingDrawer
273 mContent = findViewById(mContentId); in onFinishInflate()
274 if (mContent == null) { in onFinishInflate()
278 mContent.setVisibility(View.GONE); in onFinishInflate()
333 drawChild(canvas, mContent, drawingTime); in dispatchDraw()
354 final View content = mContent; in onLayout()
665 final View content = mContent; in prepareContent()
851 mContent.setVisibility(View.GONE); in closeDrawer()
852 mContent.destroyDrawingCache(); in closeDrawer()
866 mContent.setVisibility(View.VISIBLE); in openDrawer()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/sensorprivacy/television/
H A DTvSensorPrivacyChangedActivity.java61 private TextView mContent; field in TvSensorPrivacyChangedActivity
112 mContent = findViewById(R.id.bottom_sheet_body); in initUI()
156 mContent.setText(R.string.sensor_privacy_mic_blocked_with_exception_dialog_content); in updateUiForMicUpdate()
158 mContent.setText(R.string.sensor_privacy_mic_blocked_no_exception_dialog_content); in updateUiForMicUpdate()
164 mContent.setText(R.string.sensor_privacy_mic_unblocked_dialog_content); in updateUiForMicUpdate()
173 mContent.setText(R.string.sensor_privacy_camera_blocked_dialog_content); in updateUiForCameraUpdate()
178 mContent.setText(R.string.sensor_privacy_camera_unblocked_dialog_content); in updateUiForCameraUpdate()
H A DTvUnblockSensorActivity.java73 private TextView mContent; field in TvUnblockSensorActivity
155 mContent = findViewById(R.id.bottom_sheet_body); in initUI()
191 mContent.setText( in updateUiForHardwareToggle()
204 mContent.setText(R.string.sensor_privacy_start_use_camera_blocked_dialog_content); in updateUiForHardwareToggle()
209 mContent.setText(R.string.sensor_privacy_start_use_mic_blocked_dialog_content); in updateUiForHardwareToggle()
231 mContent.setText(R.string.sensor_privacy_start_use_mic_dialog_content); in updateUiForSoftwareToggle()
237 mContent.setText(R.string.sensor_privacy_start_use_camera_dialog_content); in updateUiForSoftwareToggle()
244 mContent.setText(R.string.sensor_privacy_start_use_mic_camera_dialog_content); in updateUiForSoftwareToggle()
268 mContent.setText(R.string.sensor_privacy_htt_blocked_dialog_content); in updateUiForHTT()
/aosp14/frameworks/base/tests/SystemUIDemoModeController/src/com/example/android/demomodecontroller/
H A DDemoModeController.java44 private View mContent; field in DemoModeController
58 mContent = new View(mContext); in onCreate()
59 mContent.setBackgroundColor(0xff33b5e5); in onCreate()
60 mContent.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN in onCreate()
63 mContent.setOnTouchListener(this); in onCreate()
64 setContentView(mContent); in onCreate()
120 final int h = mContent.getMeasuredHeight(); in onTouch()
121 final int w = mContent.getMeasuredWidth(); in onTouch()
134 mContent.setBackgroundColor(color); in onTouch()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DFooterView.java117 return touchX < mContent.getX() in isOnEmptySpace()
118 || touchX > mContent.getX() + mContent.getWidth() in isOnEmptySpace()
119 || touchY < mContent.getY() in isOnEmptySpace()
120 || touchY > mContent.getY() + mContent.getHeight(); in isOnEmptySpace()
H A DStackScrollerDecorView.java37 protected View mContent; field in StackScrollerDecorView
73 mContent = findContentView(); in onFinishInflate()
107 setViewVisible(mContent, visible, animate, endRunnable); in setContentVisible()
/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/widget/
H A DActionBarOverlayLayoutTest.java68 private ViewGroup mContent; field in ActionBarOverlayLayoutTest
80 mContent = createViewGroupWithId(com.android.internal.R.id.content); in setUp()
81 mContent.setLayoutParams(new ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT)); in setUp()
82 mLayout.addView(mContent); in setUp()
85 mContent.setOnApplyWindowInsetsListener(mContentInsetsListener); in setUp()
/aosp14/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DLocalRenderer.java193 private PlayerContent mContent; field in LocalRenderer
301 mContent = mNextContent; in onCompletion()
326 && mContent != null && mContent.source.startsWith("http")) { in onError()
327 HttpGet request = new HttpGet(mContent.source); in onError()
328 if (mContent.headers != null) { in onError()
329 for (String key : mContent.headers.keySet()) { in onError()
330 request.addHeader(key, mContent.headers.get(key)); in onError()
408 mContent = new PlayerContent(source, headers); in setContent()
/aosp14/frameworks/base/core/java/com/android/internal/view/menu/
H A DListMenuItemView.java53 private LinearLayout mContent; field in ListMenuItemView
125 mContent = findViewById(com.android.internal.R.id.content); in onFinishInflate()
148 if (mContent != null) { in addContentView()
149 mContent.addView(v, index); in addContentView()
/aosp14/frameworks/base/tests/OneMedia/src/com/android/onemedia/
H A DPlayerSession.java54 private String mContent; field in PlayerSession
112 mContent = request.getString(RequestUtils.EXTRA_KEY_SOURCE); in setContent()
/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/
H A DSyntheticPasswordManager.java464 byte[] mContent; field in SyntheticPasswordManager.SyntheticPasswordBlob
471 result.mContent = content; in create()
479 result.mContent = Arrays.copyOfRange(data, 2, data.length); in fromBytes()
484 byte[] blob = new byte[mContent.length + 1 + 1]; in toByte()
487 System.arraycopy(mContent, 0, blob, 2, mContent.length); in toByte()
1570 blob.mContent, protectorSecret); in unwrapSyntheticPasswordBlob()
1572 spSecret = decryptSpBlob(getProtectorKeyAlias(protectorId), blob.mContent, in unwrapSyntheticPasswordBlob()
/aosp14/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java2268 private final @Nullable AssistContent mContent; field in VoiceInteractionSession.AssistState
2278 mContent = content; in AssistState()
2342 return mContent; in getAssistContent()
/aosp14/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt69771 Landroid/widget/SlidingDrawer;->mContent:Landroid/view/View;