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

  /external/skia/src/core/
SkPathPriv.h 59 int verbCount = path.countVerbs();
60 if (verbCount == 0)
64 for (int i = 0; i < verbCount; i++) {
73 if (i == verbCount - 1) {
SkPathRef.cpp 240 int32_t verbCount, pointCount, conicCount;
243 !buffer->readS32(&verbCount) ||
244 verbCount < 0 ||
245 static_cast<uint32_t>(verbCount) > maxPtrDiff/sizeof(uint8_t) ||
249 sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount >
256 ref->resetToSize(verbCount, pointCount, conicCount);
257 SkASSERT(verbCount == ref->countVerbs());
261 if (!buffer->read(ref->verbsMemWritable(), verbCount * sizeof(uint8_t)) ||
SkPath.cpp 222 int verbCount = fPathRef->countVerbs();
223 if (verbCount != ending.fPathRef->countVerbs()) {
226 if (!verbCount) {
361 int verbCount = fPathRef->countVerbs();
362 if (0 == verbCount) {
365 return kClose_Verb == fPathRef->atVerb(verbCount - 1);
369 int verbCount = fPathRef->countVerbs();
371 if (2 == verbCount) {
    [all...]
  /external/skia/src/pathops/
SkOpBuilder.cpp 18 int verbCount = path.countVerbs();
19 uint8_t* verbs = (uint8_t*) allocator.makeArrayDefault<uint8_t>(verbCount);
20 (void) path.getVerbs(verbs, verbCount);
21 for (int index = 1; index < verbCount; ++index) {
SkOpEdgeBuilder.cpp 66 int verbCount = fPathVerbs.count();
68 if (SkPath::kLine_Verb == fPathVerbs[verbCount - 1]
  /external/skia/tests/
SubsetPath.cpp 158 int verbCount = 0;
167 ++verbCount;
176 for (int index = 0; index < verbCount; ++index) {
179 fTries = verbCount;
  /external/skia/include/core/
SkPathRef.h 377 /** Resets the path ref with verbCount verbs and pointCount points, all uninitialized. Also
379 void resetToSize(int verbCount, int pointCount, int conicCount,
389 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount;
403 fVerbCnt = verbCount;
408 fVerbCnt = verbCount;
  /external/skia/samplecode/
SamplePathFuzz.cpp 600 int verbCount = path.countVerbs();
601 if (verbCount == 0) {
605 verbs.setCount(verbCount);
606 SkDEBUGCODE(int getVerbResult = ) path.getVerbs(verbs.begin(), verbCount);
607 SkASSERT(getVerbResult == verbCount);
608 for (int index = 0; index < verbCount; ++index) {
  /external/skia/tools/
create_test_font.cpp 239 int verbCount = verbs.count();
241 for (int index = 0; index < verbCount;) {
246 if (++index < verbCount) {

Completed in 230 milliseconds