HomeSort by relevance Sort by last modified time
    Searched refs:fCoincident (Results 1 - 7 of 7) sorted by null

  /external/skia/src/pathops/
SkOpSpan.h 337 if (fCoincident == this) {
340 fCoincident = this;
350 while ((next = next->fCoincident) != this) {
377 SkOpSpan* coinNext = coin->fCoincident;
378 coin->fCoincident = this->fCoincident;
379 this->fCoincident = coinNext;
390 return fCoincident != this;
460 SkOpSpan* fCoincident; // linked list of spans coincident with this one (may point to itself)
SkOpSpan.cpp 264 const SkOpSpan* next = fCoincident;
269 } while ((next = next->fCoincident) != this);
289 fCoincident = this;
SkPathOpsTSect.h 25 return fCoincident;
30 fCoincident = false;
35 if (!fCoincident) {
38 fCoincident = true;
54 bool fCoincident;
298 SkTSpan<TCurve, OppCurve>* fCoincident;
342 fCoincident = cPt.approximatelyEqual(fPerpPt);
344 if (fCoincident) {
813 , fCoincident(NULL)
948 SkTSpan<TCurve, OppCurve>* test = fCoincident;
    [all...]
SkPathOpsDebug.cpp 484 nextCoin = next->fCoincident;
485 SkASSERT(nextCoin == this || nextCoin->fCoincident != nextCoin);
487 const SkOpSpan* checkCoin = this->fCoincident;
490 innerCoin = innerCoin->fCoincident;
SkPathOpsPostSect.cpp 299 while ((next = next->fCoincident) != this) {
325 fCoincident = this;
336 if (span->fCoincident) {
  /external/skia/tests/
PathOpsTSectDebug.h 13 fCoincident ? " coincident" : "");
100 dumpCommon(fCoincident);
105 dumpCommonCurves(fCoincident);
PathOpsDebug.cpp 965 const SkOpSpan* coincident = fCoincident;
975 } while ((coincident = coincident->fCoincident) != this);
979 SkOpSpan* coin = fCoincident;
    [all...]

Completed in 73 milliseconds