Searched refs:allOf (Results 1 - 15 of 15) sorted by relevance

/external/hamcrest/src/org/hamcrest/core/
H A DAllOf.java39 public static <T> Matcher<T> allOf(Matcher<? extends T>... matchers) { method in class:AllOf
40 return allOf(Arrays.asList(matchers));
47 public static <T> Matcher<T> allOf(Iterable<Matcher<? extends T>> matchers) { method in class:AllOf
/external/junit/src/org/junit/internal/matchers/
H A DCombinableMatcher.java3 import static org.hamcrest.CoreMatchers.allOf;
27 return new CombinableMatcher<T>(allOf(matcher, fMatcher));
H A DIsCollectionContaining.java3 import static org.hamcrest.core.AllOf.allOf;
54 return allOf(all);
64 return allOf(all);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DIteratorFeature.java61 Collections.unmodifiableSet(EnumSet.allOf(IteratorFeature.class));
/external/clang/unittests/AST/
H A DASTContextParentMapTest.cpp56 allOf(hasParent(recordDecl(unless(isTemplateInstantiation()))),
66 allOf(hasAncestor(recordDecl(isTemplateInstantiation())),
/external/robolectric/lib/main/
H A Dhamcrest-core-1.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hamcrest/ org/hamcrest/core/ org/hamcrest/internal/ LICENSE ...
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DEnumSetTest.java160 * @tests java.util.EnumSet#allOf(java.lang.Class)
165 EnumSet.allOf((Class) null);
172 EnumSet.allOf(Enum.class);
178 EnumSet<EnumFoo> enumSet = EnumSet.allOf(EnumFoo.class);
191 EnumSet<EnumFoo> anotherSet = EnumSet.allOf(EnumFoo.class);
196 EnumSet<HugeEnum> hugeEnumSet = EnumSet.allOf(HugeEnum.class);
206 EnumSet<HugeEnum> anotherHugeSet = EnumSet.allOf(HugeEnum.class);
413 hugeSet = EnumSet.allOf(HugeEnum.class);
452 Set hugeSetWithSubclass = EnumSet.allOf(HugeEnumWithInnerClass.class);
464 .allOf(HugeEnumWithInnerClas
[all...]
/external/hamcrest/src/org/hamcrest/
H A DCoreMatchers.java72 public static <T> org.hamcrest.Matcher<T> allOf(org.hamcrest.Matcher<? extends T>... matchers) { method in class:CoreMatchers
73 return org.hamcrest.core.AllOf.allOf(matchers);
79 public static <T> org.hamcrest.Matcher<T> allOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers) { method in class:CoreMatchers
80 return org.hamcrest.core.AllOf.allOf(matchers);
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1345 /// \brief Various overloads for the allOf matcher.
1353 allOf(const M1 &P1, const M2 &P2) { function in namespace:clang::ast_matchers
1361 allOf(const M1 &P1, const M2 &P2, const M3 &P3) { function in namespace:clang::ast_matchers
1362 return allOf(P1, allOf(P2, P3));
1370 allOf(const M1 &P1, const M2 &P2, const M3 &P3, const M4 &P4) { function in namespace:clang::ast_matchers
1371 return allOf(P1, allOf(P2, P3, P4));
1382 allOf(const M1 &P1, const M2 &P2, const M3 &P3, const M4 &P4, const M5 &P5) { function in namespace:clang::ast_matchers
1383 return allOf(P
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DOptimizer.java74 EnumSet.allOf(OptionalStep.class));
/external/droiddriver/src/com/google/android/droiddriver/finders/
H A DBy.java185 * {@link #allOf}. For complex cases like below, XPath is superior:
235 public static MatchFinder allOf(final MatchFinder... finders) { method in class:By
249 return "allOf(" + Joiner.on(",").join(finders) + ")";
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp396 callExpr(allOf(callee(functionDecl(hasName("f"))),
399 callExpr(allOf(callee(functionDecl(hasName("f"))),
404 callExpr(allOf(callee(functionDecl(hasName("f"))),
410 callExpr(allOf(callee(functionDecl(hasName("f"))),
420 recordDecl(anyOf(hasName("Y"), allOf(isDerivedFrom("X"), hasName("Z"))));
1762 allOf(forField(hasName("foo_")), isWritten())))));
1764 allOf(forField(hasName("bar_")), isWritten())))));
1766 allOf(forField(hasName("bar_")), unless(isWritten()))))));
3058 recordDecl(hasName("A"), allOf(hasDescendant(m), anyOf(m, anything()))),
3470 allOf(hasAncesto
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DSetsTest.java509 verifySetContents(EnumSet.allOf(SomeEnum.class), allUnits);
521 verifySetContents(allUnits, EnumSet.allOf(SomeEnum.class));
/external/guava/guava/src/com/google/common/collect/
H A DSets.java409 EnumSet<E> result = EnumSet.allOf(type);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSets.java406 EnumSet<E> result = EnumSet.allOf(type);

Completed in 206 milliseconds