HomeSort by relevance Sort by last modified time
    Searched full:bounds (Results 51 - 75 of 1065) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/graphics/skia/
SkiaUtils.cpp 201 SkRect bounds = originalPath->getBounds(); local
204 // rect. We don't use bounds.contains() here, since it would exclude
209 if (fX < bounds.fLeft || fX > bounds.fRight || fY < bounds.fTop || fY > bounds.fBottom)
220 SkScalar biggestCoord = std::max(std::max(std::max(bounds.fRight, bounds.fBottom), -bounds.fLeft), -bounds.fTop)
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedRotateDrawable.java 73 final Rect bounds = drawable.getBounds(); local
75 int w = bounds.right - bounds.left;
76 int h = bounds.bottom - bounds.top;
190 protected void onBoundsChange(Rect bounds) {
191 mState.mDrawable.setBounds(bounds.left, bounds.top, bounds.right, bounds.bottom)
    [all...]
RotateDrawable.java 74 Rect bounds = mState.mDrawable.getBounds(); local
76 int w = bounds.right - bounds.left;
77 int h = bounds.bottom - bounds.top;
172 protected void onBoundsChange(Rect bounds) {
173 mState.mDrawable.setBounds(bounds.left, bounds.top,
174 bounds.right, bounds.bottom)
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
CommonGlyphVector.java 211 * Returnes the pixel bounds of this GlyphVector rendered at the
217 * @return a Rectangle that bounds pixels of this GlyphVector
261 * Returns the visual bounds of this GlyphVector.
262 * The visual bounds is the bounds of the total outline of
264 * @return a Rectangle2D that id the visual bounds of this GlyphVector
276 Rectangle2D bounds = this.getGlyphVisualBounds(i).getBounds2D(); local
277 if (bounds.getWidth() == 0){
280 xm = (float)bounds.getX();
281 ym = (float)bounds.getY()
516 Rectangle bounds = shape.getBounds(); local
821 Rectangle2D bounds = new Rectangle2D.Float(x, (float)((-this.ascent-this.leading)*scaleY), width, (float)(this.height*scaleY)); local
    [all...]
TextRunBreaker.java 276 } catch(IllegalArgumentException e) { // Index out of bounds
613 * Creates the black box bounds shape
616 * @return black box bounds shape
619 GeneralPath bounds = new GeneralPath(); local
625 bounds.append(segment.getCharsBlackBoxBounds(idx, secondEndpoint), false);
628 return bounds;
632 * Creates visual bounds shape
633 * @return visual bounds rectangle
636 Rectangle2D bounds = null; local
640 if (bounds != null)
655 Rectangle2D bounds = null; local
728 Rectangle2D bounds = segment.getVisualBounds(); local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ScaleDrawableTest.java 402 Rect bounds = new Rect(2, 2, 26, 32); local
403 mockDrawable.setBounds(bounds);
404 mockScaleDrawable.onBoundsChange(bounds);
406 Gravity.apply(Gravity.LEFT, bounds.width() - (int) (bounds.width() * scaleWidth),
407 bounds.height() - (int) (bounds.height() * scaleHeight), bounds, expected);
418 mockDrawable.setBounds(bounds);
420 mockScaleDrawable.onBoundsChange(bounds);
    [all...]
  /external/webkit/WebKit/android/jni/
PictureSet.cpp 97 its rectangular bounds is reduced if it is a base.
226 SkRect bounds; local
227 if (canvas->getClipBounds(&bounds) == false)
230 bounds.roundOut(&irect);
315 const SkIRect& bounds = working->mArea.getBounds(); local
321 " mArea.bounds={%d,%d,r=%d,b=%d}"
330 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom
569 const SkIRect& bounds = working->mArea.getBounds(); local
623 const SkIRect& bounds = area.getBounds(); local
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/wtk/
NativeWindow.java 60 * Tries to set desired window bounds. It's not gurantied the
70 * Governs the new bounds interpretation.
75 * Returns last notified window bounds. This means the last bounds
79 * @return last notified window bounds
191 * Set desired [top-level] window bounds when being in maximized state.
195 void setMaximizedBounds(Rectangle bounds);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
INode.java 31 * - Nodes matching a view actually rendered in the layout canvas have a valid "bounds"
33 * - Nodes created by IViewRule scripts but not yet rendered have an invalid bounds rectangle
39 * Returns the bounds of this node.
41 * The bounds are valid when this node maps a view that is already rendered.
43 * guaranteed that its bounds are known and thus are valid.
45 * However the bounds are invalid (e.g. not known yet) for new XML elements
106 * @param index Index of the child to insert before. If the index is out of bounds
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfo.java 29 * The only large difference is that we keep both the original bounds of the view info
30 * and we pre-compute the selection bounds which are absolute to the rendered image (where
31 * as the original bounds are relative to the parent view.)
98 // adjust selection bounds for views which are too small to select
116 * Returns the original {@link ILayoutResult} bounds in absolute coordinates
124 * Returns the absolute selection bounds of the view info as a rectangle.
125 * The selection bounds will always have a size greater or equal to
  /external/webkit/WebKit/android/nav/
CachedRoot.cpp 315 virtual int saveLayer(const SkRect* bounds, const SkPaint* paint,
317 int depth = SkCanvas::saveLayer(bounds, paint, flags);
401 /* Record the outer bounds of the lines of text that intersect the
445 SkIRect mBounds; // reference bounds
446 SkIRect mPartial; // accumulated text bounds, per line
533 /* Record the outer bounds of the lines of text that was 'hit' by the
568 SkIRect mPartial; // accumulated text bounds, per line
694 if (best->bounds().intersects(mHistory->mPriorBounds) == false &&
748 const WebCore::IntRect& bounds) const
752 RingCheck ringCheck(rings, bounds.location())
803 const WebCore::IntRect& bounds = mHistory->mNavBounds; local
1097 WebCore::IntRect bounds = nodeBounds; local
1363 WebCore::IntRect bounds = WebCore::IntRect(0, 0, 0, 0); local
1378 WebCore::IntRect bounds; local
    [all...]
WebView.cpp 292 const WebCore::IntRect& b = cachedCursor->bounds(cachedFrame);
384 // views assume that inval bounds coordinates are non-negative
463 void cursorRingBounds(WebCore::IntRect* bounds)
471 *bounds = cachedNode->cursorRingBounds(cachedFrame);
472 DBG_NAV_LOGD("bounds={%d,%d,%d,%d}", bounds->x(), bounds->y(),
473 bounds->width(), bounds->height());
477 *bounds = WebCore::IntRect(0, 0, 0, 0)
484 IntRect bounds = m_viewImpl->m_cursorBounds; local
1166 WebCore::IntRect bounds = GET_NATIVE_VIEW(env, obj) local
1286 WebCore::IntRect bounds = node ? node->bounds(frame) local
1448 WebCore::IntRect bounds = node ? node->bounds(frame) local
1524 WebCore::IntRect bounds = node ? node->bounds(frame) local
1787 const WebCore::IntRect& bounds = next->bounds(frame); local
    [all...]
  /frameworks/base/libs/ui/
GraphicBufferMapper.cpp 84 int usage, const Rect& bounds, void** vaddr)
89 bounds.left, bounds.top, bounds.width(), bounds.height(),
93 bounds.left, bounds.top, bounds.width(), bounds.height(),
  /cts/tools/signature-tools/src/signature/model/util/
ITypeFactory.java 89 * bounds. The order of the upper bounds is irrelevant except for the first
97 * the upper bounds
  /external/skia/src/views/
SkProgressBarView.cpp 34 SkRect bounds; local
35 fAnim.getInvalBounds(&bounds);
36 this->inval(&bounds);
SkScrollBarView.cpp 88 SkRect bounds; local
89 fAnim.getInvalBounds(&bounds);
90 this->inval(&bounds);
  /frameworks/base/awt/org/apache/harmony/awt/gl/image/
BufferedImageGraphics2D.java 41 private Rectangle bounds = null; field in class:BufferedImageGraphics2D
46 this.bounds = new Rectangle(0, 0, bi.getWidth(), bi.getHeight());
47 clip(bounds);
  /packages/apps/Gallery3D/src/com/cooliris/media/
SimpleStringTexture.java 64 Rect bounds = new Rect(); local
65 paint.getTextBounds(string, 0, string.length(), bounds);
75 .createBitmap(bounds.width() + padding + padding, height + padding + padding, Bitmap.Config.ARGB_8888);
  /frameworks/base/awt/java/awt/
Polygon.java 77 protected Rectangle bounds; field in class:Polygon
133 // awt.110=Iterator out of bounds
149 // awt.110=Iterator out of bounds
212 bounds = null;
222 bounds = null;
250 if (bounds != null) {
251 bounds.setFrameFromDiagonal(Math.min(bounds.getMinX(), px), Math.min(bounds.getMinY(),
252 py), Math.max(bounds.getMaxX(), px), Math.max(bounds.getMaxY(), py))
    [all...]
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/regex/
NativeRegEx.java 95 * Controls the transparency of the region bounds.
100 * Queries the transparency of the region bounds.
105 * Controls the anchoring property of the region bounds.
110 * Queries the anchoring property of the region bounds.
  /dalvik/tests/070-nio-buffer/src/
Main.java 54 System.err.println("ERROR: out-of-bounds put succeeded\n");
62 System.err.println("ERROR: out-of-bounds put succeeded\n");
64 System.out.println("Got expected out-of-bounds exception");
70 System.err.println("ERROR: out-of-bounds put succeeded\n");
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathEffects.java 76 RectF bounds = new RectF(); local
77 mPath.computeBounds(bounds, false);
78 canvas.translate(10 - bounds.left, 10 - bounds.top);
  /external/icu4c/samples/uresb/
en.txt 14 "Index out of bounds error",
  /external/skia/include/core/
SkBounder.h 34 Base class for intercepting the device bounds of shapes before they are drawn.
46 /** Override in your subclass. This is called with the device bounds of an
49 returns true, drawing continues. The bounds your method receives have already
68 text drawing supplies the device bounds of the object.
  /external/skia/src/animator/
SkDisplayBounds.h 24 DECLARE_DISPLAY_MEMBER_INFO(Bounds);

Completed in 82 milliseconds

1 23 4 5 6 7 8 91011>>