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

123456

/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/iproute2/doc/
H A Dip-tunnels.tex12 \verb|kuznet@ms2.inr.ac.ru| \\
36 will create tunnel device with name \verb|MY-TUNNEL|. Now you may configure
41 Certainly, if you prefer name \verb|tunl1| to \verb|MY-TUNNEL|,
51 work in 2.2.0! Moreover, \verb|route| prints a funny error sort of
53 to 10.0.0.0 via \verb|tunl0| in routing table.
62 Note keyword \verb|onlink|, it is the magic key that orders kernel
74 that between \verb|route add| and \verb|route del| host 193.233.7.65 is
78 Q: In 2.0.36 I used to load \verb|tunne
[all...]
H A Dip-cref.tex12 \verb|kuznet@ms2.inr.ac.ru| \\
24 This document presents a comprehensive description of the \verb|ip| utility
25 from the \verb|iproute2| package. It is not a tutorial or user's guide.
33 This document is split into sections explaining \verb|ip| commands
34 and options, decrypting \verb|ip| output and containing a few examples.
43 The generic form of an \verb|ip| command is:
47 where \verb|OPTIONS| is a set of optional modifiers affecting the
48 general behaviour of the \verb|ip| utility or changing its output. All options
49 begin with the character \verb|'-'| and may be used in either long or abbreviated
53 \item \verb|
[all...]
H A Dapi-ip6-flowlabels.tex12 \verb|kuznet@ms2.inr.ac.ru| \\
93 \verb|sin6_flowinfo| field added to \verb|struct| \verb|sockaddr_in6|
102 hole in \verb|sockaddr_in6| in any case. Now it has no justification.
106 if \verb|recvmsg()| initializes \verb|sin6_flowinfo| to flow info
112 RFC2553 adds new requirement: to clear \verb|sin6_flowinfo|.
119 initialize \verb|sin6_flowinfo| at all, so that, if kernel does not
135 By default Linux IPv6 does not read \verb|sin6_flowinf
[all...]
/external/skia/src/xml/
H A DSkBML_XMLParser.cpp86 static void rattr(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer) argument
88 int data = verb & 31;
89 verb >>= 5;
93 switch (verb) {
115 SkDEBUGFAIL("bad verb");
121 static void relem(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer) argument
123 int data = verb & 31;
124 verb >>= 5;
128 if (verb == kStartElem_Value_Verb)
135 SkASSERT(verb
[all...]
/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
H A Dchars-vs-glyphs.lua22 if isTextVerbs[t.verb] then
H A Dglyph-counts.lua30 t.verb is a string holding the name of the draw-op (e.g. "drawRect")
63 verb = t.verb;
64 if verb == "drawPosText" or verb == "drawPosTextH" then
H A Dbitmap_statistics.lua27 -- dump the params in t, specifically showing the verb first, which we
29 if (string.startsWith(t.verb,"drawBitmap")) then
H A Dpaths.lua68 if (string.starts(t.verb, "draw")) then
72 if (string.starts(t.verb, "clip")) then
76 if t.verb == "clipPath" then
92 if t.verb == "drawPath" then
H A Dscrape_dashing.lua32 t.verb is a string holding the name of the draw-op (e.g. "drawRect")
56 increment(total_total, t.verb)
62 increment(total_found, t.verb)
66 if "drawPoints" == t.verb then
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.cpp80 SkPath::Verb verb; local
83 verb = iter.next(pts);
84 switch (verb) {
89 *fPathVerbs.append() = verb;
110 verb = SkReduceOrder::Quad(curve, pts);
111 if (verb == SkPath::kMove_Verb) {
120 verb = SkReduceOrder::Conic(curve, iter.conicWeight(), pts);
121 if (verb == SkPath::kMove_Verb) {
132 verb = SkReduceOrder::Cubic(curve, pts);
133 if (verb
170 SkPath::Verb verb; local
[all...]
H A DSkOpContour.cpp13 SkOpSegment* SkOpContour::addCurve(SkPath::Verb verb, const SkPoint pts[4], argument
15 switch (verb) {
/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/dnsmasq/contrib/port-forward/
H A Ddnsmasq-portforward46 verb=removed
58 verb=added
61 echo " DNAT $protocol $src to ${3}:$dst ${verb}." >>${LOGFILE}
/external/skia/src/core/
H A DSkEdgeBuilder.cpp54 SkPath::Verb verb; local
56 while ((verb = clipper->next(pts)) != SkPath::kDone_Verb) {
57 switch (verb) {
86 SkPath::Verb verb; local
109 while ((verb = iter.next(pts, false)) != SkPath::kDone_Verb) {
110 switch (verb) {
128 SkDEBUGFAIL("unexpected verb");
133 while ((verb = iter.next(pts, false)) != SkPath::kDone_Verb) {
134 switch (verb) {
146 SkDEBUGFAIL("unexpected verb");
179 SkPath::Verb verb; local
[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];
124 SkPath::Verb verb; local
125 while ((verb
[all...]
/external/selinux/policycoreutils/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/skia/src/effects/
H A DSkArcToPathEffect.cpp19 SkPath::Verb verb; local
26 switch (verb = iter.next(pts, false)) {
58 prevVerb = verb;
/external/selinux/policycoreutils/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/icu/icu4c/source/layout/
H A DIndicRearrangementProcessor.h34 void doRearrangementAction(LEGlyphStorage &glyphStorage, IndicRearrangementVerb verb) const;
H A DIndicRearrangementProcessor2.h34 void doRearrangementAction(LEGlyphStorage &glyphStorage, IndicRearrangementVerb verb) const;
/external/libvncserver/x11vnc/
H A Dutil.c474 static int set = 0, verb = -1; local
479 if (verb < 0) {
480 verb = 0;
481 if (getenv("RATE_VERB")) verb = 1;
493 if (verb) fprintf(stderr, "nqueued: %d\n", nq);
496 if (verb) rfbLog("check_allinput_rate:\n");
497 if (verb) rfbLog("Client is sending %.1f extra requests per second for the\n", rate);
498 if (verb) rfbLog("past %d seconds! (queued: %d)\n", dt, nq);
511 static int meas = 0, verb = -1; local
528 if (verb <
[all...]

Completed in 503 milliseconds

123456