Searched defs:verbs (Results 1 - 8 of 8) sorted by relevance

/external/skia/tools/
H A Dpath_utils.cpp43 uint8_t verbs[kMaxVerbs]; local
46 path.getVerbs(verbs, kMaxVerbs);
85 pathStream->writeText("uint8_t verbs");
91 pathStream->writeText(gStrs[verbs[i]]);
126 pathStream->writeText("const uint8_t* verbs[] = {\n");
128 pathStream->writeText("\t(const uint8_t*)verbs");
/external/skia/gm/
H A Daarectmodes.cpp29 char verbs[] = { local
37 for (size_t i = 0; i < sizeof(verbs); ++i) {
38 switch ((SkPath::Verb) verbs[i]) {
/external/chromium_org/third_party/skia/include/core/
H A DSkPathRef.h23 * Holds the path verbs and points. It is versioned by a generation ID. None of its public methods
24 * modify the contents. To modify or append to the verbs/points wrap the SkPathRef in an
30 * The points and verbs are stored in a single allocation. The points are at the begining of the
31 * allocation while the verbs are stored at end of the allocation, in reverse order. Thus the points
32 * and verbs both grow into the middle of the allocation until the meet. To access verb i in the
33 * verb array use ref.verbs()[~i] (because verbs() returns a pointer just beyond the first
91 * Resets the path ref to a new verb and point count. The new verbs and points are
113 * Gets a path ref with no verbs or points.
183 * Rollsback a path ref to zero verbs an
209 const uint8_t* verbs() const { SkDEBUGCODE(this->validate();) return fVerbs; } function in class:SkPathRef
[all...]
/external/skia/include/core/
H A DSkPathRef.h23 * Holds the path verbs and points. It is versioned by a generation ID. None of its public methods
24 * modify the contents. To modify or append to the verbs/points wrap the SkPathRef in an
30 * The points and verbs are stored in a single allocation. The points are at the begining of the
31 * allocation while the verbs are stored at end of the allocation, in reverse order. Thus the points
32 * and verbs both grow into the middle of the allocation until the meet. To access verb i in the
33 * verb array use ref.verbs()[~i] (because verbs() returns a pointer just beyond the first
91 * Resets the path ref to a new verb and point count. The new verbs and points are
113 * Gets a path ref with no verbs or points.
183 * Rollsback a path ref to zero verbs an
209 const uint8_t* verbs() const { SkDEBUGCODE(this->validate();) return fVerbs; } function in class:SkPathRef
[all...]
/external/chromium_org/chrome/installer/util/
H A Dshell_util.cc251 // registered to handle some verbs. This registration has the side-effect
252 // that these verbs now show up in the shortcut's context menu. We
259 } verbs[] = { local
263 for (size_t i = 0; i < arraysize(verbs); ++i) {
266 sub_path.append(verbs[i].verb);
269 if (verbs[i].name_id != -1) {
272 string16 verb_name(installer::GetLocalizedString(verbs[i].name_id));
/external/chromium_org/third_party/skia/src/core/
H A DSkPath.cpp112 Stores the verbs and points as they are given to us, with exceptions:
572 copy_verbs_reverse(dst, fPathRef->verbs(), count);
1085 const uint8_t* verbs = const_cast<const SkPathRef*>(fPathRef.get())->verbsMemBegin(); local
1087 if (*verbs == kLine_Verb ||
1088 *verbs == kQuad_Verb ||
1089 *verbs == kConic_Verb ||
1090 *verbs == kCubic_Verb) {
1093 ++verbs;
1480 const uint8_t* verbs = path.fPathRef->verbs(); local
1523 const uint8_t* verbs = src.fPathRef->verbsMemBegin(); // points at the last verb local
1729 const uint8_t* verbs = fVerbs; local
2400 const uint8_t* verbs = fCurrVerb; local
[all...]
/external/skia/src/core/
H A DSkPath.cpp112 Stores the verbs and points as they are given to us, with exceptions:
572 copy_verbs_reverse(dst, fPathRef->verbs(), count);
1085 const uint8_t* verbs = const_cast<const SkPathRef*>(fPathRef.get())->verbsMemBegin(); local
1087 if (*verbs == kLine_Verb ||
1088 *verbs == kQuad_Verb ||
1089 *verbs == kConic_Verb ||
1090 *verbs == kCubic_Verb) {
1093 ++verbs;
1480 const uint8_t* verbs = path.fPathRef->verbs(); local
1523 const uint8_t* verbs = src.fPathRef->verbsMemBegin(); // points at the last verb local
1729 const uint8_t* verbs = fVerbs; local
2400 const uint8_t* verbs = fCurrVerb; local
[all...]
/external/skia/tests/
H A DPathTest.cpp1243 path.lineTo(0, 0); // too many points/verbs
2022 uint8_t verbs[32]; local
2084 REPORTER_ASSERT(reporter, gZeroLengthTests[i].numResultVerbs == (size_t)p.getVerbs(verbs, SK_ARRAY_COUNT(verbs)));
2086 REPORTER_ASSERT(reporter, gZeroLengthTests[i].resultVerbs[j] == verbs[j]);
3301 uint8_t verbs[6]; local
3302 verbs[5] = 0xff;
3303 p.getVerbs(verbs, 5);
3304 REPORTER_ASSERT(reporter, SkPath::kMove_Verb == verbs[0]);
3305 REPORTER_ASSERT(reporter, SkPath::kLine_Verb == verbs[
[all...]

Completed in 4614 milliseconds