Searched defs:verbCount (Results 1 - 16 of 16) sorted by relevance
/external/skia/tests/ |
H A D | SubsetPath.cpp | 158 int verbCount = 0; local 167 ++verbCount; 176 for (int index = 0; index < verbCount; ++index) { 179 fTries = verbCount;
|
/external/skqp/tests/ |
H A D | SubsetPath.cpp | 158 int verbCount = 0; local 167 ++verbCount; 176 for (int index = 0; index < verbCount; ++index) { 179 fTries = verbCount;
|
/external/skia/src/pathops/ |
H A D | SkOpBuilder.cpp | 17 int verbCount = path.countVerbs(); local 18 uint8_t* verbs = (uint8_t*) allocator.makeArrayDefault<uint8_t>(verbCount); 19 (void) path.getVerbs(verbs, verbCount); 20 for (int index = 1; index < verbCount; ++index) {
|
H A D | SkOpEdgeBuilder.cpp | 66 int verbCount = fPathVerbs.count(); local 68 if (SkPath::kLine_Verb == fPathVerbs[verbCount - 1]
|
/external/skqp/src/core/ |
H A D | SkPathPriv.h | 65 int verbCount = path.countVerbs(); local 66 if (verbCount == 0) 70 for (int i = 0; i < verbCount; i++) { 79 if (i == verbCount - 1) {
|
H A D | SkPath.cpp | 230 int verbCount = fPathRef->countVerbs(); local 231 if (verbCount != ending.fPathRef->countVerbs()) { 234 if (!verbCount) { 372 int verbCount = fPathRef->countVerbs(); local 373 if (0 == verbCount) { 376 return kClose_Verb == fPathRef->atVerb(verbCount - 1); 380 int verbCount = fPathRef->countVerbs(); local 382 if (2 == verbCount) { 2069 Format in compressed buffer: [ptCount, verbCount, pts[], verbs[]]
|
/external/skqp/src/pathops/ |
H A D | SkOpBuilder.cpp | 17 int verbCount = path.countVerbs(); local 18 uint8_t* verbs = (uint8_t*) allocator.makeArrayDefault<uint8_t>(verbCount); 19 (void) path.getVerbs(verbs, verbCount); 20 for (int index = 1; index < verbCount; ++index) {
|
H A D | SkOpEdgeBuilder.cpp | 66 int verbCount = fPathVerbs.count(); local 68 if (SkPath::kLine_Verb == fPathVerbs[verbCount - 1]
|
/external/skia/src/core/ |
H A D | SkPathPriv.h | 65 int verbCount = path.countVerbs(); local 66 if (verbCount == 0) 70 for (int i = 0; i < verbCount; i++) { 79 if (i == verbCount - 1) {
|
H A D | SkPath.cpp | 231 int verbCount = fPathRef->countVerbs(); local 232 if (verbCount != ending.fPathRef->countVerbs()) { 235 if (!verbCount) { 373 int verbCount = fPathRef->countVerbs(); local 374 if (0 == verbCount) { 377 return kClose_Verb == fPathRef->atVerb(verbCount - 1); 381 int verbCount = fPathRef->countVerbs(); local 383 if (2 == verbCount) {
|
/external/skia/tools/fonts/ |
H A D | create_test_font.cpp | 249 int verbCount = verbs.count(); local 251 for (int index = 0; index < verbCount;) { 256 if (++index < verbCount) {
|
/external/skqp/tools/ |
H A D | create_test_font.cpp | 248 int verbCount = verbs.count(); local 250 for (int index = 0; index < verbCount;) { 255 if (++index < verbCount) {
|
/external/skia/include/private/ |
H A D | SkPathRef.h | 383 /** Resets the path ref with verbCount verbs and pointCount points, all uninitialized. Also 385 void resetToSize(int verbCount, int pointCount, int conicCount, argument 395 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount; 409 fVerbCnt = verbCount; 414 fVerbCnt = verbCount;
|
/external/skqp/include/private/ |
H A D | SkPathRef.h | 380 /** Resets the path ref with verbCount verbs and pointCount points, all uninitialized. Also 382 void resetToSize(int verbCount, int pointCount, int conicCount, argument 392 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount; 406 fVerbCnt = verbCount; 411 fVerbCnt = verbCount;
|
/external/skia/samplecode/ |
H A D | SamplePathFuzz.cpp | 601 int verbCount = path.countVerbs(); local 602 if (verbCount == 0) { 606 verbs.setCount(verbCount); 607 SkDEBUGCODE(int getVerbResult = ) path.getVerbs(verbs.begin(), verbCount); 608 SkASSERT(getVerbResult == verbCount); 609 for (int index = 0; index < verbCount; ++index) {
|
/external/skqp/samplecode/ |
H A D | SamplePathFuzz.cpp | 601 int verbCount = path.countVerbs(); local 602 if (verbCount == 0) { 606 verbs.setCount(verbCount); 607 SkDEBUGCODE(int getVerbResult = ) path.getVerbs(verbs.begin(), verbCount); 608 SkASSERT(getVerbResult == verbCount); 609 for (int index = 0; index < verbCount; ++index) {
|
Completed in 4385 milliseconds