Searched refs:getBounds (Results 76 - 100 of 211) sorted by relevance

123456789

/external/droiddriver/src/io/appium/droiddriver/finders/
H A DByXPath.java167 element.setAttribute(Attribute.BOUNDS.getName(), uiElement.getBounds().toShortString());
173 } else if (!uiElement.getVisibleBounds().equals(uiElement.getBounds())) {
/external/skia/samplecode/
H A DSampleAndroidShadows.cpp270 SkPoint center = SkPoint::Make(path.getBounds().centerX(), path.getBounds().centerY());
545 SkPoint pivot = SkPoint::Make(fWideRectPath.getBounds().width()/2,
546 fWideRectPath.getBounds().height()/2);
569 pivot = SkPoint::Make(fWideOvalPath.getBounds().width() / 2,
570 fWideOvalPath.getBounds().height() / 2);
/external/skia/src/core/
H A DSkCanvas.cpp1270 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
1481 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
1495 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
1503 this->onClipRect(rrect.getBounds(), op, edgeStyle);
1518 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
1557 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
1571 fDeviceClipBounds = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
1676 SkRect tmp = qr_clip_bounds(fMCRec->fRasterClip.getBounds());
1715 return path.isEmpty() || this->quickReject(path.getBounds());
1742 return fMCRec->fRasterClip.getBounds();
[all...]
H A DSkScan_AAAPath.cpp220 if (!fClipRect.intersect(clip.getBounds())) {
382 sectBounds = clip.getBounds();
384 if (!sectBounds.intersect(ir, clip.getBounds())) {
1669 path.getBounds().roundOut(&ir);
1741 if (!safeRoundOut(path.getBounds(), &ir, SK_MaxS32 >> 2)) {
1755 clippedIR = origClip.getBounds();
1757 if (!clippedIR.intersect(ir, origClip.getBounds())) {
1779 const SkIRect& bounds = origClip.getBounds();
1805 SkASSERT(SkIntToScalar(ir.fTop) <= path.getBounds().fTop);
1809 aaa_fill_path(path, clipRgn->getBounds(),
[all...]
H A DSkAAClip.cpp788 return this->setRect(rgn.getBounds());
800 const SkIRect& bounds = rgn.getBounds();
976 const SkIRect& getBounds() const { return fBounds; } function in class:SkAAClip::Builder
1262 fLeft = builder->getBounds().fLeft;
1263 fRight = builder->getBounds().fRight;
1398 path.getBounds().roundOut(&ibounds);
1412 ibounds = clip->getBounds();
1414 if (ibounds.isEmpty() || !ibounds.intersect(clip->getBounds())) {
1625 const SkIRect& bounds = builder.getBounds();
1679 RowIter rowIterA(rowA, rowA ? A.getBounds()
[all...]
H A DSkBitmapDevice.cpp399 const SkIRect clipBounds = fRCStack.rc().getBounds().makeOffset(-x, -y);
509 rgn->setRect(rc.getBounds());
517 const SkIRect& stackBounds = fRCStack.rc().getBounds();
H A DSkDraw.cpp106 SkIRect devBounds = fRC->getBounds();
292 const SkIRect& r = rec.fClip->getBounds();
307 const SkIRect& r = rec.fRC->getBounds();
328 const SkIRect& r = rec.fRC->getBounds();
614 SkRect cullRect = SkRect::Make(fRC->getBounds());
997 SkRect pathBounds = devPath.getBounds().makeOutset(1, 1);
1008 if (!SkRect::Make(fRC->getBounds()).intersects(pathBounds)) {
1149 &fRC->getBounds(), paint->getMaskFilter(), &mask,
1512 return rasterClip.bwRgn().getBounds();
1514 return rasterClip.aaRgn().getBounds();
[all...]
/external/guava/guava/src/com/google/common/reflect/
H A DTypeToken.java289 return boundAsSuperclass(((TypeVariable<?>) runtimeType).getBounds()[0]);
328 return boundsAsInterfaces(((TypeVariable<?>) runtimeType).getBounds());
379 return getSupertypeFromUpperBounds(superclass, ((TypeVariable<?>) runtimeType).getBounds());
756 return isAssignableFromAny(((TypeVariable<?>) from).getBounds(), to);
926 visit(t.getBounds());
H A DTypeResolver.java263 Type[] bounds = var.getBounds();
343 visit(t.getBounds());
/external/skia/tests/
H A DPathOpsExtendedTest.cpp191 SkRect larger = one.getBounds();
192 larger.join(two.getBounds());
225 const SkRect& bounds1 = scaledOne.getBounds();
267 const SkRect& bounds1 = one.getBounds();
268 const SkRect& bounds2 = two.getBounds();
H A DPathTest.cpp41 REPORTER_ASSERT(reporter, bounds == path.getBounds());
720 ERRORF(reporter, "path.getBounds() returned [%g %g %g %g], but expected [%g %g %g %g]",
731 REPORTER_ASSERT(reporter, SkRect::MakeLTRB(0, 0, 0, 0) == path.getBounds());
734 REPORTER_ASSERT(reporter, SkRect::MakeLTRB(-5, -8, -5, -8) == path.getBounds());
737 REPORTER_ASSERT(reporter, SkRect::MakeLTRB(-5, -8, 3, 4) == path.getBounds());
740 REPORTER_ASSERT(reporter, SkRect::MakeLTRB(-5, -8, 3, 4) == path.getBounds());
742 dump_if_ne(reporter, SkRect::MakeLTRB(0, 0, 0, 0), path.getBounds());
745 dump_if_ne(reporter, SkRect::MakeLTRB(-5, -8, -5, -8), path.getBounds());
748 dump_if_ne(reporter, SkRect::MakeLTRB(-5, -8, 3, 4), path.getBounds());
751 dump_if_ne(reporter, SkRect::MakeLTRB(-5, -8, 3, 4), path.getBounds());
[all...]
H A DPaintTest.cpp185 fillR = path.getBounds();
190 strokeR = stroke.getBounds();
/external/skia/gm/
H A Dreveal.cpp92 return fRRect.getBounds();
199 return fRRect.getBounds();
299 return fPath.getBounds();
H A Dconicpaths.cpp108 const SkRect& bounds = fPaths[p].getBounds();
H A Ddrawatlas.cpp137 const SkRect bounds = path.getBounds().makeOutset(max, max);
H A Dimagefilters.cpp126 canvas->saveLayer({ &rr.getBounds(), nullptr, filters[i].get(), 0 });
H A Dpath_stroke_with_zero_length.cpp146 SkRect bounds = path.getBounds();
/external/skia/include/core/
H A DSkPath.h348 const SkRect& getBounds() const { function in class:SkPath
349 return fPathRef->getBounds();
353 update it so that subsequent calls to getBounds will be instantaneous.
358 // for now, just calling getBounds() is sufficient
359 this->getBounds();
367 * It differs from getBounds() in that it will look at the snug bounds of curves, whereas
368 * getBounds() just returns the bounds of the control-points. Thus computing this may be
369 * slower than just calling getBounds().
1184 // equivalent to a short-circuit version of getBounds().isEmpty()
H A DSkBitmap.h228 void getBounds(SkRect* bounds) const;
229 void getBounds(SkIRect* bounds) const;
H A DSkPathRef.h183 *rect = this->getBounds();
221 const SkRect& getBounds() const { function in class:final
351 // called, if dirty, by getBounds()
/external/skia/src/gpu/ops/
H A DGrDefaultPathRenderer.cpp524 SkScalar srcSpaceTol = GrPathUtils::scaleToleranceToSrc(tol, viewMatrix, path.getBounds());
547 bounds = path.getBounds();
624 SkRect bounds = path.getBounds();
/external/guava/guava-tests/test/com/google/common/reflect/
H A DTypesTest.java369 assertThat(actual.getBounds()).asList()
370 .has().exactlyAs(asList(expected.getBounds())).inOrder();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DLineGraph.java69 Rectangle bounds= im.getBounds();
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifDrawable.java224 Gravity.apply(GifState.GRAVITY, getIntrinsicWidth(), getIntrinsicHeight(), getBounds(), destRect);
/external/guava/guava-tests/test/com/google/common/collect/
H A DFauxveridesTest.java248 bounds = Arrays.asList(typeParameter.getBounds());

Completed in 599 milliseconds

123456789