Searched defs:matches (Results 76 - 100 of 380) sorted by relevance

1234567891011>>

/external/mockito/src/org/mockito/internal/matchers/
H A DArrayEquals.java21 public boolean matches(Object actual) { method in class:ArrayEquals
24 return super.matches(actual);
H A DCapturingMatcher.java22 * @see org.mockito.ArgumentMatcher#matches(java.lang.Object)
24 public boolean matches(Object argument) { method in class:CapturingMatcher
H A DCompareTo.java20 public boolean matches(Object actual) { method in class:CompareTo
H A DContains.java23 public boolean matches(Object actual) { method in class:Contains
H A DEndsWith.java23 public boolean matches(Object actual) { method in class:EndsWith
H A DEqualsWithDelta.java26 public boolean matches(Object actual) { method in class:EqualsWithDelta
H A DFind.java23 public boolean matches(Object actual) { method in class:Find
H A DInstanceOf.java23 public boolean matches(Object actual) { method in class:InstanceOf
H A DMatches.java23 public boolean matches(Object actual) { method in class:Matches
24 return (actual instanceof String) && ((String) actual).matches(regex);
28 description.appendText("matches(\"" + regex.replaceAll("\\\\", "\\\\\\\\")
H A DNot.java24 public boolean matches(Object actual) { method in class:Not
25 return !first.matches(actual);
H A DNotNull.java23 public boolean matches(Object actual) { method in class:NotNull
H A DNull.java22 public boolean matches(Object actual) { method in class:Null
H A DOr.java26 public boolean matches(Object actual) { method in class:Or
28 if (matcher.matches(actual)) {
H A DSame.java23 public boolean matches(Object actual) { method in class:Same
H A DStartsWith.java23 public boolean matches(Object actual) { method in class:StartsWith
H A DVarargCapturingMatcher.java20 public boolean matches(Object argument) { method in class:VarargCapturingMatcher
H A DEquals.java23 public boolean matches(Object actual) { method in class:Equals
/external/mockito/src/org/mockito/internal/matchers/apachecommons/
H A DReflectionEquals.java23 public boolean matches(Object actual) { method in class:ReflectionEquals
/external/proguard/src/proguard/util/
H A DVariableStringMatcher.java53 public boolean matches(String string) method in class:VariableStringMatcher
74 if (nextMatcher.matches(string.substring(index)))
86 return nextMatcher.matches(string.substring(maximumLength));
/external/chromium_org/base/i18n/
H A Dicu_encoding_detection.cc44 const UCharsetMatch** matches = ucsdet_detectAll(detector, local
62 const char* encoding_name = ucsdet_getName(matches[i], &get_name_status);
68 int32_t confidence = ucsdet_getConfidence(matches[i], &get_name_status);
/external/chromium_org/components/url_matcher/
H A Dsubstring_set_matcher.h43 // of matching patterns in |matches|. |matches| is not cleared before adding
46 std::set<StringPattern::ID>* matches) const;
57 // IDs that are used to report matches.
60 // any registered pattern matches a text at the beginning of the text (i.e.
65 // would report all pattern IDs associated with the trie nodes as matches.
67 // As we are not looking for all prefix matches but all substring matches,
103 void AddMatches(const Matches& matches);
104 const Matches& matches() cons function in class:url_matcher::SubstringSetMatcher::AhoCorasickNode
[all...]
/external/easymock/src/org/easymock/internal/
H A DExpectedInvocation.java88 public boolean matches(Invocation actual) { method in class:ExpectedInvocation
92 && matches(actual.getArguments()) : this.invocation.matches(
96 private boolean matches(Object[] arguments) { method in class:ExpectedInvocation
101 if (!matchers.get(i).matches(arguments[i])) {
/external/hamcrest/src/org/hamcrest/core/
H A DIsEqual.java24 public boolean matches(Object arg) { method in class:IsEqual
/external/lldb/source/Interpreter/
H A DOptionValueArch.cpp94 StringList &matches)
97 matches.Clear();
105 matches);
106 return matches.GetSize();
89 AutoComplete(CommandInterpreter &interpreter, const char *s, int match_start_point, int max_return_elements, bool &word_complete, StringList &matches) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-apache-regexp.jar ... regexp.RESyntaxException e int options int cOptions public boolean matches (java.lang.String) throws org.apache. ...

Completed in 8037 milliseconds

1234567891011>>