Searched refs:verb (Results 1 - 25 of 256) sorted by relevance

1234567891011

/external/syslinux/gpxe/src/include/hci/
H A Difmgmt_cmd.h28 const char *verb );
/external/selinux/policycoreutils/setsebool/
H A Dsetsebool-bash-completion.sh31 local verb comps
33 if [ "$verb" = "" -a "$prev" = "setsebool" -o "$prev" = "-P" ]; then
44 local verb comps
46 if [ "$verb" = "" -a "$prev" == "getsebool" ]; then
50 if [ "$verb" = "" -a "$prev" != "-a" ]; then
/external/freetype/src/gxvalid/
H A Dgxvmort0.c77 FT_UShort verb = 0; local
83 FT_UNUSED( GXV_Mort_IndicScript_Msg[verb] ); /* for the non-debugging */
92 verb = (FT_UShort)( flags & 0x000F );
99 GXV_TRACE(( " %02d", verb ));
100 GXV_TRACE(( " %s\n", GXV_Mort_IndicScript_Msg[verb] ));
/external/skia/tools/lua/
H A Ddumpops.lua26 -- dump the params in t, specifically showing the verb first, which we
28 io.write(t.verb, " ")
29 t.verb = nil
H A Dbbh_filter.lua32 output = {} -- Stores {fileName, {verb, count}} tables.
63 -- dump the params in t, specifically showing the verb first, which we
66 verbCounts[t.verb] = (verbCounts[t.verb] or 0) + 1
67 currentInfo.verbs[t.verb] = (currentInfo.verbs[t.verb] or 0) + 1
70 t.verb = nil
74 verbWeights = {} -- {verb, weight}, where 0 < weight <= 1
124 for verb,count in pairs(globalInfo[t.fileName].verbs) do
125 io.write(' ', verb, "
[all...]
H A Dscrape.lua31 t.verb is a string holding the name of the draw-op (e.g. "drawRect")
51 local n = total[t.verb] or 0
52 total[t.verb] = n + 1
54 if false and t.verb == "drawRect" and t.paint:isAntiAlias() then
61 if false and t.verb == "drawPath" then
/external/skqp/tools/lua/
H A Ddumpops.lua26 -- dump the params in t, specifically showing the verb first, which we
28 io.write(t.verb, " ")
29 t.verb = nil
H A Dbbh_filter.lua32 output = {} -- Stores {fileName, {verb, count}} tables.
63 -- dump the params in t, specifically showing the verb first, which we
66 verbCounts[t.verb] = (verbCounts[t.verb] or 0) + 1
67 currentInfo.verbs[t.verb] = (currentInfo.verbs[t.verb] or 0) + 1
70 t.verb = nil
74 verbWeights = {} -- {verb, weight}, where 0 < weight <= 1
124 for verb,count in pairs(globalInfo[t.fileName].verbs) do
125 io.write(' ', verb, "
[all...]
H A Dscrape.lua31 t.verb is a string holding the name of the draw-op (e.g. "drawRect")
51 local n = total[t.verb] or 0
52 total[t.verb] = n + 1
54 if false and t.verb == "drawRect" and t.paint:isAntiAlias() then
61 if false and t.verb == "drawPath" then
/external/skia/bench/
H A DPathIterBench.cpp72 SkPath::Verb verb; variable
75 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { }
80 SkPath::Verb verb; variable
83 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { }
/external/skqp/bench/
H A DPathIterBench.cpp72 SkPath::Verb verb; variable
75 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { }
80 SkPath::Verb verb; variable
83 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { }
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.cpp29 static bool can_add_curve(SkPath::Verb verb, SkPoint* curve) { argument
30 if (SkPath::kMove_Verb == verb) {
33 for (int index = 0; index <= SkPathOpsVerbToPoints(verb); ++index) {
36 return SkPath::kLine_Verb != verb || !SkDPoint::ApproximatelyEqual(curve[0], curve[1]);
88 SkPath::Verb verb; local
91 verb = iter.next(pts);
92 switch (verb) {
97 *fPathVerbs.append() = verb;
118 verb = SkReduceOrder::Quad(curve, pts);
119 if (verb
180 SkPath::Verb verb; local
[all...]
H A DSkPathOpsCurve.cpp13 double SkDCurve::nearPoint(SkPath::Verb verb, const SkDPoint& xy, const SkDPoint& opp) const { argument
14 int count = SkPathOpsVerbToPoints(verb);
35 (*CurveDIntersectRay[verb])(*this, perp, &i);
55 void SkDCurve::offset(SkPath::Verb verb, const SkDVector& off) { argument
56 int count = SkPathOpsVerbToPoints(verb);
92 void SkDCurveSweep::setCurveHullSweep(SkPath::Verb verb) { argument
95 if (SkPath::kLine_Verb == verb) {
104 for (int index = 0; index <= SkPathOpsVerbToPoints(verb); ++index) {
109 if (SkPath::kCubic_Verb != verb) {
H A DSkPathOpsTightBounds.cpp14 SkPath::Verb verb; local
17 verb = iter.next(pts);
18 switch (verb) {
45 } while (verb != SkPath::kDone_Verb);
/external/skqp/src/pathops/
H A DSkOpEdgeBuilder.cpp29 static bool can_add_curve(SkPath::Verb verb, SkPoint* curve) { argument
30 if (SkPath::kMove_Verb == verb) {
33 for (int index = 0; index <= SkPathOpsVerbToPoints(verb); ++index) {
36 return SkPath::kLine_Verb != verb || !SkDPoint::ApproximatelyEqual(curve[0], curve[1]);
88 SkPath::Verb verb; local
91 verb = iter.next(pts);
92 switch (verb) {
97 *fPathVerbs.append() = verb;
118 verb = SkReduceOrder::Quad(curve, pts);
119 if (verb
180 SkPath::Verb verb; local
[all...]
H A DSkPathOpsCurve.cpp13 double SkDCurve::nearPoint(SkPath::Verb verb, const SkDPoint& xy, const SkDPoint& opp) const { argument
14 int count = SkPathOpsVerbToPoints(verb);
35 (*CurveDIntersectRay[verb])(*this, perp, &i);
55 void SkDCurve::offset(SkPath::Verb verb, const SkDVector& off) { argument
56 int count = SkPathOpsVerbToPoints(verb);
92 void SkDCurveSweep::setCurveHullSweep(SkPath::Verb verb) { argument
95 if (SkPath::kLine_Verb == verb) {
104 for (int index = 0; index <= SkPathOpsVerbToPoints(verb); ++index) {
109 if (SkPath::kCubic_Verb != verb) {
H A DSkPathOpsTightBounds.cpp14 SkPath::Verb verb; local
17 verb = iter.next(pts);
18 switch (verb) {
45 } while (verb != SkPath::kDone_Verb);
/external/skia/tests/
H A DSubsetPath.cpp65 uint8_t verb; local
69 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
70 switch (verb) {
84 SkDEBUGFAIL("bad verb");
102 uint8_t verb; local
107 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
112 switch (verb) {
146 SkDEBUGFAIL("bad verb");
156 uint8_t verb; local
159 while ((verb
189 uint8_t verb; local
[all...]
/external/skqp/tests/
H A DSubsetPath.cpp65 uint8_t verb; local
69 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
70 switch (verb) {
84 SkDEBUGFAIL("bad verb");
102 uint8_t verb; local
107 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
112 switch (verb) {
146 SkDEBUGFAIL("bad verb");
156 uint8_t verb; local
159 while ((verb
189 uint8_t verb; local
[all...]
/external/selinux/python/semanage/
H A Dsemanage-bash-completion.sh73 local verb comps
92 if [ "$verb" = "" -a "$prev" = "semanage" ]; then
94 elif [ "$verb" = "" -a "$prev" = "-S" -o "$prev" = "--store" ]; then
97 elif [ "$verb" = "" -a "$prev" = "-p" -o "$prev" = "--proto" ]; then
100 elif [ "$verb" = "" -a "$prev" = "-R" -o "$prev" = "-r" -o "$prev" = "--role" ]; then
107 elif [ "$verb" = "" -a "$prev" = "-s" -o "$prev" = "--seuser" ]; then
110 elif [ "$verb" = "" -a "$prev" = "-f" -o "$prev" = "--ftype" ]; then
113 elif [ "$verb" = "" -a "$prev" = "-t" -o "$prev" = "--types" ]; then
/external/syslinux/gpxe/src/hci/commands/
H A Difmgmt_cmd.c44 * @v verb Verb describing the action of the command
46 static void ifcommon_syntax ( char **argv, const char *verb ) {
51 argv[0], verb );
104 * @v verb Verb describing the action of the command
109 const char *verb ) {
120 ifcommon_syntax ( argv, verb );
/external/mmc-utils/
H A Dmmc.c38 char *verb; /* verb */ member in struct:Command
197 printf("\t%s %s ", programname, cmd->verb );
220 for( cp = commands; cp->verb; cp++ )
259 for( match = 0, cp = commands; cp->verb; cp++ ){
304 newname = (char*)malloc(strlen(prgname)+strlen(cmd->verb)+2);
317 strcat(newname, cmd->verb);
360 for( cp = commands; cp->verb; cp++ )
362 cp->ncmds = split_command(cp->verb, &(cp->cmds));
364 for( cp = commands; cp->verb; c
[all...]
/external/selinux/python/sepolicy/
H A Dsepolicy-bash-completion.sh66 local verb comps
94 verb=${COMP_WORDS[i]}
99 if [[ -z $verb ]]; then
107 elif [ "$verb" = "booleans" ]; then
112 COMPREPLY=( $(compgen -W '${OPTS[$verb]}' -- "$cur") )
114 elif [ "$verb" = "communicate" ]; then
122 COMPREPLY=( $(compgen -W '${OPTS[$verb]}' -- "$cur") )
124 elif [ "$verb" = "generate" ]; then
147 elif [[ "$cur" == "$verb" || "$cur" == "" || "$cur" == -* ]]; then
148 COMPREPLY=( $(compgen -W '${OPTS[$verb]}'
[all...]
/external/skia/src/gpu/gl/
H A DGrGLPath.cpp14 inline GrGLubyte verb_to_gl_path_cmd(SkPath::Verb verb) { argument
30 SkASSERT(verb >= 0 && (size_t)verb < SK_ARRAY_COUNT(gTable));
31 return gTable[verb];
35 inline int num_coords(SkPath::Verb verb) { argument
51 SkASSERT(verb >= 0 && (size_t)verb < SK_ARRAY_COUNT(gTable));
52 return gTable[verb];
111 SkPath::Verb verb; local
112 while ((verb
[all...]
/external/skqp/src/gpu/gl/
H A DGrGLPath.cpp14 inline GrGLubyte verb_to_gl_path_cmd(SkPath::Verb verb) { argument
30 SkASSERT(verb >= 0 && (size_t)verb < SK_ARRAY_COUNT(gTable));
31 return gTable[verb];
35 inline int num_coords(SkPath::Verb verb) { argument
51 SkASSERT(verb >= 0 && (size_t)verb < SK_ARRAY_COUNT(gTable));
52 return gTable[verb];
111 SkPath::Verb verb; local
112 while ((verb
[all...]

Completed in 1352 milliseconds

1234567891011