Home
last modified time | relevance | path

Searched refs:nextEnd (Results 1 – 9 of 9) sorted by relevance

/external/skqp/src/pathops/
DSkPathOpsSimplify.cpp32 SkOpSpanBase* nextEnd = end; in bridgeWinding() local
33 SkOpSegment* next = current->findNextWinding(&chase, &nextStart, &nextEnd, in bridgeWinding()
48 end = nextEnd; in bridgeWinding()
109 SkOpSpanBase* nextEnd = end; in bridgeXor() local
110 SkOpSegment* next = current->findNextXor(&nextStart, &nextEnd, in bridgeXor()
125 end = nextEnd; in bridgeXor()
DSkOpSegment.cpp539 SkOpSpanBase** nextEnd, bool* unsortable, bool* simple, in findNextOp() argument
542 SkOpSpanBase* end = *nextEnd; in findNextOp()
557 *nextEnd = step > 0 ? (*nextStart)->upCast()->next() : (*nextStart)->prev(); in findNextOp()
636 *nextEnd = foundAngle->end(); in findNextOp()
640 __FUNCTION__, debugID(), nextSegment->debugID(), *nextStart, *nextEnd); in findNextOp()
646 SkOpSpanBase** nextStart, SkOpSpanBase** nextEnd, bool* unsortable) { in findNextWinding() argument
648 SkOpSpanBase* end = *nextEnd; in findNextWinding()
663 *nextEnd = step > 0 ? (*nextStart)->upCast()->next() : (*nextStart)->prev(); in findNextWinding()
732 *nextEnd = foundAngle->end(); in findNextWinding()
736 __FUNCTION__, debugID(), nextSegment->debugID(), *nextStart, *nextEnd); in findNextWinding()
[all …]
DSkPathOpsOp.cpp131 SkOpSpanBase* nextEnd = end; in bridgeOp() local
133 SkOpSegment* next = current->findNextOp(&chase, &nextStart, &nextEnd, in bridgeOp()
162 end = nextEnd; in bridgeOp()
DSkOpSegment.h215 SkOpSpanBase** nextEnd, bool* unsortable, bool* simple,
218 SkOpSpanBase** nextEnd, bool* unsortable);
219 SkOpSegment* findNextXor(SkOpSpanBase** nextStart, SkOpSpanBase** nextEnd, bool* unsortable);
/external/skia/src/pathops/
DSkPathOpsSimplify.cpp32 SkOpSpanBase* nextEnd = end; in bridgeWinding() local
33 SkOpSegment* next = current->findNextWinding(&chase, &nextStart, &nextEnd, in bridgeWinding()
48 end = nextEnd; in bridgeWinding()
109 SkOpSpanBase* nextEnd = end; in bridgeXor() local
110 SkOpSegment* next = current->findNextXor(&nextStart, &nextEnd, in bridgeXor()
125 end = nextEnd; in bridgeXor()
DSkOpSegment.cpp539 SkOpSpanBase** nextEnd, bool* unsortable, bool* simple, in findNextOp() argument
542 SkOpSpanBase* end = *nextEnd; in findNextOp()
557 *nextEnd = step > 0 ? (*nextStart)->upCast()->next() : (*nextStart)->prev(); in findNextOp()
636 *nextEnd = foundAngle->end(); in findNextOp()
640 __FUNCTION__, debugID(), nextSegment->debugID(), *nextStart, *nextEnd); in findNextOp()
646 SkOpSpanBase** nextStart, SkOpSpanBase** nextEnd, bool* unsortable) { in findNextWinding() argument
648 SkOpSpanBase* end = *nextEnd; in findNextWinding()
663 *nextEnd = step > 0 ? (*nextStart)->upCast()->next() : (*nextStart)->prev(); in findNextWinding()
732 *nextEnd = foundAngle->end(); in findNextWinding()
736 __FUNCTION__, debugID(), nextSegment->debugID(), *nextStart, *nextEnd); in findNextWinding()
[all …]
DSkPathOpsOp.cpp131 SkOpSpanBase* nextEnd = end; in bridgeOp() local
133 SkOpSegment* next = current->findNextOp(&chase, &nextStart, &nextEnd, in bridgeOp()
162 end = nextEnd; in bridgeOp()
DSkOpSegment.h215 SkOpSpanBase** nextEnd, bool* unsortable, bool* simple,
218 SkOpSpanBase** nextEnd, bool* unsortable);
219 SkOpSegment* findNextXor(SkOpSpanBase** nextStart, SkOpSpanBase** nextEnd, bool* unsortable);
/external/skqp/tools/bookmaker/
Ddefinition.cpp458 const char* nextEnd = paren; in checkMethod() local
461 methodParser.fChar = nextEnd + 1; in checkMethod()
463 if (!this->nextMethodParam(&methodParser, &nextEnd, &paramName)) { in checkMethod()
488 if (')' == nextEnd[0]) { in checkMethod()
491 } while (')' != nextEnd[0]); in checkMethod()
731 const char* nextEnd = delimiter ? delimiter : methodParser.fEnd; in formatFunction() local
733 while (nextStart < nextEnd && ' ' >= nextStart[0]) { in formatFunction()
737 while (nextEnd > nextStart && ' ' >= nextEnd[-1]) { in formatFunction()
738 --nextEnd; in formatFunction()
741 nextEnd += 1; in formatFunction()
[all …]