Home
last modified time | relevance | path

Searched refs:testBounded (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/pathops/
DSkPathOpsTSect.cpp119 const SkTSpanBounded* testBounded = fBounded; in closestBoundedT() local
120 while (testBounded) { in closestBoundedT()
121 const SkTSpan* test = testBounded->fBounded; in closestBoundedT()
132 testBounded = testBounded->fNext; in closestBoundedT()
482 const SkTSpanBounded* testBounded = fBounded; in validateBounded() local
483 while (testBounded) { in validateBounded()
484 SkDEBUGCODE(const SkTSpan* overlap = testBounded->fBounded); in validateBounded()
490 testBounded = testBounded->fNext; in validateBounded()
496 const SkTSpanBounded* testBounded = fBounded; in validatePerpT() local
497 while (testBounded) { in validatePerpT()
[all …]
/external/skia/tests/
DPathOpsDebug.cpp1326 const SkTSpanBounded* testBounded = fBounded; in dumpAll() local
1327 while (testBounded) { in dumpAll()
1328 const SkTSpan* span = testBounded->fBounded; in dumpAll()
1329 const SkTSpanBounded* next = testBounded->fNext; in dumpAll()
1335 testBounded = next; in dumpAll()
1343 const SkTSpanBounded* testBounded = fBounded; in dump() local
1344 while (testBounded) { in dump()
1345 const SkTSpan* span = testBounded->fBounded; in dump()
1346 const SkTSpanBounded* next = testBounded->fNext; in dump()
1351 testBounded = next; in dump()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DTestGenericsBounded.java122 public void testBounded() throws Exception in testBounded() method in TestGenericsBounded