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

  /external/skqp/src/core/
SkPathPriv.h 65 int verbCount = path.countVerbs();
66 if (verbCount == 0)
70 for (int i = 0; i < verbCount; i++) {
79 if (i == verbCount - 1) {
SkPathRef.cpp 282 int32_t verbCount, pointCount, conicCount;
284 !buffer->readS32(&verbCount) || (verbCount < 0) ||
297 size_t verbSize = verbCount * sizeof(uint8_t);
311 ref->resetToSize(verbCount, pointCount, conicCount);
312 SkASSERT(verbCount == ref->countVerbs());
SkPath.cpp 230 int verbCount = fPathRef->countVerbs();
231 if (verbCount != ending.fPathRef->countVerbs()) {
234 if (!verbCount) {
372 int verbCount = fPathRef->countVerbs();
373 if (0 == verbCount) {
376 return kClose_Verb == fPathRef->atVerb(verbCount - 1);
380 int verbCount = fPathRef->countVerbs();
382 if (2 == verbCount) {
    [all...]
  /external/skia/src/core/
SkPathPriv.h 65 int verbCount = path.countVerbs();
66 if (verbCount == 0)
70 for (int i = 0; i < verbCount; i++) {
79 if (i == verbCount - 1) {
SkPathRef.cpp 281 int32_t verbCount, pointCount, conicCount;
283 !buffer->readS32(&verbCount) || (verbCount < 0) ||
296 size_t verbSize = verbCount * sizeof(uint8_t);
310 ref->resetToSize(verbCount, pointCount, conicCount);
311 SkASSERT(verbCount == ref->countVerbs());
SkPath.cpp 231 int verbCount = fPathRef->countVerbs();
232 if (verbCount != ending.fPathRef->countVerbs()) {
235 if (!verbCount) {
373 int verbCount = fPathRef->countVerbs();
374 if (0 == verbCount) {
377 return kClose_Verb == fPathRef->atVerb(verbCount - 1);
381 int verbCount = fPathRef->countVerbs();
383 if (2 == verbCount) {
    [all...]
  /external/skia/src/pathops/
SkOpBuilder.cpp 17 int verbCount = path.countVerbs();
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) {
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/skqp/src/pathops/
SkOpBuilder.cpp 17 int verbCount = path.countVerbs();
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) {
SkOpEdgeBuilder.cpp 66 int verbCount = fPathVerbs.count();
68 if (SkPath::kLine_Verb == fPathVerbs[verbCount - 1]
  /external/skqp/tests/
SubsetPath.cpp 158 int verbCount = 0;
167 ++verbCount;
176 for (int index = 0; index < verbCount; ++index) {
179 fTries = verbCount;
  /external/skia/include/private/
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,
395 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount;
409 fVerbCnt = verbCount;
414 fVerbCnt = verbCount;
  /external/skqp/include/private/
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,
392 size_t newSize = sizeof(uint8_t) * verbCount + sizeof(SkPoint) * pointCount;
406 fVerbCnt = verbCount;
411 fVerbCnt = verbCount;
  /external/skia/samplecode/
SamplePathFuzz.cpp 601 int verbCount = path.countVerbs();
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/
SamplePathFuzz.cpp 601 int verbCount = path.countVerbs();
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/skia/tools/fonts/
create_test_font.cpp 249 int verbCount = verbs.count();
251 for (int index = 0; index < verbCount;) {
256 if (++index < verbCount) {
  /external/skqp/tools/
create_test_font.cpp 248 int verbCount = verbs.count();
250 for (int index = 0; index < verbCount;) {
255 if (++index < verbCount) {

Completed in 627 milliseconds