Searched defs:mBounds (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/android/view/
H A DTouchDelegate.java46 private Rect mBounds; field in class:TouchDelegate
49 * mBounds inflated to include some slop. This rect is to track whether the motion events
55 * True if the delegate had been targeted on a down event (intersected mBounds).
91 mBounds = bounds;
115 Rect bounds = mBounds;
/frameworks/base/core/java/android/inputmethodservice/
H A DSoftInputWindow.java36 private final Rect mBounds = new Rect(); field in class:SoftInputWindow
71 getWindow().getDecorView().getHitRect(mBounds);
73 if (ev.isWithinBoundsNoHistory(mBounds.left, mBounds.top,
74 mBounds.right - 1, mBounds.bottom - 1)) {
77 MotionEvent temp = ev.clampNoHistory(mBounds.left, mBounds.top,
78 mBounds.right - 1, mBounds
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DFocusedStackFrame.java44 private final Rect mBounds = new Rect(); field in class:FocusedStackFrame
113 " mBounds=" + mBounds.toShortString());
118 if (!mLastBounds.equals(mBounds)) {
123 positionSurface(mBounds);
124 draw(mBounds, Color.WHITE);
126 mLastBounds.set(mBounds);
136 mBounds.set(bounds);
H A DDimLayer.java31 Rect mBounds = new Rect(); field in class:DimLayer
129 mBounds.set(bounds);
170 dw = mBounds.width();
171 dh = mBounds.height();
172 xPos = mBounds.left;
173 yPos = mBounds.right;
186 if (!mLastBounds.equals(mBounds) || mLayer != layer) {
194 mLastBounds.set(mBounds);
282 pw.print(" mBounds="); pw.println(mBounds
[all...]
H A DStackBox.java71 Rect mBounds = new Rect(); field in class:StackBox
76 /** Fraction of mBounds to devote to mFirst, remainder goes to mSecond */
120 * @return -1 if point is outside of mBounds, otherwise the stackId of the containing stack.
123 if (!mBounds.contains(x, y)) {
149 return mStack.mStackId == stackId ? new Rect(mBounds) : null;
297 change |= !mBounds.equals(bounds);
299 mBounds.set(bounds);
391 pw.print(prefix); pw.print("mBounds="); pw.print(mBounds.toShortString());
H A DDisplayMagnifier.java480 private final Region mBounds = new Region(); field in class:DisplayMagnifier.MagnifiedViewport.ViewportWindow
583 if (mBounds.equals(bounds)) {
586 mBounds.set(bounds);
623 mBounds.getBounds(mDirtyRect);
639 Slog.i(LOG_TAG, "Bounds: " + mBounds);
643 Path path = mBounds.getBoundaryPath();
/frameworks/base/core/java/android/hardware/camera2/
H A DFace.java50 private final Rect mBounds; field in class:Face
99 mBounds = bounds;
145 return mBounds;
248 mBounds, mScore, mId, mLeftEye, mRightEye, mMouth);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBidiRenderer.java58 private RectF mBounds; field in class:BidiRenderer
95 mBounds = new RectF(x, y, x, y);
103 return mBounds;
181 mGraphics.drawGlyphVector(gv, mBounds.right, mBaseline);
186 RectF bounds = awtRectToAndroidRect(awtBounds, mBounds.right, mBaseline);
189 if (Math.abs(mBounds.right - mBounds.left) == 0) {
190 mBounds = bounds;
192 mBounds.union(bounds);
/frameworks/av/services/audioflinger/
H A DFastMixer.h126 uint32_t mBounds; // bounds for mMonotonicNs, mThreadCpuNs, and mCpukHz member in struct:android::FastMixerDumpState
/frameworks/base/libs/hwui/
H A DDeferredDisplayList.h57 Rect mBounds; member in class:android::uirenderer::DeferredDisplayState
84 mBounds(bounds), mAvoidOverdraw(avoidOverdraw) {
88 void reset(const Rect& bounds) { mBounds.set(bounds); }
150 Rect mBounds; member in class:android::uirenderer::DeferredDisplayList
H A DFontRenderer.h202 Rect* mBounds; member in class:android::uirenderer::FontRenderer
H A DSkiaShader.h175 float* mBounds; member in struct:android::uirenderer::SkiaLinearGradientShader
H A DDeferredDisplayList.cpp71 mBounds.unionWith(state->mBounds);
77 if (!rect.intersects(mBounds)) return false;
80 if (rect.intersects(mOps[i].state->mBounds)) {
83 mOps[i].state->mBounds.left, mOps[i].state->mBounds.top,
84 mOps[i].state->mBounds.right, mOps[i].state->mBounds.bottom);
111 const Rect& bounds = state->mBounds;
126 if (CC_LIKELY(!mAllOpsOpaque || !mBounds
142 Rect mBounds; // union of bounds of contained ops member in class:android::uirenderer::DrawBatch
[all...]
/frameworks/base/core/java/android/widget/
H A DEdgeEffect.java126 private final Rect mBounds = new Rect(); field in class:EdgeEffect
375 mBounds.set(0, 0, mWidth, mMaxEffectHeight);
376 mBounds.offset(mX, mY - (reverse ? mMaxEffectHeight : 0));
378 return mBounds;
H A DTabWidget.java63 private final Rect mBounds = new Rect(); field in class:TabWidget
342 final Rect bounds = mBounds;
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.h135 inline const SkRect& getBounds() const { return mBounds; }
154 SkRect mBounds; member in class:android::TextLayoutValue
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java124 private Rect mBounds = ZERO_BOUNDS_RECT; // lazily becomes a new Rect() field in class:Drawable
143 Rect oldBounds = mBounds;
146 oldBounds = mBounds = new Rect();
155 mBounds.set(left, top, right, bottom);
156 onBoundsChange(mBounds);
177 bounds.set(mBounds);
189 return new Rect(mBounds);
208 if (mBounds == ZERO_BOUNDS_RECT) {
209 mBounds = new Rect();
212 return mBounds;
[all...]

Completed in 433 milliseconds