Searched defs:verbCount (Results 1 - 16 of 16) sorted by relevance

/external/skia/tests/
H A DSubsetPath.cpp158 int verbCount = 0; local
167 ++verbCount;
176 for (int index = 0; index < verbCount; ++index) {
179 fTries = verbCount;
/external/skqp/tests/
H A DSubsetPath.cpp158 int verbCount = 0; local
167 ++verbCount;
176 for (int index = 0; index < verbCount; ++index) {
179 fTries = verbCount;
/external/skia/src/pathops/
H A DSkOpBuilder.cpp17 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 DSkOpEdgeBuilder.cpp66 int verbCount = fPathVerbs.count(); local
68 if (SkPath::kLine_Verb == fPathVerbs[verbCount - 1]
/external/skqp/src/core/
H A DSkPathPriv.h65 int verbCount = path.countVerbs(); local
66 if (verbCount == 0)
70 for (int i = 0; i < verbCount; i++) {
79 if (i == verbCount - 1) {
H A DSkPath.cpp230 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 DSkOpBuilder.cpp17 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 DSkOpEdgeBuilder.cpp66 int verbCount = fPathVerbs.count(); local
68 if (SkPath::kLine_Verb == fPathVerbs[verbCount - 1]
/external/skia/src/core/
H A DSkPathPriv.h65 int verbCount = path.countVerbs(); local
66 if (verbCount == 0)
70 for (int i = 0; i < verbCount; i++) {
79 if (i == verbCount - 1) {
H A DSkPath.cpp231 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 Dcreate_test_font.cpp249 int verbCount = verbs.count(); local
251 for (int index = 0; index < verbCount;) {
256 if (++index < verbCount) {
/external/skqp/tools/
H A Dcreate_test_font.cpp248 int verbCount = verbs.count(); local
250 for (int index = 0; index < verbCount;) {
255 if (++index < verbCount) {
/external/skia/include/private/
H A DSkPathRef.h383 /** 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 DSkPathRef.h380 /** 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 DSamplePathFuzz.cpp601 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 DSamplePathFuzz.cpp601 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