Home
last modified time | relevance | path

Searched refs:mBounds (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/core/java/android/inputmethodservice/
DSoftInputWindow.java40 private final Rect mBounds = new Rect(); field in SoftInputWindow
75 getWindow().getDecorView().getHitRect(mBounds); in dispatchTouchEvent()
77 if (ev.isWithinBoundsNoHistory(mBounds.left, mBounds.top, in dispatchTouchEvent()
78 mBounds.right - 1, mBounds.bottom - 1)) { in dispatchTouchEvent()
81 MotionEvent temp = ev.clampNoHistory(mBounds.left, mBounds.top, in dispatchTouchEvent()
82 mBounds.right - 1, mBounds.bottom - 1); in dispatchTouchEvent()
/frameworks/base/graphics/java/android/graphics/drawable/
DDrawable.java122 private Rect mBounds = ZERO_BOUNDS_RECT; // lazily becomes a new Rect() field in Drawable
139 Rect oldBounds = mBounds; in setBounds()
142 oldBounds = mBounds = new Rect(); in setBounds()
147 mBounds.set(left, top, right, bottom); in setBounds()
148 onBoundsChange(mBounds); in setBounds()
169 bounds.set(mBounds); in copyBounds()
181 return new Rect(mBounds); in copyBounds()
200 if (mBounds == ZERO_BOUNDS_RECT) { in getBounds()
201 mBounds = new Rect(); in getBounds()
204 return mBounds; in getBounds()
/frameworks/base/libs/ui/
DRegion.cpp52 : mBounds(0,0) in Region()
57 : mBounds(rhs.mBounds), mStorage(rhs.mStorage) in Region()
65 : mBounds(rhs) in Region()
85 mBounds = rhs.mBounds; in operator =()
98 mBounds.clear(); in clear()
104 mBounds = r; in set()
110 mBounds = Rect(int(w), int(h)); in set()
251 : bounds(reg.mBounds), storage(reg.mStorage), head(), tail(), cur() { in rasterizer()
523 reg.mBounds.translate(dx, dy); in translate()
556 memcpy(p+1, &mBounds, sizeof(Rect)); in write()
[all …]
/frameworks/base/core/java/android/view/
DTouchDelegate.java46 private Rect mBounds; field in TouchDelegate
91 mBounds = bounds; in TouchDelegate()
115 Rect bounds = mBounds; in onTouchEvent()
/frameworks/base/libs/hwui/
DFontRenderer.cpp652 if (mBounds) { in appendMeshQuad()
653 mBounds->left = fmin(mBounds->left, x1); in appendMeshQuad()
654 mBounds->top = fmin(mBounds->top, y3); in appendMeshQuad()
655 mBounds->right = fmax(mBounds->right, x3); in appendMeshQuad()
656 mBounds->bottom = fmax(mBounds->bottom, y1); in appendMeshQuad()
766 mBounds = bounds; in renderText()
769 mBounds = NULL; in renderText()
DSkiaShader.cpp186 mBounds(bounds), mColors(colors), mPositions(positions), mCount(count) { in SkiaLinearGradientShader()
199 delete[] mBounds; in ~SkiaLinearGradientShader()
207 copy->mBounds = new float[4]; in copy()
208 memcpy(copy->mBounds, mBounds, sizeof(float) * 4); in copy()
DSkiaShader.h186 float* mBounds; member
DFontRenderer.h315 Rect* mBounds; variable
/frameworks/base/include/ui/
DRegion.h44 inline bool isEmpty() const { return mBounds.isEmpty(); } in isEmpty()
47 inline Rect getBounds() const { return mBounds; } in getBounds()
153 Rect mBounds; variable
/frameworks/base/core/java/android/widget/
DTabWidget.java65 private final Rect mBounds = new Rect(); field in TabWidget
344 final Rect bounds = mBounds; in dispatchDraw()
/frameworks/base/core/java/android/webkit/
DWebViewCore.java762 Rect mBounds; field in WebViewCore.MotionUpData
1577 motionUpData.mBounds)) { in transferMessages()
DWebView.java7416 motionUpData.mBounds = nativeCacheHitNodeBounds(); in doShortPress()