HomeSort by relevance Sort by last modified time
    Searched refs:matches (Results 176 - 200 of 2296) 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));
  /frameworks/opt/chips/src/com/android/ex/chips/
PhoneUtil.java 50 return match.matches();
  /external/iproute2/tc/
q_cbq.c 66 if (matches(*argv, "bandwidth") == 0 ||
67 matches(*argv, "rate") == 0) {
73 } else if (matches(*argv, "ewma") == 0) {
83 } else if (matches(*argv, "cell") == 0) {
99 } else if (matches(*argv, "avpkt") == 0) {
105 } else if (matches(*argv, "mpu") == 0) {
111 } else if (matches(*argv, "allot") == 0) {
118 } else if (matches(*argv, "overhead") == 0) {
123 } else if (matches(*argv, "linklayer") == 0) {
128 } else if (matches(*argv, "help") == 0)
    [all...]
tc_qdisc.c 122 } else if (matches(*argv, "estimator") == 0) {
125 } else if (matches(*argv, "stab") == 0) {
129 } else if (matches(*argv, "help") == 0) {
156 if (matches(*argv, "help") == 0)
306 } else if (matches(*argv, "help") == 0) {
343 if (matches(*argv, "add") == 0)
345 if (matches(*argv, "change") == 0)
347 if (matches(*argv, "replace") == 0)
349 if (matches(*argv, "link") == 0)
351 if (matches(*argv, "delete") == 0
    [all...]
m_pedit.c 270 if (matches(*argv, "invert") == 0) {
272 } else if (matches(*argv, "set") == 0) {
276 } else if (matches(*argv, "preserve") == 0) {
279 if (matches(*argv, "clear") != 0)
285 if (argc && matches(*argv, "retain") == 0) {
343 if (matches(*argv, "u32") == 0) {
348 if (matches(*argv, "u16") == 0) {
353 if (matches(*argv, "u8") == 0) {
366 if (matches(*argv, "at") == 0) {
410 if (matches(*argv, "offset") == 0)
    [all...]
f_route.c 61 if (matches(*argv, "to") == 0) {
71 } else if (matches(*argv, "from") == 0) {
81 } else if (matches(*argv, "fromif") == 0) {
92 } else if (matches(*argv, "classid") == 0 ||
101 } else if (matches(*argv, "police") == 0) {
108 } else if (matches(*argv, "action") == 0) {
115 } else if (matches(*argv, "order") == 0) {
tc_filter.c 113 } else if (matches(*argv, "preference") == 0 ||
114 matches(*argv, "priority") == 0) {
120 } else if (matches(*argv, "protocol") == 0) {
129 } else if (matches(*argv, "estimator") == 0) {
132 } else if (matches(*argv, "help") == 0) {
161 if (matches(*argv, "help") == 0)
330 } else if (matches(*argv, "preference") == 0 ||
331 matches(*argv, "priority") == 0) {
338 } else if (matches(*argv, "protocol") == 0) {
347 } else if (matches(*argv, "help") == 0)
    [all...]
  /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/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/mockito/src/org/mockito/internal/invocation/
ArgumentsComparator.java 26 if (!invocationMatcher.getMatchers().get(i).matches(actualArgs[i])) {
60 if (!(actualMatcher instanceof VarargMatcher) || !actualMatcher.matches(rawArgs[i])) {
64 } else if (!m.matches(rawArgs[i])){
  /external/opencv3/modules/features2d/misc/java/test/
BruteForceHammingLUTDescriptorMatcherTest.java 166 MatOfDMatch matches = new MatOfDMatch();
169 matcher.match(query, matches);
171 assertArrayDMatchEquals(truth, matches.toArray(), EPS);
178 MatOfDMatch matches = new MatOfDMatch();
181 matcher.match(query, matches, Arrays.asList(mask));
183 assertListDMatchEquals(Arrays.asList(truth[0], truth[1]), matches.toList(), EPS);
189 MatOfDMatch matches = new MatOfDMatch();
191 matcher.match(query, train, matches);
194 OpenCVTestRunner.Log("matches found: " + matches.size())
    [all...]
BruteForceL1DescriptorMatcherTest.java 183 MatOfDMatch matches = new MatOfDMatch();
186 matcher.match(query, matches);
188 assertArrayDMatchEquals(truth, matches.toArray(), EPS);
195 MatOfDMatch matches = new MatOfDMatch();
198 matcher.match(query, matches, Arrays.asList(mask));
200 assertListDMatchEquals(Arrays.asList(truth[0], truth[1]), matches.toList(), EPS);
206 MatOfDMatch matches = new MatOfDMatch();
208 matcher.match(query, train, matches);
210 assertArrayDMatchEquals(truth, matches.toArray(), EPS);
217 MatOfDMatch matches = new MatOfDMatch()
    [all...]
  /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]
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
DragHandleUtils.java 20 import static android.support.test.espresso.assertion.ViewAssertions.matches;
41 .check(matches(isDisplayed()));
45 .check(matches(isDisplayed()));
  /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/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/iproute2/ip/
rtmon.c 85 if (matches(argv[1], "-family") == 0) {
108 } else if (matches(argv[1], "-Version") == 0) {
111 } else if (matches(argv[1], "file") == 0) {
117 } else if (matches(argv[1], "link") == 0) {
120 } else if (matches(argv[1], "address") == 0) {
123 } else if (matches(argv[1], "route") == 0) {
128 } else if (matches(argv[1], "help") == 0) {
link_gre.c 158 if (!matches(*argv, "key")) {
176 } else if (!matches(*argv, "ikey")) {
191 } else if (!matches(*argv, "okey")) {
206 } else if (!matches(*argv, "seq")) {
209 } else if (!matches(*argv, "iseq")) {
211 } else if (!matches(*argv, "oseq")) {
213 } else if (!matches(*argv, "csum")) {
216 } else if (!matches(*argv, "icsum")) {
218 } else if (!matches(*argv, "ocsum")) {
220 } else if (!matches(*argv, "nopmtudisc"))
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
ResolveCache.java 135 final List<ResolveInfo> matches = mPackageManager.queryIntentActivities(intent, local
140 final int size = matches.size();
142 bestResolve = matches.get(0);
144 bestResolve = getBestResolve(intent, matches);
168 protected ResolveInfo getBestResolve(Intent intent, List<ResolveInfo> matches) {
182 for (ResolveInfo info : matches) {
193 return firstSystem != null ? firstSystem : matches.get(0);
  /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.
168 /// matches "typedef int X"
171 /// \brief Matches AST nodes that were expanded within the main-file.
173 /// Example matches X but not Y
192 /// \brief Matches AST nodes that were expanded within system-header-files
    [all...]
  /external/opencv3/modules/features2d/src/
matchers.cpp 117 static bool ocl_matchConvert(const Mat &trainIdx, const Mat &distance, std::vector< std::vector<DMatch> > &matches)
127 matches.clear();
128 matches.reserve(nQuery);
145 matches.push_back(temp);
150 static bool ocl_matchDownload(const UMat &trainIdx, const UMat &distance, std::vector< std::vector<DMatch> > &matches)
158 return ocl_matchConvert(trainIdxCPU, distanceCPU, matches);
217 static bool ocl_knnMatchConvert(const Mat &trainIdx, const Mat &distance, std::vector< std::vector<DMatch> > &matches, bool compactResult)
230 matches.clear();
231 matches.reserve(nQuery);
238 matches.push_back(std::vector<DMatch>())
    [all...]

Completed in 6408 milliseconds

1 2 3 4 5 6 78 91011>>