Searched defs:matches (Results 51 - 75 of 380) sorted by relevance

1234567891011>>

/external/easymock/src/org/easymock/internal/matchers/
H A DEndsWith.java32 public boolean matches(Object actual) { method in class:EndsWith
H A DEquals.java33 public boolean matches(Object actual) { method in class:Equals
H A DEqualsWithDelta.java35 public boolean matches(Object actual) { method in class:EqualsWithDelta
H A DFind.java33 public boolean matches(Object actual) { method in class:Find
H A DInstanceOf.java32 public boolean matches(Object actual) { method in class:InstanceOf
H A DMatches.java32 public boolean matches(Object actual) { method in class:Matches
33 return (actual instanceof String) && ((String) actual).matches(regex);
37 buffer.append("matches(\"" + regex.replaceAll("\\\\", "\\\\\\\\")
H A DNot.java32 public boolean matches(Object actual) { method in class:Not
33 return !first.matches(actual);
H A DNotNull.java32 public boolean matches(Object actual) { method in class:NotNull
H A DNull.java31 public boolean matches(Object actual) { method in class:Null
H A DOr.java34 public boolean matches(Object actual) { method in class:Or
36 if (matcher.matches(actual)) {
H A DSame.java33 public boolean matches(Object actual) { method in class:Same
H A DStartsWith.java32 public boolean matches(Object actual) { method in class:StartsWith
/external/hamcrest/library/src/org/hamcrest/
H A DTypeSafeMatcher.java53 public final boolean matches(Object item) { method in class:TypeSafeMatcher
/external/hamcrest/library/src/org/hamcrest/collection/
H A DIsIn.java22 public boolean matches(Object o) { method in class:IsIn
/external/hamcrest/src/org/hamcrest/core/
H A DDescribedAs.java28 public boolean matches(Object o) { method in class:DescribedAs
29 return matcher.matches(o);
H A DIs.java25 public boolean matches(Object arg) { method in class:Is
26 return matcher.matches(arg);
H A DIsAnything.java26 public boolean matches(Object o) { method in class:IsAnything
H A DIsInstanceOf.java27 public boolean matches(Object item) { method in class:IsInstanceOf
H A DIsNot.java22 public boolean matches(Object arg) { method in class:IsNot
23 return !matcher.matches(arg);
H A DIsNull.java15 public boolean matches(Object o) { method in class:IsNull
/external/icu/icu4c/source/common/
H A Dunifilt.cpp36 * Default implementation of UnicodeMatcher::matches() for Unicode
40 UMatchDegree UnicodeFilter::matches(const Replaceable& text, function in class:UnicodeFilter
/external/junit/src/org/junit/internal/matchers/
H A DCombinableMatcher.java17 public boolean matches(Object item) { method in class:CombinableMatcher
18 return fMatcher.matches(item);
H A DTypeSafeMatcher.java55 public final boolean matches(Object item) { method in class:TypeSafeMatcher
/external/mockito/src/org/mockito/internal/matchers/
H A DAnd.java26 public boolean matches(Object actual) { method in class:And
28 if (!matcher.matches(actual)) {
H A DAny.java21 public boolean matches(Object actual) { method in class:Any

Completed in 4907 milliseconds

1234567891011>>