HomeSort by relevance Sort by last modified time
    Searched refs:mBounds (Results 1 - 18 of 18) 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...]
  /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...]
  /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;
  /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...]
GLListView.java 265 if (position < mModel.getView(start).mBounds.bottom) break;
270 if (bottom <= mModel.getView(end).mBounds.top) break;
327 if (child.mBounds.bottom > position) {
IndicatorBar.java 47 mSelectedIndex + 1).mBounds;
186 if (y <= component.mBounds.bottom) {
  /external/webkit/WebKit/android/nav/
CachedNode.cpp 39 return mIsInLayer ? frame->adjustBounds(this, mBounds) : mBounds;
81 return Clip(bounds, &mBounds, &mCursorRing);
112 if (mHitBounds != mBounds && mHitBounds.contains(mBounds) &&
123 if (frame->checkRings(this, mCursorRing, mBounds)) {
124 DBG_NAV_LOGD("use mBounds (%d,%d,%d,%d)", mBounds.x(),
125 mBounds.y(), mBounds.width(), mBounds.height())
    [all...]
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...]
CachedNode.h 146 void setBounds(const WebCore::IntRect& bounds) { mBounds = bounds; }
180 WebCore::IntRect mBounds;
CacheBuilder.h 192 IntRect mBounds;
200 IntRect mBounds;
CacheBuilder.cpp 761 int tx = track.mBounds.x();
762 int ty = track.mBounds.y();
    [all...]
  /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...]
  /frameworks/base/libs/ui/
Region.cpp 52 : mBounds(0,0)
57 : mBounds(rhs.mBounds), mStorage(rhs.mStorage)
62 : mBounds(rhs)
81 mBounds = rhs.mBounds;
94 mBounds.clear();
100 mBounds = r;
106 mBounds = Rect(int(w), int(h));
247 : bounds(reg.mBounds), storage(reg.mStorage), head(), tail(), cur()
    [all...]
  /frameworks/base/include/ui/
Region.h 46 inline bool isEmpty() const { return mBounds.isEmpty(); }
49 inline Rect getBounds() const { return mBounds; }
155 Rect mBounds;
  /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);
  /frameworks/base/core/java/android/widget/
TabWidget.java 65 private final Rect mBounds = new Rect();
295 final Rect bounds = mBounds;
  /frameworks/base/core/java/android/webkit/
WebViewCore.java 669 Rect mBounds;
    [all...]
WebView.java     [all...]

Completed in 132 milliseconds