HomeSort by relevance Sort by last modified time
    Searched refs:matches (Results 176 - 200 of 1488) sorted by null

1 2 3 4 5 6 78 91011>>

  /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/iproute2/tc/
q_cbq.c 63 if (matches(*argv, "bandwidth") == 0 ||
64 matches(*argv, "rate") == 0) {
70 } else if (matches(*argv, "ewma") == 0) {
80 } else if (matches(*argv, "cell") == 0) {
97 } else if (matches(*argv, "avpkt") == 0) {
103 } else if (matches(*argv, "mpu") == 0) {
109 } else if (matches(*argv, "allot") == 0) {
116 } else if (matches(*argv, "overhead") == 0) {
121 } else if (matches(*argv, "linklayer") == 0) {
126 } else if (matches(*argv, "help") == 0)
    [all...]
m_tunnel_key.c 98 if (matches(*argv, "tunnel_key") != 0)
107 if (matches(*argv, "unset") == 0) {
115 } else if (matches(*argv, "set") == 0) {
123 } else if (matches(*argv, "src_ip") == 0) {
134 } else if (matches(*argv, "dst_ip") == 0) {
145 } else if (matches(*argv, "id") == 0) {
153 } else if (matches(*argv, "dst_port") == 0) {
161 } else if (matches(*argv, "csum") == 0) {
163 } else if (matches(*argv, "nocsum") == 0) {
165 } else if (matches(*argv, "help") == 0)
    [all...]
  /external/brotli/scripts/
fix-win-bazel-build.py 8 matches = [] variable
11 matches.append(os.path.join(root, filename))
13 for match in matches:
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
LogMessageParser.java 47 if (gcMatcher.matches()) {
55 if (jitMatcher.matches()) {
59 if (vmOptionMatcher.matches()) {
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 37 * "any character {@code c} for which {@code this.matches(c)} returns {@code true}".
69 public boolean matches(char c) {
120 public boolean matches(char c) {
159 @Override public boolean matches(char c) {
170 @Override public boolean matches(char c) {
181 @Override public boolean matches(char c) {
192 @Override public boolean matches(char c) {
203 @Override public boolean matches(char c) {
251 /** Matches any character. */
254 @Override public boolean matches(char c)
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
Rule.java 118 boolean matches(final String name) { method in class:Rule
119 return includesMatcher.matches(name) && !excludesMatcher.matches(name);
  /external/junit/src/main/java/org/junit/experimental/results/
ResultMatchers.java 18 * Matches if the tests are all successful
25 * Matches if there are {@code count} failures
41 * Matches if the result has exactly one failure, and it contains {@code string}
45 public boolean matches(Object item) {
46 return item.toString().contains(string) && failureCountIs(1).matches(item);
56 * Matches if the result has one or more failures, and at least one of them
61 public boolean matches(Object item) {
  /external/libtextclassifier/utils/sentencepiece/
double_array_trie.cc 35 // We exhausted the trie, no more matches possible.
56 StringPiece input, std::vector<TrieMatch>* matches) const {
58 input, [matches](const TrieMatch match) { matches->push_back(match); });
  /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));
  /external/skia/tools/copyright/
fileparser.py 50 matches = self._attribute_pattern.findall(comment_block)
51 if not matches:
53 first_match = matches[0]
  /external/skqp/tools/copyright/
fileparser.py 50 matches = self._attribute_pattern.findall(comment_block)
51 if not matches:
53 first_match = matches[0]
  /external/vixl/tools/
verify_assembler_traces.py 143 def DtUntypedToLLVM(matches):
145 if matches[1] == "untyped8":
147 elif matches[1] == "untyped16":
149 elif matches[1] == "untyped32":
154 return "{}.{} {}, {}, {}".format(matches[0], dt, matches[2], matches[3], matches[4])
182 # look like. Empty curly braces are replaced by matches, in order.
259 def ConvertMovRdImm(matches)
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/stacks/
ThreadSnapshotParser.java 129 if (Utils.matches(beginUnmanagedThreadRe, line.text)) {
135 } else if (Utils.matches(beginManagedThreadRe, line.text)) {
142 } else if (Utils.matches(beginNotAttachedThreadRe, line.text)) {
155 if (Utils.matches(heldMutexesRe, text)) {
158 } else if (Utils.matches(attrRe, text)) {
160 if (Utils.matches(sysTidAttrRe, text)) {
163 if (Utils.matches(stateAttrRe, text)) {
176 if (Utils.matches(nativeRe, text)) {
184 } else if (Utils.matches(nativeNoLocRe, text)) {
192 } else if (Utils.matches(kernelRe, text))
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 111 /// \brief If the provided matcher matches a node, binds the node to \c ID.
131 /// \brief Matches any node.
137 /// Example: \c DeclarationMatcher(anything()) matches all declarations, e.g.,
147 /// \brief Matches the top declaration context.
157 /// matches "int X", but not "int Y".
161 /// \brief Matches typedef declarations.
169 /// matches "typedef int X", but not "using Y = int"
172 /// \brief Matches typedef name declarations.
180 /// matches "typedef int X" and "using Y = int"
184 /// \brief Matches type alias declarations
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
CharMatcher.java 35 * "any character {@code c} for which {@code this.matches(c)} returns {@code true}".
67 public boolean matches(char c) {
118 public boolean matches(char c) {
157 @Override public boolean matches(char c) {
168 @Override public boolean matches(char c) {
179 @Override public boolean matches(char c) {
190 @Override public boolean matches(char c) {
201 @Override public boolean matches(char c) {
249 /** Matches any character. */
252 @Override public boolean matches(char c)
    [all...]
  /external/iproute2/ip/
iplink.c 283 if (matches(*argv, "qos") == 0) {
294 if (matches(*argv, "proto") == 0) {
339 if (!matches(*argv, "max_tx_rate")) {
344 } else if (!matches(*argv, "min_tx_rate")) {
357 if (matches(*argv, "mac") == 0) {
374 } else if (matches(*argv, "vlan") == 0) {
398 if (matches(*argv, "vlan") != 0) {
410 } else if (matches(*argv, "rate") == 0) {
424 } else if (matches(*argv, "max_tx_rate") == 0) {
431 } else if (matches(*argv, "min_tx_rate") == 0)
    [all...]
iplink_hsr.c 54 if (matches(*argv, "supervision") == 0) {
60 } else if (matches(*argv, "version") == 0) {
67 } else if (matches(*argv, "slave1") == 0) {
73 } else if (matches(*argv, "slave2") == 0) {
79 } else if (matches(*argv, "help") == 0) {
  /external/iproute2/bridge/
monitor.c 87 if (matches(*argv, "file") == 0) {
90 } else if (matches(*argv, "link") == 0) {
93 } else if (matches(*argv, "fdb") == 0) {
96 } else if (matches(*argv, "mdb") == 0) {
102 } else if (matches(*argv, "help") == 0) {
  /external/mockito/src/test/java/org/mockitousage/bugs/
CompareMatcherTest.java 87 public boolean matches(Integer arg) { method in class:CompareMatcherTest.TestMatcher
92 public boolean matches(Date arg) { method in class:CompareMatcherTest.TestMatcher
97 public boolean matches(Integer arg, Void v) { method in class:CompareMatcherTest.TestMatcher
113 public boolean matches(Integer argument) { method in class:CompareMatcherTest.TestMatcher
126 public boolean matches(T argument) { method in class:CompareMatcherTest.GenericMatcher
  /external/mockito/src/test/java/org/mockitoutil/
Conditions.java 23 public boolean matches(Throwable traceElements) {
45 public boolean matches(StackTraceElement[] traceElements) {
70 public boolean matches(Throwable throwable) {
86 public boolean matches(Object o) {
112 public boolean matches(Throwable value) {
  /frameworks/base/cmds/incident_helper/tests/
PsParser_test.cpp 216 bool matches = true; local
220 matches = false;
229 matches = false;
233 matches = false;
237 matches = false;
241 matches = false;
245 matches = false;
249 matches = false;
253 matches = false;
257 matches = false
    [all...]
  /external/conscrypt/openjdk/src/main/java/org/conscrypt/
HostProperties.java 252 if (value.matches("^(x8664|amd64|ia32e|em64t|x64)$")) {
255 if (value.matches("^(x8632|x86|i[3-6]86|ia32|x32)$")) {
258 if (value.matches("^(ia64|itanium64)$")) {
261 if (value.matches("^(sparc|sparc32)$")) {
264 if (value.matches("^(sparcv9|sparc64)$")) {
267 if (value.matches("^(arm|arm32)$")) {
273 if (value.matches("^(ppc|ppc32)$")) {
  /external/conscrypt/repackaged/openjdk/src/main/java/com/android/org/conscrypt/
HostProperties.java 253 if (value.matches("^(x8664|amd64|ia32e|em64t|x64)$")) {
256 if (value.matches("^(x8632|x86|i[3-6]86|ia32|x32)$")) {
259 if (value.matches("^(ia64|itanium64)$")) {
262 if (value.matches("^(sparc|sparc32)$")) {
265 if (value.matches("^(sparcv9|sparc64)$")) {
268 if (value.matches("^(arm|arm32)$")) {
274 if (value.matches("^(ppc|ppc32)$")) {

Completed in 2263 milliseconds

1 2 3 4 5 6 78 91011>>