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

  /external/webkit/WebKit/android/jni/
WebCoreViewBridge.h 42 mBounds(0,0,0,0),
52 return mBounds;
62 mBounds.setWidth(w);
63 mBounds.setHeight(h);
68 mBounds.setX(x);
69 mBounds.setY(y);
77 int width() const { return mBounds.width(); }
78 int height() const { return mBounds.height(); }
79 int locX() const { return mBounds.x(); }
80 int locY() const { return mBounds.y();
    [all...]
  /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;
  /frameworks/base/include/ui/
Region.h 46 inline bool isEmpty() const { return mBounds.isEmpty(); }
49 inline Rect getBounds() const { return mBounds; }
155 Rect mBounds;
  /frameworks/base/graphics/java/android/graphics/drawable/
Drawable.java 105 private Rect mBounds = ZERO_BOUNDS_RECT; // lazily becomes a new Rect()
122 Rect oldBounds = mBounds;
125 oldBounds = mBounds = new Rect();
130 mBounds.set(left, top, right, bottom);
131 onBoundsChange(mBounds);
152 bounds.set(mBounds);
164 return new Rect(mBounds);
183 if (mBounds == ZERO_BOUNDS_RECT) {
184 mBounds = new Rect();
187 return mBounds;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElement.java 40 private final Rect mBounds;
62 mBounds = bounds == null ? new Rect() : bounds.copy();
80 return mBounds;
144 if (mBounds != null && mBounds.isValid()) {
145 sb.append(String.format(",R=%d %d %d %d", mBounds.x, mBounds.y, mBounds.w, mBounds.h));
276 if ((mBounds == null && se.mBounds != null) |
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java 55 private final Rect mBounds;
77 mBounds = new Rect();
79 mBounds = new Rect(bounds);
91 return mBounds;
100 mBounds.set(bounds);
  /packages/apps/Camera/src/com/android/camera/ui/
GLView.java 41 protected final Rect mBounds = new Rect();
97 boolean sizeChanged = (right - left) != (mBounds.right - mBounds.left)
98 || (bottom - top) != (mBounds.bottom - mBounds.top);
99 mBounds.set(left, top, right, bottom);
156 return mBounds;
160 return mBounds.right - mBounds.left;
164 return mBounds.bottom - mBounds.top
    [all...]
  /frameworks/base/core/java/android/widget/
TabWidget.java 65 private final Rect mBounds = new Rect();
295 final Rect bounds = mBounds;
  /external/webkit/WebKit/android/nav/
CacheBuilder.h 192 IntRect mBounds;
200 IntRect mBounds;
CachedNode.h 146 void setBounds(const WebCore::IntRect& bounds) { mBounds = bounds; }
180 WebCore::IntRect mBounds;
CachedRoot.cpp 144 mDrawnOver.contains(mBounds);
152 if (SkIRect::Intersects(mBounds, rect) == false) {
163 (mBounds.fLeft == rect.fLeft && mBounds.fRight == rect.fRight &&
164 mBounds.fTop >= rect.fTop && mBounds.fBottom <= rect.fBottom) ||
165 (mBounds.fTop == rect.fTop && mBounds.fBottom == rect.fBottom &&
166 mBounds.fLeft >= rect.fLeft && mBounds.fRight <= rect.fRight)))
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewCore.java 669 Rect mBounds;
    [all...]

Completed in 298 milliseconds