HomeSort by relevance Sort by last modified time
    Searched defs:fVerbs (Results 1 - 6 of 6) sorted by null

  /external/skia/src/core/
SkEdgeClipper.h 39 SkPath::Verb fVerbs[kMaxVerbs];
SkQuadClipper.h 53 SkPath::Verb fVerbs[kMaxVerbs];
  /external/skia/src/fonts/
SkTestScalerContext.h 21 const unsigned char* fVerbs;
  /external/skia/include/core/
SkPathRef.h 190 SkDEBUGCODE(fVerbs = NULL;)
205 const uint8_t* verbs() const { SkDEBUGCODE(this->validate();) return fVerbs; }
269 fVerbs = NULL;
338 fVerbs = NULL;
400 fVerbs = reinterpret_cast<uint8_t*>(reinterpret_cast<intptr_t>(fPoints) + newSize);
410 return fVerbs - fVerbCnt;
417 return reinterpret_cast<intptr_t>(fVerbs) - reinterpret_cast<intptr_t>(fPoints);
445 uint8_t* fVerbs; // points just past the end of the allocation (verbs grow backwards)
SkPath.h     [all...]
  /external/skia/bench/
PathBench.cpp 236 fVerbs.reset(kNumVerbs);
239 fVerbs[i] = static_cast<SkPath::Verb>(fRandom.nextULessThan(SkPath::kDone_Verb));
240 } while (!allowMoves && SkPath::kMove_Verb == fVerbs[i]);
259 int verb = fVerbs[(fCurrVerb++) & (kNumVerbs - 1)];
296 fVerbs.reset(0);
308 SkAutoTArray<SkPath::Verb> fVerbs;

Completed in 203 milliseconds