Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/ims/
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 …]
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DProjectionSpace.h34 ProjectionSpace(ui::Size size, Rect content) : mBounds(size), mContent(std::move(content)) {} in ProjectionSpace()
51 const float sourceX = mContent.left; in getTransform()
52 const float sourceY = mContent.top; in getTransform()
59 const float scaleX = static_cast<float>(orientedDestContent.width()) / mContent.width(); in getTransform()
60 const float scaleY = static_cast<float>(orientedDestContent.height()) / mContent.height(); in getTransform()
86 return mBounds == other.mBounds && mContent == other.mContent &&
92 void setContent(Rect newContent) { mContent = std::move(newContent); } in setContent()
100 const Rect& getContent() const { return mContent; } in getContent()
109 Rect mContent = Rect(); variable
/frameworks/base/core/java/android/app/contextualsearch/
DContextualSearchState.java46 private final @Nullable AssistContent mContent; field in ContextualSearchState
57 mContent = content; in ContextualSearchState()
63 this.mContent = source.readTypedObject(AssistContent.CREATOR); in ContextualSearchState()
76 dest.writeTypedObject(this.mContent, flags); in writeToParcel()
83 return mContent; in getContent()
/frameworks/base/tests/graphics/HwAccelerationTest/src/com/android/test/hwui/
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()
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()
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()
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
DWebContent.java28 private final String mContent; field in WebContent
33 mContent = content; in WebContent()
49 return mContent; in getContent()
/frameworks/base/core/java/android/widget/
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()
298 mContent.measure(MeasureSpec.makeMeasureSpec(widthSpecSize, MeasureSpec.EXACTLY), in onMeasure()
302 mContent.measure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY), in onMeasure()
318 final Bitmap cache = mContent.getDrawingCache(); in dispatchDraw()
329 drawChild(canvas, mContent, drawingTime); in dispatchDraw()
333 drawChild(canvas, mContent, drawingTime); in dispatchDraw()
354 final View content = mContent; in onLayout()
[all …]
/frameworks/base/tests/SystemUIDemoModeController/src/com/example/android/demomodecontroller/
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()
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
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()
/frameworks/base/core/tests/coretests/src/com/android/internal/widget/
DActionBarOverlayLayoutTest.java71 private ViewGroup mContent; field in ActionBarOverlayLayoutTest
84 mContent = createViewGroupWithId(com.android.internal.R.id.content); in setUp()
85 mContent.setLayoutParams(new ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT)); in setUp()
86 mLayout.addView(mContent); in setUp()
89 mContent.setOnApplyWindowInsetsListener(mContentInsetsListener); in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/footer/ui/view/
DFooterView.java324 return touchX < mContent.getX() in isOnEmptySpace()
325 || touchX > mContent.getX() + mContent.getWidth() in isOnEmptySpace()
326 || touchY < mContent.getY() in isOnEmptySpace()
327 || touchY > mContent.getY() + mContent.getHeight(); in isOnEmptySpace()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DStackScrollerDecorView.java37 protected View mContent; field in StackScrollerDecorView
54 mContent = findContentView(); in onFinishInflate()
131 setViewVisible(mContent, visible, animate, onAnimationEndedWrapper); in setContentVisible()
/frameworks/base/core/java/com/android/internal/widget/
DActionBarOverlayLayout.java62 private View mContent; field in ActionBarOverlayLayout
524 setMargin(mContent, mContentInsets, true, true, true, true);
531 mContent.dispatchApplyWindowInsets(mInnerInsets);
534 measureChildWithMargins(mContent, widthMeasureSpec, 0, heightMeasureSpec, 0);
535 lp = (LayoutParams) mContent.getLayoutParams();
537 mContent.getMeasuredWidth() + lp.leftMargin + lp.rightMargin);
539 mContent.getMeasuredHeight() + lp.topMargin + lp.bottomMargin);
540 childState = combineMeasuredStates(childState, mContent.getMeasuredState());
658 if (mContent == null) {
659 mContent = findViewById(com.android.internal.R.id.content);
/frameworks/base/core/java/com/android/internal/view/menu/
DListMenuItemView.java54 private LinearLayout mContent; field in ListMenuItemView
126 mContent = findViewById(com.android.internal.R.id.content); in onFinishInflate()
149 if (mContent != null) { in addContentView()
150 mContent.addView(v, index); in addContentView()
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
DPlayerSession.java54 private String mContent; field in PlayerSession
112 mContent = request.getString(RequestUtils.EXTRA_KEY_SOURCE); in setContent()
/frameworks/av/media/libstagefright/rtsp/include/media/stagefright/rtsp/
DARTSPConnection.h32 sp<ABuffer> mContent; member
DMyHandler.h555 } else if (response->mContent == NULL) { in onMessageReceived()
562 response->mContent->data(), in onMessageReceived()
563 response->mContent->size()); in onMessageReceived()
/frameworks/base/services/core/java/com/android/server/locksettings/
DSyntheticPasswordManager.java469 byte[] mContent; field in SyntheticPasswordManager.SyntheticPasswordBlob
476 result.mContent = content; in create()
484 result.mContent = Arrays.copyOfRange(data, 2, data.length); in fromBytes()
489 byte[] blob = new byte[mContent.length + 1 + 1]; in toByte()
492 System.arraycopy(mContent, 0, blob, 2, mContent.length); in toByte()
1639 blob.mContent, protectorSecret); in unwrapSyntheticPasswordBlob()
1641 spSecret = decryptSpBlob(getProtectorKeyAlias(protectorId), blob.mContent, in unwrapSyntheticPasswordBlob()
/frameworks/av/media/libstagefright/rtsp/
DARTSPConnection.cpp732 response->mContent = new ABuffer(contentLength); in receiveRTSPReponse()
734 if (receive(response->mContent->data(), contentLength) != OK) { in receiveRTSPReponse()
/frameworks/base/core/java/android/service/voice/
DVoiceInteractionSession.java2306 private final @Nullable AssistContent mContent; field in VoiceInteractionSession.AssistState
2316 mContent = content; in AssistState()
2380 return mContent; in getAssistContent()
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt69128 Landroid/widget/SlidingDrawer;->mContent:Landroid/view/View;