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

1234567891011>>

/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
H A DPackageMatcher.java33 public boolean matches(CompilationUnit cu) { method in class:PackageMatcher
35 return matches(aPackage);
38 public boolean matches(PackageDeclaration packageDeclaration) { method in class:PackageMatcher
H A DParameterMatcher.java37 public boolean matches(MethodDeclaration methodDeclaration) { method in class:ParameterMatcher
/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
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
/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/vogar/src/vogar/
H A DActionFinder.java54 if (!matches(file)) {
69 private boolean matches(File file) { method in class:ActionFinder

Completed in 311 milliseconds

1234567891011>>