/frameworks/base/awt/java/awt/geom/ |
Arc2D.java | 154 * the bounding rectangle given by the parameter bounds. 156 * @param bounds 166 public Float(Rectangle2D bounds, float start, float extent, int type) { 168 this.x = (float)bounds.getX(); 169 this.y = (float)bounds.getY(); 170 this.width = (float)bounds.getWidth(); 171 this.height = (float)bounds.getHeight(); 333 * the bounding rectangle given by the parameter bounds. 335 * @param bounds 345 public Double(Rectangle2D bounds, double start, double extent, int type) [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
LinearLayoutWithDefaultTouchRecepient.java | 31 * off a lock pattern if the finger is eventually dragged into the bounds of the
|
/frameworks/base/docs/html/guide/developing/tools/ |
hierarchy-viewer.jd | 42 also indicates the bounds of the element with a red rectangle. 72 Normal View to indicate the layout position of that element. The layout box uses multiple rectangles, to indicate the normal bounds, the padding and the margin (as needed). The purple or green rectangle indicates 73 the normal bounds of the element (the height and width). The inner white or black rectangle indicates 74 the content bounds, when padding is present. A black or white rectangle outside the normal purple/green
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
GradientDrawable.java | 130 * Controls how the gradient is oriented relative to the drawable's bounds 375 RectF bounds = new RectF(mRect); 377 float x = bounds.width() / 2.0f; 378 float y = bounds.height() / 2.0f; 381 st.mThickness : bounds.width() / st.mThicknessRatio; 384 st.mInnerRadius : bounds.width() / st.mInnerRadiusRatio; 386 RectF innerBounds = new RectF(bounds); 389 bounds = new RectF(innerBounds); 390 bounds.inset(-thickness, -thickness); 408 ringPath.arcTo(bounds, 0.0f, sweep, false) [all...] |
ScaleDrawable.java | 205 protected void onBoundsChange(Rect bounds) { 208 int w = bounds.width(); 213 int h = bounds.height(); 218 Gravity.apply(mScaleState.mGravity, w, h, bounds, r);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Paint.java | 1175 getTextBounds(text.toCharArray(), start, end - start, bounds); local [all...] |
/packages/apps/Gallery3D/src/com/cooliris/media/ |
Layer.java | 88 // bounds.
|
StringTexture.java | 179 Rect bounds = new Rect(); local 180 paint.getTextBounds(string, 0, string.length(), bounds); 184 backWidth = bounds.width() + 2 * padding; 201 if (bounds.width() > backWidth && config.overflowMode == Config.OVERFLOW_FADE) {
|
/external/webkit/WebCore/rendering/ |
RenderThemeChromiumMac.mm | [all...] |
RenderThemeMac.mm | [all...] |
/cts/tests/tests/text/src/android/text/cts/ |
SpannableStringTest.java | 76 + "SpannableString#setSpan(Object,int, int, int) when index is out of bounds") 141 + "SpannableString#subSequence(int, int) when index is out of bounds") 154 fail("subSequence failed when index is out of bounds");
|
/external/apache-http/src/org/apache/http/message/ |
LineParser.java | 69 * the bounds within the buffer for the parsing operation 109 * the bounds within the buffer for the parsing operation 125 * the bounds within the buffer for the parsing operation
|
/external/qemu/ |
cbuffer.c | 34 reason = "rpos is out of bounds"; 99 ASSERT( wpos >= 0 && wpos < cb->size, "wpos is out-of-bounds: %d (rpos=%d)", wpos, cb->rpos); 132 ASSERT((rpos >= 0 && rpos < cb->size), "rpos is out-of-bounds: %d", rpos);
|
/external/skia/include/core/ |
SkDevice.h | 59 /** Return the bounds of the device 61 void getBounds(SkIRect* bounds) const; 63 /** Return true if the specified rectangle intersects the bounds of the
|
SkMask.h | 60 /** Returns true if the mask is empty: i.e. it has an empty bounds. 124 kJustComputeBounds_CreateMode, //!< compute bounds and return 126 kComputeBoundsAndRenderImage_CreateMode //!< compute bounds, alloc image and render into it
|
/external/skia/src/effects/ |
SkLayerRasterizer.cpp | 56 const SkIRect* clipBounds, SkIRect* bounds) 61 bounds->set(SK_MaxS32, SK_MaxS32, SK_MinS32, SK_MinS32); 89 bounds->join(mask.fBounds);
|
/external/skia/src/utils/ |
SkNWayCanvas.cpp | 60 int SkNWayCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 64 iter->saveLayer(bounds, paint, flags); 66 return this->INHERITED::saveLayer(bounds, paint, flags);
|
/external/webkit/WebKit/android/nav/ |
CachedRoot.h | 55 const WebCore::IntRect& bounds) const; 111 WebCore::IntRect mFocusBounds; // dom text input focus node bounds 112 mutable WebCore::IntRect mScrolledBounds; // view bounds + amount visible as result of scroll
|
/external/webkit/WebKit/android/plugins/ |
ANPCanvasInterface.cpp | 82 SkRect bounds; local 83 if (canvas->skcanvas->getClipBounds(&bounds, 85 SkANP::SetRect(r, bounds);
|
/external/webkit/WebKitLibraries/ |
WebKitSystemInterface.h | 111 void WKCallDrawingNotification(CGrafPtr port, Rect *bounds); 236 BOOL WKHitTestMediaUIPart(int part, int themeStyle, CGRect bounds, CGPoint point); 237 void WKMeasureMediaUIPart(int part, int themeStyle, CGRect *bounds, CGSize *naturalSize);
|
/frameworks/base/awt/java/awt/image/ |
ComponentSampleModel.java | 179 // awt.63=Coordinates are not in bounds 266 // awt.63=Coordinates are not in bounds 388 // awt.63=Coordinates are not in bounds 398 // awt.63=Coordinates are not in bounds 409 // awt.63=Coordinates are not in bounds 421 // awt.63=Coordinates are not in bounds 447 // awt.63=Coordinates are not in bounds 463 // awt.63=Coordinates are not in bounds 473 // awt.63=Coordinates are not in bounds 502 // awt.63=Coordinates are not in bounds [all...] |
/frameworks/base/awt/org/apache/harmony/awt/gl/ |
MultiRectArea.java | 51 Rectangle bounds; field in class:MultiRectArea 275 // awt.4B=Iiterator out of bounds 314 // awt.4B=Iiterator out of bounds 640 if (bounds != null && !bounds.isEmpty()) { 641 bounds.translate(x, y); 671 bounds = null; 676 * Returns bounds of MultiRectArea object 679 if (bounds != null) { 680 return bounds; [all...] |
/frameworks/base/core/java/android/widget/ |
ExpandableListView.java | 150 * indicator bounds 190 // Bounds of the indicator to be drawn 289 // the left & right bounds 386 void drawDivider(Canvas canvas, Rect bounds, int childIndex) { 401 divider.setBounds(bounds); 404 canvas.clipRect(bounds); 417 super.drawDivider(canvas, bounds, flatListPosition); [all...] |
/external/skia/src/core/ |
SkScan_Hairline.cpp | 69 const SkIRect& bounds = clip->getBounds(); 71 clipR.set(SkIntToFDot6(bounds.fLeft), SkIntToFDot6(bounds.fTop), 72 SkIntToFDot6(bounds.fRight), SkIntToFDot6(bounds.fBottom));
|
/external/webkit/WebKit/mac/Plugins/Hosted/ |
WebHostedNetscapePluginView.mm | 163 NSRect boundsInWindow = [self convertRect:[self bounds] toView:nil]; 359 [self invalidatePluginContentRect:[self bounds]]; 371 _proxy->print(reinterpret_cast<CGContextRef>([[NSGraphicsContext currentContext] graphicsPort]), [self bounds].size.width, [self bounds].size.height); 389 NSSize viewSize = [self bounds].size;
|