HomeSort by relevance Sort by last modified time
    Searched full:bounds (Results 2001 - 2025 of 5192) sorted by null

<<81828384858687888990>>

  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.h 64 // Sets the bounds to use for computing the checksum. These bounds are in
68 // @param ranges the range bounds to use for the checksum
73 // @return the UBYTE; -1 if outside the bounds of the font data
89 // bounds of the font data
  /external/skia/src/core/
SkScan_Hairline.cpp 84 const SkIRect& bounds = clip->getBounds();
86 clipR.set(SkIntToFDot6(bounds.fLeft), SkIntToFDot6(bounds.fTop),
87 SkIntToFDot6(bounds.fRight), SkIntToFDot6(bounds.fBottom));
SkPath.cpp 21 * Path.bounds is defined to be the bounds of all the control points.
22 * If we called bounds.join(r) we would skip r if r was empty, which breaks
55 used when we know the bounds of the amount we are going to add to the path
59 cached bounds), and then if it can, it updates the cache bounds explicitly,
94 // Cannot use fRect for our bounds unless we know it is sorted
97 // Mark the path's bounds as dirty if (1) they are, or (2) the path
98 // is non-finite, and therefore its bounds are not meaningful
184 // note: don't need to look at isConvex or bounds, since just comparing th
1086 const SkRect& bounds = rrect.getBounds(); local
2195 SkRect bounds; local
    [all...]
  /external/skia/src/utils/
SkDumpCanvas.cpp 200 SkCanvas::SaveLayerStrategy SkDumpCanvas::willSaveLayer(const SkRect* bounds, const SkPaint* paint,
204 if (bounds) {
205 str.append(" bounds");
206 toString(*bounds, &str);
217 return this->INHERITED::willSaveLayer(bounds, paint, flags);
  /frameworks/base/core/tests/inputmethodtests/src/android/os/
CursorAnchorInfoTest.java 100 final RectF bounds = MANY_BOUNDS[i]; local
102 builder.addCharacterBounds(i, bounds.left, bounds.top, bounds.right, bounds.bottom,
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 394 float totalAdvance, const Rect& bounds, DrawOpMode drawOpMode) {
412 x, y, positions, outlinePaint, totalAdvance, bounds)); // bounds?
419 x, y, positions, innerPaint, totalAdvance, bounds));
425 x, y, positions, paint, totalAdvance, bounds);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ReflectionTest.java 173 Type[] bounds = t.getBounds(); local
174 ParameterizedType comparableT = (ParameterizedType) bounds[0];
177 assertEquals(3, bounds.length);
178 assertEquals(Serializable.class, bounds[1]);
179 assertEquals(RandomAccess.class, bounds[2]);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLView.java 187 public Rect bounds() { method in class:GLView
404 * Gets the bounds of the given descendant that relative to this view.
412 Rect bounds = view.mBounds;
413 xoffset += bounds.left;
414 yoffset += bounds.top;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElementTest.java 61 new Rect(10, 5, 60, 40), // bounds
296 // not the same bounds
302 // not the same parent bounds
330 // not the same bounds
336 // not the same parent bounds
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_view.cc 493 gfx::Rect toolbar_bounds(toolbar_->bounds());
652 void BrowserView::SetBounds(const gfx::Rect& bounds) {
654 GetWidget()->SetBounds(bounds);
836 gfx::Rect bounds; local
838 frame_->GetWindowPlacement(&bounds, &state);
839 return bounds;
843 gfx::Rect bounds; local
845 frame_->GetWindowPlacement(&bounds, &state);
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalker.cpp 212 SkRect& bounds) {
215 bounds.fLeft = bounds.fRight = dst[0].fX;
216 bounds.fTop = bounds.fBottom = dst[0].fY;
218 bounds.growToInclude(dst[index].fX, dst[index].fY);
223 SkRect& bounds) {
226 bounds.fLeft = bounds.fRight = dst[0].fX;
227 bounds.fTop = bounds.fBottom = dst[0].fY
294 SkRect bounds; local
    [all...]
  /external/skia/experimental/Intersection/
EdgeWalker.cpp 212 SkRect& bounds) {
215 bounds.fLeft = bounds.fRight = dst[0].fX;
216 bounds.fTop = bounds.fBottom = dst[0].fY;
218 bounds.growToInclude(dst[index].fX, dst[index].fY);
223 SkRect& bounds) {
226 bounds.fLeft = bounds.fRight = dst[0].fX;
227 bounds.fTop = bounds.fBottom = dst[0].fY
294 SkRect bounds; local
    [all...]
  /external/chromium_org/ash/
root_window_controller.cc 124 const gfx::Size src_size = window->parent()->bounds().size();
125 const gfx::Size dst_size = new_parent->bounds().size();
126 // Update the restore bounds to make it relative to the display.
135 local_bounds = state->window()->bounds();
146 // Docked windows have bounds handled by the layout manager in AddChild().
193 // say in the same root window regardless of the bounds specified.
706 // TODO(oshima): Bounds of keyboard container should be handled by
708 keyboard_container->SetBounds(parent->bounds());
726 // observers that keyboard bounds changed to 0 before remove them.
775 virtual_keyboard_parent_container->SetBounds(root_window->bounds());
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
browser_window_controller_private.mm 99 gfx::Rect bounds(NSRectToCGRect([window frame]));
100 bounds.set_y(monitorFrame.size.height - bounds.y() - bounds.height());
108 chrome::SaveWindowPlacement(browser_.get(), bounds, show_state);
131 windowPreferences->SetInteger("left", bounds.x());
132 windowPreferences->SetInteger("top", bounds.y());
133 windowPreferences->SetInteger("right", bounds.right());
134 windowPreferences->SetInteger("bottom", bounds.bottom());
184 NSRect contentBounds = [contentView bounds];
    [all...]
  /external/chromium_org/ui/gfx/geometry/
r_tree_unittest.cc 32 // Bounds must be consistent on the root.
56 // Check bounds are consistent with children bounds, and other checks
217 // If we fix up the bounds on the test_node, it should verify.
426 // Low bounds of horizontal sort start with bounds of box a and then jump to
432 // High horizontal bounds are hand-calculated.
470 // Low bounds of vertical sort start with bounds of box a and then jump to
476 // High vertical bounds are hand-calculated
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
ScreenMagnifier.java 166 Region bounds = (Region) message.obj;
167 handleOnMagnifiedBoundsChanged(bounds);
168 bounds.recycle();
214 public void onMagnifedBoundsChanged(Region bounds) {
215 Region newBounds = Region.obtain(bounds);
218 bounds.recycle();
222 private void handleOnMagnifiedBoundsChanged(Region bounds) {
237 mMagnifiedBounds.set(bounds);
995 Rect bounds = mTempRect; local
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiObject.java 330 * Finds the visible bounds of a partially visible UI element
333 * @return null if node is null, else a Rect containing visible bounds
340 // targeted node's bounds
352 // Scrollable parent's visible bounds
381 * Performs a click at the center of the visible bounds of the UI element represented
414 * Performs a click at the center of the visible bounds of the UI element represented
491 * Long clicks the center of the visible bounds of the UI element
797 * Returns the visible bounds of the view.
799 * If a portion of the view is visible, only the bounds of the visible portion are
817 * Returns the view's <code>bounds</code> property. See {@link #getVisibleBounds()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 65 * @param sourceBounds the source bounds
127 Rect bounds = node.getBounds(); local
128 graphics.fillRect(bounds);
181 * given target node, with the specified bounds.
270 * @param sourceBounds the bounds of the source node
272 * @param targetBounds the bounds of the target node
311 // their bounds are within N pixels.
502 // the target bounds, like this:
758 * through the vertical view, and a solid line over the node bounds.
772 * through the horizontal view, and a solid line over the node bounds
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
ttinterp.c 231 /* Two simple bounds-checking macros. */
233 #define BOUNDS( x, n ) ( (FT_UInt)(x) >= (FT_UInt)(n) )
5927 FT_Short contour, bounds; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp 21 * Path.bounds is defined to be the bounds of all the control points.
22 * If we called bounds.join(r) we would skip r if r was empty, which breaks
55 used when we know the bounds of the amount we are going to add to the path
59 cached bounds), and then if it can, it updates the cache bounds explicitly,
94 // Cannot use fRect for our bounds unless we know it is sorted
97 // Mark the path's bounds as dirty if (1) they are, or (2) the path
98 // is non-finite, and therefore its bounds are not meaningful
184 // note: don't need to look at isConvex or bounds, since just comparing th
1086 const SkRect& bounds = rrect.getBounds(); local
2195 SkRect bounds; local
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttinterp.c 231 /* Two simple bounds-checking macros. */
233 #define BOUNDS( x, n ) ( (FT_UInt)(x) >= (FT_UInt)(n) )
5926 FT_Short contour, bounds; local
    [all...]
  /external/freetype/src/truetype/
ttinterp.c 231 /* Two simple bounds-checking macros. */
233 #define BOUNDS( x, n ) ( (FT_UInt)(x) >= (FT_UInt)(n) )
6035 FT_Short contour, bounds; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
uregex.h 780 * Queries the transparency of region bounds for this URegularExpression.
781 * See useTransparentBounds for a description of transparent and opaque bounds.
786 * @return TRUE if this matcher is using opaque bounds, false if it is not.
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
uregex.h     [all...]
  /external/chromium_org/third_party/skia/include/core/
SkPath.h 225 not null, set rect to the bounds of the path. If the path does not
228 @param rect If not null, returns the bounds of the path if it specifies
268 /** Returns the bounds of the path's points. If the path contains 0 or 1
269 points, the bounds is set to (0,0,0,0), and isEmpty() will return true.
270 Note: this bounds may be larger than the actual shape, since curves
277 /** Calling this will, if the internal cache of the bounds is out of date,
280 will inherit the cached bounds.
559 /** The path can not draw the same as its bounds. */
561 /** The path draws the same as its bounds when filled. */
563 /** The path draws the same as its bounds when stroked or filled. *
    [all...]

Completed in 2343 milliseconds

<<81828384858687888990>>