HomeSort by relevance Sort by last modified time
    Searched refs:matches (Results 51 - 75 of 484) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/iproute2/ip/
link_gre.c 133 if (!matches(*argv, "key")) {
151 } else if (!matches(*argv, "ikey")) {
166 } else if (!matches(*argv, "okey")) {
181 } else if (!matches(*argv, "seq")) {
184 } else if (!matches(*argv, "iseq")) {
186 } else if (!matches(*argv, "oseq")) {
188 } else if (!matches(*argv, "csum")) {
191 } else if (!matches(*argv, "icsum")) {
193 } else if (!matches(*argv, "ocsum")) {
195 } else if (!matches(*argv, "nopmtudisc"))
    [all...]
ipmroute.c 168 } else if (matches(*argv, "from") == 0) {
175 if (matches(*argv, "help") == 0)
192 if (matches(*argv, "add") == 0)
194 if (matches(*argv, "delete") == 0)
196 if (matches(*argv, "get") == 0)
199 if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
200 || matches(*argv, "lst") == 0)
202 if (matches(*argv, "help") == 0)
iplink_can.c 101 if (matches(*argv, "bitrate") == 0) {
105 } else if (matches(*argv, "sample-point") == 0) {
113 } else if (matches(*argv, "tq") == 0) {
117 } else if (matches(*argv, "prop-seg") == 0) {
121 } else if (matches(*argv, "phase-seg1") == 0) {
125 } else if (matches(*argv, "phase-seg2") == 0) {
129 } else if (matches(*argv, "sjw") == 0) {
133 } else if (matches(*argv, "loopback") == 0) {
137 } else if (matches(*argv, "listen-only") == 0) {
141 } else if (matches(*argv, "triple-sampling") == 0)
    [all...]
  /external/iproute2/tc/
tc_filter.c 103 } else if (matches(*argv, "preference") == 0 ||
104 matches(*argv, "priority") == 0) {
110 } else if (matches(*argv, "protocol") == 0) {
119 } else if (matches(*argv, "estimator") == 0) {
122 } else if (matches(*argv, "help") == 0) {
151 if (matches(*argv, "help") == 0)
300 } else if (matches(*argv, "preference") == 0 ||
301 matches(*argv, "priority") == 0) {
308 } else if (matches(*argv, "protocol") == 0) {
317 } else if (matches(*argv, "help") == 0)
    [all...]
m_police.c 79 if (matches(arg, "continue") == 0)
81 else if (matches(arg, "drop") == 0)
83 else if (matches(arg, "shot") == 0)
85 else if (matches(arg, "pass") == 0)
89 else if (matches(arg, "reclassify") == 0)
91 else if (matches(arg, "pipe") == 0)
153 if (matches(*argv, "index") == 0) {
159 } else if (matches(*argv, "burst") == 0 ||
212 } else if (matches(*argv, "peakrate") == 0) {
222 } else if (matches(*argv, "reclassify") == 0)
    [all...]
m_estimator.c 46 if (matches(*argv, "help") == 0)
51 if (matches(*argv, "help") == 0)
f_flow.c 76 if (matches(s, flow_keys[i]) == 0) {
156 if (matches(*argv, "map") == 0) {
158 } else if (matches(*argv, "hash") == 0) {
160 } else if (matches(*argv, "keys") == 0) {
165 } else if (matches(*argv, "and") == 0) {
172 } else if (matches(*argv, "or") == 0) {
179 } else if (matches(*argv, "xor") == 0) {
186 } else if (matches(*argv, "rshift") == 0) {
193 } else if (matches(*argv, "addend") == 0) {
200 } else if (matches(*argv, "divisor") == 0)
    [all...]
q_cbq.c 67 if (matches(*argv, "bandwidth") == 0 ||
68 matches(*argv, "rate") == 0) {
74 } else if (matches(*argv, "ewma") == 0) {
84 } else if (matches(*argv, "cell") == 0) {
100 } else if (matches(*argv, "avpkt") == 0) {
106 } else if (matches(*argv, "mpu") == 0) {
112 } else if (matches(*argv, "allot") == 0) {
119 } else if (matches(*argv, "overhead") == 0) {
124 } else if (matches(*argv, "linklayer") == 0) {
129 } else if (matches(*argv, "help") == 0)
    [all...]
tc_qdisc.c 116 } else if (matches(*argv, "estimator") == 0) {
119 } else if (matches(*argv, "stab") == 0) {
123 } else if (matches(*argv, "help") == 0) {
149 if (matches(*argv, "help") == 0)
301 } else if (matches(*argv, "help") == 0) {
338 if (matches(*argv, "add") == 0)
340 if (matches(*argv, "change") == 0)
342 if (matches(*argv, "replace") == 0)
344 if (matches(*argv, "link") == 0)
346 if (matches(*argv, "delete") == 0
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
PatternTest.java 284 assertFalse(mat.matches());
290 assertTrue(mat.matches());
296 assertTrue(mat.matches());
302 assertTrue(mat.matches());
308 assertTrue(mat.matches());
314 assertFalse(mat.matches());
320 assertFalse(mat.matches());
326 assertTrue(mat.matches());
332 assertTrue(mat.matches());
338 assertFalse(mat.matches());
1143 assertTrue(pat.matcher("bBbBaaaa").matches()); method
1144 assertFalse(pat.matcher("bBbBAaAa").matches()); method
1148 assertTrue(pat.matcher("bBbBaaaa").matches()); method
1149 assertFalse(pat.matcher("bBbBAaAa").matches()); method
1169 assertTrue(pat.matcher("a.b.c.log").matches()); method
1170 assertFalse(pat.matcher("a.b.c.log.").matches()); method
1174 assertFalse(pat.matcher("abc.log").matches()); method
1175 assertTrue(pat.matcher("abc.logg").matches()); method
1179 assertFalse(pat.matcher("cde.log").matches()); method
1180 assertTrue(pat.matcher("abc.log").matches()); method
1184 assertTrue(pat.matcher("cde.log").matches()); method
1185 assertFalse(pat.matcher("abc.log").matches()); method
1189 assertFalse(pat.matcher("aaabb").matches()); method
1191 assertTrue(pat.matcher("aaabb").matches()); method
1194 assertTrue(pat.matcher("aaabb").matches()); method
1196 assertFalse(pat.matcher("aaabb").matches()); method
    [all...]
  /external/easymock/src/org/easymock/internal/matchers/
And.java 34 public boolean matches(Object actual) { method in class:And
36 if (!matcher.matches(actual)) {
Or.java 34 public boolean matches(Object actual) { method in class:Or
36 if (matcher.matches(actual)) {
Contains.java 32 public boolean matches(Object actual) { method in class:Contains
EndsWith.java 32 public boolean matches(Object actual) { method in class:EndsWith
InstanceOf.java 32 public boolean matches(Object actual) { method in class:InstanceOf
StartsWith.java 32 public boolean matches(Object actual) { method in class:StartsWith
  /external/webkit/WebCore/svg/
SVGURIReference.cpp 40 if (attr->name().matches(XLinkNames::hrefAttr)) {
50 return attrName.matches(XLinkNames::hrefAttr);
  /external/chromium/third_party/icu/public/common/unicode/
unifilt.h 88 virtual UMatchDegree matches(const Replaceable& text,
unimatch.h 26 * Constants returned by <code>UnicodeMatcher::matches()</code>
32 * Constant returned by <code>matches()</code> indicating a
41 * Constant returned by <code>matches()</code> indicating a
53 * Constant returned by <code>matches()</code> indicating a
56 * the given text matches, and it is known that additional
123 virtual UMatchDegree matches(const Replaceable& text,
  /external/icu4c/common/unicode/
unifilt.h 88 virtual UMatchDegree matches(const Replaceable& text,
unimatch.h 26 * Constants returned by <code>UnicodeMatcher::matches()</code>
32 * Constant returned by <code>matches()</code> indicating a
41 * Constant returned by <code>matches()</code> indicating a
53 * Constant returned by <code>matches()</code> indicating a
56 * the given text matches, and it is known that additional
123 virtual UMatchDegree matches(const Replaceable& text,
  /external/libvpx/examples/
gen_example_doxy.php 61 while (preg_match($regexp, $page_body, $matches) > 0)
65 $block_new = $matches[1];
76 while (preg_match($regexp, $page_body, $matches))
78 $geshi = new GeSHi($matches[1], $language);
  /external/proguard/src/proguard/util/
ExtensionMatcher.java 46 public boolean matches(String string) method in class:ExtensionMatcher
VariableStringMatcher.java 53 public boolean matches(String string) method in class:VariableStringMatcher
74 if (nextMatcher.matches(string.substring(index)))
86 return nextMatcher.matches(string.substring(maximumLength));
  /external/proguard/src/proguard/classfile/util/
WarningPrinter.java 61 * except if the names of any involved classes matches the given filter.
90 !classFilter.matches(className);
113 !(classFilter.matches(className1) ||
114 classFilter.matches(className2));

Completed in 8308 milliseconds

1 23 4 5 6 7 8 91011>>