Searched defs:matches (Results 151 - 175 of 407) sorted by relevance

1234567891011>>

/external/opencv3/modules/features2d/src/
H A Dbagofwords.cpp180 std::vector<DMatch> matches; local
181 dmatcher->match( keypointDescriptors, matches );
196 for( size_t i = 0; i < matches.size(); i++ )
198 int queryIdx = matches[i].queryIdx;
199 int trainIdx = matches[i].trainIdx; // cluster index
/external/opencv3/modules/stitching/perf/
H A Dperf_stich.cpp146 std::vector<DMatch>& matches = pairwise_matches.matches; local
147 if (GetParam() == "orb") matches.resize(0);
148 for(size_t q = 0; q < matches.size(); ++q)
149 if (matches[q].imgIdx < 0) { matches.resize(q); break;}
150 SANITY_CHECK_MATCHES(matches);
206 std::vector<DMatch>& matches = pairwise_matches[detectorName == "surf" ? 1 : 0].matches; local
207 for(size_t q = 0; q < matches
[all...]
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DServiceTest.java276 * matches a callback if calling that callback causes c to be called.
305 public boolean matches(Object actual) { method in class:ServiceTest.WrapsCallback
/external/regex-re2/re2/testing/
H A Dfiltered_re2_test.cc16 vector<int> matches; member in struct:re2::FilterTestVars
23 v.f.AllMatches("foo", v.atom_indices, &v.matches);
24 EXPECT_EQ(0, v.matches.size());
37 v.f.AllMatches("lemurs bar", v.atom_indices, &v.matches);
38 EXPECT_EQ(1, v.matches.size());
39 EXPECT_EQ(id, v.matches[0]);
54 v.f.AllMatches("foo\xde\xadQ\xbe\xeflemur", v.atom_indices, &v.matches);
55 EXPECT_EQ(1, v.matches.size());
56 EXPECT_EQ(id, v.matches[0]);
/external/selinux/libselinux/src/
H A Dlabel_db.c75 int matches; member in struct:spec
206 spec->matches++;
227 total += catalog->specs[i].matches;
229 selinux_log(SELINUX_INFO, "%u entries, %u matches made\n",
H A Dlabel_media.c25 int matches; /* number of matches made during operation */ member in struct:spec
193 spec_arr[i].matches++;
203 total += data->spec_arr[i].matches;
205 selinux_log(SELINUX_INFO, "%u entries, %u matches made\n",
H A Dlabel_x.c27 int matches; /* number of matches made during operation */ member in struct:spec
219 spec_arr[i].matches++;
229 total += data->spec_arr[i].matches;
231 selinux_log(SELINUX_INFO, "%u entries, %u matches made\n",
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
H A DTag.java159 * Check whether this tag matches the global tag for the Class
165 public boolean matches(Class<? extends Object> clazz) { method in class:Tag
/external/toybox/toys/posix/
H A Dgrep.c80 // Show matches in one file
98 regmatch_t matches; local
109 // Loop through matches in this line
113 // Handle non-regex matches
134 matches.rm_so = (s-line);
135 skip = matches.rm_eo = (s-line)+strlen(seek->arg);
138 rc = regexec((regex_t *)toybuf, start, 1, &matches,
140 skip = matches.rm_eo;
144 if (matches.rm_so || line[matches
[all...]
/external/proguard/lib/
H A Dretrace.jar ... lang.String, java.lang.String) private boolean matches (java.lang.String) static synthetic boolean access$ ...
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLabel.java234 public boolean matches(int atom) { method in class:Label
244 public boolean matches(IntSet set) { method in class:Label
249 // matches if intersection non-nil
256 public boolean matches(Label other) { method in class:Label
258 return matches(other.getSet());
261 return matches(other.getAtom());
/external/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp181 bool DynTypedMatcher::matches(const ast_type_traits::DynTypedNode &DynNode, function in class:clang::ast_matchers::internal::DynTypedMatcher
240 // If the inner matcher matches, the result is false, and
248 return !InnerMatchers[0].matches(DynNode, Finder, &Discard);
273 if (InnerMatcher.matches(DynNode, Finder, &BuilderInner)) {
288 if (InnerMatcher.matches(DynNode, Finder, &Result)) {
/external/gmock/src/
H A Dgmock-matchers.cc46 // Constructs a matcher that matches a const string& whose value is
52 // Constructs a matcher that matches a const string& whose value is
58 // Constructs a matcher that matches a string whose value is equal to s.
61 // Constructs a matcher that matches a string whose value is equal to s.
67 // Constructs a matcher that matches a const StringPiece& whose value is
73 // Constructs a matcher that matches a const StringPiece& whose value is
79 // Constructs a matcher that matches a const StringPiece& whose value is
85 // Constructs a matcher that matches a StringPiece whose value is equal to s.
90 // Constructs a matcher that matches a StringPiece whose value is equal to s.
95 // Constructs a matcher that matches
330 ElementMatcherPairs matches = FindMaxBipartiteMatching(matrix); local
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DFeatureSpecificTestSuiteBuilder.java225 private boolean matches(Test test) { method in class:FeatureSpecificTestSuiteBuilder
310 if (matches(test)) {
/external/guice/core/src/com/google/inject/matcher/
H A DMatchers.java38 * Returns a matcher which matches any input.
47 public boolean matches(Object o) { method in class:Matchers.Any
76 public boolean matches(T t) { method in class:Matchers.Not
77 return !delegate.matches(t);
104 * Returns a matcher which matches elements (methods, classes, etc.)
121 public boolean matches(AnnotatedElement element) { method in class:Matchers.AnnotatedWithType
142 * Returns a matcher which matches elements (methods, classes, etc.)
159 public boolean matches(AnnotatedElement element) { method in class:Matchers.AnnotatedWith
181 * Returns a matcher which matches subclasses of the given type (as well as
196 public boolean matches(Clas method in class:Matchers.SubclassesOf
231 public boolean matches(Object other) { method in class:Matchers.Only
266 public boolean matches(Object other) { method in class:Matchers.IdenticalTo
303 public boolean matches(Class c) { method in class:Matchers.InPackage
344 public boolean matches(Class c) { method in class:Matchers.InSubpackage
381 public boolean matches(Method m) { method in class:Matchers.Returns
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DTextTrieMap.java181 * Callback handler for processing prefix matches used by
196 private Iterator<V> matches = null; field in class:TextTrieMap.LongestMatchHandler
202 matches = values;
208 return matches;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DDateIntervalFormatTest.java1495 if (!matches(dateFormatPattern, firstPart, secondPart)) {
1527 private boolean matches(String dateFormatPattern, String firstPart, String secondPart) { method in class:DateIntervalFormatTest
H A DMessagePatternUtilTest.java85 // matches() prints all errors.
86 matches(msg);
88 private boolean matches(MessageNode msg) { method in class:MessagePatternUtilTest.ExpectMessageNode
95 ok &= ec.matches(msgIter.next());
113 protected boolean matches(MessageContentsNode c) { method in class:MessagePatternUtilTest.ExpectMessageContentsNode
124 protected boolean matches(MessageContentsNode c) { method in class:MessagePatternUtilTest.ExpectTextNode
158 protected boolean matches(MessageContentsNode c) { method in class:MessagePatternUtilTest.ExpectArgNode
214 protected boolean matches(MessageContentsNode c) { method in class:MessagePatternUtilTest.ExpectComplexArgNode
215 boolean ok = super.matches(c);
239 ok &= variant.matches(complexIte
259 private boolean matches(VariantNode v) { method in class:MessagePatternUtilTest.ExpectVariantNode
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DUnicodePropertySource.java104 if (matcher.matches(value)) {
112 public boolean matches(String value); method in interface:UnicodePropertySource.Matcher
H A DXEquivalenceClass.java219 boolean matches(T o); method in interface:XEquivalenceClass.Filter
226 if (f.matches(obj)) return obj;
/external/icu/icu4c/source/common/
H A Ddictionarydata.cpp43 int32_t UCharsDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t limit, function in class:UCharsDictionaryMatcher
111 int32_t BytesDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t limit, function in class:BytesDictionaryMatcher
/external/icu/icu4c/source/i18n/
H A Drepattrn.cpp503 // matches Convenience function to test for a match, starting
507 UBool U_EXPORT2 RegexPattern::matches(const UnicodeString &regex, function in class:RegexPattern
520 retVal = matcher->matches(status);
529 // matches, UText mode
531 UBool U_EXPORT2 RegexPattern::matches(UText *regex, function in class:RegexPattern
546 retVal = matcher->matches(status);
H A Dstrmatch.cpp88 UMatchDegree StringMatcher::matches(const Replaceable& text, function in class:StringMatcher
108 subm->matches(text, cursor, limit, incremental);
142 subm->matches(text, cursor, limit, incremental);
255 * set of matches with this segment.
/external/icu/icu4c/source/test/intltest/
H A Dfldset.cpp271 * return true if the calendar matches in these fields
273 UBool CalendarFieldsSet::matches(Calendar *cal, CalendarFieldsSet &diffSet, function in class:CalendarFieldsSet
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/charsetdet/
H A DDetectingViewer.java168 private void setMatchMenu(CharsetMatch[] matches) argument
175 for (int i = 0; i < matches.length; i += 1) {
176 CharsetMatch match = matches[i];
289 private void show(InputStream inputStream, CharsetMatch[] matches, String title) argument
295 if (matches == null || matches.length == 0) {
296 errorDialog("Match Error", "No matches!");
302 String encoding = matches[0].getName();
334 this.setTitle(title + " - " + encodingName(matches[0]));
336 setMatchMenu(matches);
[all...]

Completed in 867 milliseconds

1234567891011>>