/external/skia/tools/lua/ |
bbh_filter.lua | 24 verbs = {}, 67 currentInfo.verbs[t.verb] = (currentInfo.verbs[t.verb] or 0) + 1 102 function calculate_weight(verbs) 104 for name, count in pairs(verbs) do 124 for verb,count in pairs(globalInfo[t.fileName].verbs) do 138 function(a, b) return calculate_weight(a.verbs) > calculate_weight(b.verbs); end,
|
/external/skia/tools/ |
path_utils.cpp | 43 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/ |
aarectmodes.cpp | 29 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/src/core/ |
SkPath.cpp | 112 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 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/ |
SkPath.cpp | 112 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 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/chromium_org/third_party/skia/include/core/ |
SkPathRef.h | 23 * 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 and points with the assumption that the path ref will b 209 const uint8_t* verbs() const { SkDEBUGCODE(this->validate();) return fVerbs; } function in class:SkPathRef [all...] |
SkPath.h | 252 /** Return the number of verbs in the path 256 /** Returns the number of verbs in the path. Up to max verbs are copied. The 257 verbs are copied as one byte per verb. 259 @param verbs If not null, receives up to max verbs 260 @param max The maximum number of verbs to copy into verbs 261 @return the actual number of verbs in the path 263 int getVerbs(uint8_t verbs[], int max) const [all...] |
/external/skia/include/core/ |
SkPathRef.h | 23 * 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 and points with the assumption that the path ref will b 209 const uint8_t* verbs() const { SkDEBUGCODE(this->validate();) return fVerbs; } function in class:SkPathRef [all...] |
SkPath.h | 252 /** Return the number of verbs in the path 256 /** Returns the number of verbs in the path. Up to max verbs are copied. The 257 verbs are copied as one byte per verb. 259 @param verbs If not null, receives up to max verbs 260 @param max The maximum number of verbs to copy into verbs 261 @return the actual number of verbs in the path 263 int getVerbs(uint8_t verbs[], int max) const [all...] |
/external/skia/tests/ |
PathTest.cpp | 2022 uint8_t verbs[32]; local 3301 uint8_t verbs[6]; local [all...] |
/external/chromium_org/chrome/installer/util/ |
shell_util.cc | 251 // 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)); [all...] |
/external/chromium_org/v8/test/mjsunit/ |
unicode-test.js | [all...] |
/external/v8/test/mjsunit/ |
unicode-test.js | [all...] |