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

  /external/chromium_org/third_party/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,
scrape_dashing_full.lua 112 eventually would like to print out info on drawPath verbs with dashed effect
  /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,
scrape_dashing_full.lua 112 eventually would like to print out info on drawPath verbs with dashed effect
  /external/chromium_org/third_party/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/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/tools/
create_test_font.cpp 184 int emSize, SkString* ptsOut, SkTDArray<SkPath::Verb>* verbs,
194 *verbs->append() = verb;
215 *verbs->append() = SkPath::kDone_Verb;
273 SkTDArray<SkPath::Verb> verbs; local
277 output_path_data(paint, used, emSize, &ptsOut, &verbs, &charCodes, &widths);
287 int verbCount = verbs.count();
290 SkPath::Verb verb = verbs[index];
  /external/chromium_org/third_party/skia/src/fonts/
SkTestScalerContext.h 38 void init(const SkScalar* pts, const unsigned char* verbs);
SkTestScalerContext.cpp 79 void SkTestFont::init(const SkScalar* pts, const unsigned char* verbs) {
84 while ((verb = (SkPath::Verb) *verbs++) != SkPath::kDone_Verb) {
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp 112 Stores the verbs and points as they are given to us, with exceptions:
612 copy_verbs_reverse(dst, fPathRef->verbs(), count);
1122 const uint8_t* verbs = const_cast<const SkPathRef*>(fPathRef.get())->verbsMemBegin(); local
1432 const uint8_t* verbs = path.fPathRef->verbs(); local
1475 const uint8_t* verbs = src.fPathRef->verbsMemBegin(); \/\/ points at the last verb local
1681 const uint8_t* verbs = fVerbs; local
2391 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:
612 copy_verbs_reverse(dst, fPathRef->verbs(), count);
1125 const uint8_t* verbs = const_cast<const SkPathRef*>(fPathRef.get())->verbsMemBegin(); local
1526 const uint8_t* verbs = path.fPathRef->verbs(); local
1569 const uint8_t* verbs = src.fPathRef->verbsMemBegin(); \/\/ points at the last verb local
1775 const uint8_t* verbs = fVerbs; local
2430 const uint8_t* verbs = fCurrVerb; local
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkPathRef.h 24 * Holds the path verbs and points. It is versioned by a generation ID. None of its public methods
25 * modify the contents. To modify or append to the verbs/points wrap the SkPathRef in an
31 * The points and verbs are stored in a single allocation. The points are at the begining of the
32 * allocation while the verbs are stored at end of the allocation, in reverse order. Thus the points
33 * and verbs both grow into the middle of the allocation until the meet. To access verb i in the
34 * verb array use ref.verbs()[~i] (because verbs() returns a pointer just beyond the first
92 * Resets the path ref to a new verb and point count. The new verbs and points are
114 * Gets a path ref with no verbs or points.
180 * Rollsback a path ref to zero verbs and points with the assumption that the path ref will b
206 const uint8_t* verbs() const { SkDEBUGCODE(this->validate();) return fVerbs; } function in class:SkPathRef
    [all...]
SkPath.h 253 /** Return the number of verbs in the path
257 /** Returns the number of verbs in the path. Up to max verbs are copied. The
258 verbs are copied as one byte per verb.
260 @param verbs If not null, receives up to max verbs
261 @param max The maximum number of verbs to copy into verbs
262 @return the actual number of verbs in the path
264 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.
179 * Rollsback a path ref to zero verbs and points with the assumption that the path ref will b
205 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/fio/engines/
rdma.c 4 * RDMA I/O engine based on the IB verbs and RDMA/CM user space libraries.
317 rd->pd = ibv_alloc_pd(rd->child_cm_id->verbs);
319 rd->pd = ibv_alloc_pd(rd->cm_id->verbs);
327 rd->channel = ibv_create_comp_channel(rd->child_cm_id->verbs);
329 rd->channel = ibv_create_comp_channel(rd->cm_id->verbs);
339 rd->cq = ibv_create_cq(rd->child_cm_id->verbs,
342 rd->cq = ibv_create_cq(rd->cm_id->verbs,
  /external/chromium_org/third_party/skia/tests/
PathTest.cpp 2161 uint8_t verbs[32]; local
3199 uint8_t verbs[4]; local
3217 uint8_t verbs[7]; local
3552 uint8_t verbs[6]; local
    [all...]
  /external/skia/tests/
PathTest.cpp 2096 uint8_t verbs[32]; local
3134 uint8_t verbs[4]; local
3152 uint8_t verbs[7]; local
3439 uint8_t verbs[6]; local
    [all...]
  /external/chromium_org/chrome/installer/util/
shell_util.cc 255 // registered to handle some verbs. This registration has the side-effect
256 // that these verbs now show up in the shortcut's context menu. We
263 } verbs[] = { local
267 for (size_t i = 0; i < arraysize(verbs); ++i) {
270 sub_path.append(verbs[i].verb);
273 if (verbs[i].name_id != -1) {
277 installer::GetLocalizedString(verbs[i].name_id));
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalker.cpp     [all...]
  /external/skia/experimental/Intersection/
EdgeWalker.cpp     [all...]
  /external/pcre/dist/
pcre_compile.c 225 /* Table of special "verbs" like (*PRUNE). This is a short table, so it is
248 static const verbitem verbs[] = { variable
260 static const int verbcount = sizeof(verbs)/sizeof(verbitem);
    [all...]
  /external/chromium_org/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 527 milliseconds