HomeSort by relevance Sort by last modified time
    Searched defs:mBounds (Results 1 - 25 of 29) sorted by null

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ZoomCache.java 28 private Rect mBounds = null;
32 if (mBounds != bounds) {
46 mBounds = bounds;
RenderingRequest.java 35 private Rect mBounds = null;
140 return mBounds;
144 mBounds = bounds;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
RedEyeCandidate.java 23 RectF mBounds = new RectF();
27 mBounds.set(candidate.mBounds);
32 mBounds.set(bounds);
37 && candidate.mBounds.equals(mBounds)) {
  /frameworks/base/core/java/android/inputmethodservice/
SoftInputWindow.java 36 private final Rect mBounds = new Rect();
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.bottom - 1)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
PageProgressView.java 41 private Rect mBounds;
72 mBounds = new Rect(0,0,0,0);
82 mBounds.right = getWidth() * mCurrentProgress / MAX_PROGRESS;
95 mBounds.left = 0;
96 mBounds.right = (r - l) * mCurrentProgress / MAX_PROGRESS;
97 mBounds.top = 0;
98 mBounds.bottom = b-t;
113 d.setBounds(mBounds);
  /frameworks/base/core/java/android/view/
TouchDelegate.java 46 private Rect mBounds;
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;
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.h 112 virtual SkIRect getTotalClipBounds() { return enclosingIntRect(mRecordingStateStack.last().mBounds); }
180 , mBounds(parent ? parent->mBounds : FloatRect())
188 , mBounds(other.mBounds)
196 mBounds.intersect(rect);
198 mBounds = rect;
207 FloatRect mBounds;
  /frameworks/base/libs/hwui/
FontRenderer.h 164 Rect* mBounds;
SkiaShader.h 176 float* mBounds;
DeferredDisplayList.cpp 66 mBounds.unionWith(op->state.mBounds);
71 if (!rect.intersects(mBounds)) return false;
74 if (rect.intersects(mOps[i]->state.mBounds)) {
77 mOps[i]->state.mBounds.left, mOps[i]->state.mBounds.top,
78 mOps[i]->state.mBounds.right, mOps[i]->state.mBounds.bottom);
105 Rect& bounds = mOps[i]->state.mBounds;
123 Rect mBounds;
    [all...]
OpenGLRenderer.h 81 Rect mBounds; // global op bounds, mapped by mMatrix to be in screen space coordinates, clipped.
    [all...]
  /frameworks/base/core/java/android/widget/
EdgeEffect.java 124 private final Rect mBounds = new Rect();
373 mBounds.set(0, 0, mWidth, mMaxEffectHeight);
374 mBounds.offset(mX, mY - (reverse ? mMaxEffectHeight : 0));
376 return mBounds;
TabWidget.java 63 private final Rect mBounds = new Rect();
342 final Rect bounds = mBounds;
  /frameworks/base/graphics/java/android/graphics/drawable/
Drawable.java 123 private Rect mBounds = ZERO_BOUNDS_RECT; // lazily becomes a new Rect()
142 Rect oldBounds = mBounds;
145 oldBounds = mBounds = new Rect();
154 mBounds.set(left, top, right, bottom);
155 onBoundsChange(mBounds);
176 bounds.set(mBounds);
188 return new Rect(mBounds);
207 if (mBounds == ZERO_BOUNDS_RECT) {
208 mBounds = new Rect();
211 return mBounds;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
EdgeEffect.java 412 private Rect mBounds = new Rect();
428 mBounds.set(left, top, right, bottom);
438 Rect b = mBounds;
GLView.java 59 protected final Rect mBounds = new Rect();
188 return mBounds;
192 return mBounds.right - mBounds.left;
196 return mBounds.bottom - mBounds.top;
271 int xoffset = component.mBounds.left - mScrollX;
272 int yoffset = component.mBounds.top - mScrollY;
297 Rect rect = component.mBounds;
359 boolean sizeChanged = (right - left) != (mBounds.right - mBounds.left
    [all...]
  /frameworks/av/services/audioflinger/
FastMixer.h 115 uint32_t mBounds; // bounds for mMonotonicNs, mThreadCpuNs, and mCpukHz
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElement.java 44 private final Rect mBounds;
67 mBounds = bounds == null ? new Rect() : bounds.copy();
87 return mBounds;
151 return node.getBounds().equals(mBounds);
193 if (mBounds != null && mBounds.isValid()) {
194 sb.append(String.format(",R=%d %d %d %d", mBounds.x, mBounds.y, mBounds.w, mBounds.h))
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
AccessibilityNodeProviderActivity.java 128 Rect childBounds = child.mBounds;
187 Rect childBounds = child.mBounds;
206 width += child.mBounds.width();
207 height = Math.max(height, child.mBounds.height());
224 drawingRect.set(child.mBounds);
332 public final Rect mBounds;
339 mBounds = bounds;
388 info.setBoundsInParent(virtualView.mBounds);
  /packages/apps/Gallery2/src/com/android/photos/drawables/
AutoThumbnailDrawable.java 57 private Rect mBounds = new Rect();
97 mBounds.set(bounds);
98 if (mBounds.isEmpty()) {
112 canvas.clipRect(mBounds);
122 if (mBitmap == null || mBounds.isEmpty()) {
132 int vwidth = mBounds.width();
133 int vheight = mBounds.height();
156 int vwidth = mBounds.width();
157 int vheight = mBounds.height();
170 if (mBounds.isEmpty() || mImageWidth == 0 || mImageHeight == 0)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListView.java 97 private RectF mBounds = new RectF();
518 mBounds.set(0, 0, mHeaderWidth, view.getHeight());
519 canvas.saveLayerAlpha(mBounds, header.alpha, Canvas.ALL_SAVE_FLAG);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelineHandler.java 93 protected Rect mBounds;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java 61 private final Rect mBounds;
85 mBounds = new Rect();
87 mBounds = SwtUtils.toRect(bounds);
93 return mBounds;
127 SwtUtils.set(mBounds, bounds);
469 return "NodeProxy [node=" + mNode + ", bounds=" + mBounds + "]";
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestNode.java 65 private Rect mBounds = new Rect(); // Invalid bounds initially
78 this.mBounds = bounds;
141 return mBounds;
220 + mAttributeInfos + ", attributes=" + mAttributes + ", bounds=" + mBounds + "]";
466 mBounds = new Rect(left, top, right - left, bottom - top);
  /frameworks/base/services/java/com/android/server/wm/
DisplayMagnifier.java 480 private final Region mBounds = new Region();
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();

Completed in 1056 milliseconds

1 2