HomeSort by relevance Sort by last modified time
    Searched defs:Matchers (Results 1 - 15 of 15) sorted by null

  /external/hamcrest/library/src/org/hamcrest/
Matchers.java 4 public class Matchers {
70 * Evaluates to true only if ALL of the passed in matchers evaluate to true.
72 public static <T> org.hamcrest.Matcher<T> allOf(org.hamcrest.Matcher<? extends T>... matchers) {
73 return org.hamcrest.core.AllOf.allOf(matchers);
77 * Evaluates to true only if ALL of the passed in matchers evaluate to true.
79 public static <T> org.hamcrest.Matcher<T> allOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers) {
80 return org.hamcrest.core.AllOf.allOf(matchers);
84 * Evaluates to true if ANY of the passed in matchers evaluate to true.
86 public static <T> org.hamcrest.Matcher<T> anyOf(org.hamcrest.Matcher<? extends T>... matchers) {
87 return org.hamcrest.core.AnyOf.anyOf(matchers);
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 52 : Matchers(std::move(MatchersIn)) {}
57 if (Matchers.size() != 1)
59 return Matchers[0];
64 for (size_t i = 0, e = Matchers.size(); i != e; ++i) {
67 Inner += Matchers[i].getSupportedKind().asStringRef();
76 for (size_t i = 0, e = Matchers.size(); i != e; ++i) {
78 if (Ops.canConstructFrom(Matchers[i], IsExactMatch)) {
85 Found = &Matchers[i];
95 const std::vector<DynTypedMatcher> Matchers;
134 VariantMatcher::PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers) {
    [all...]
Marshallers.h 130 /// Returns whether the matcher is variadic. Variadic matchers can take any
150 /// Such matchers are excluded from code completion results.
233 /// \brief Helper methods to extract and merge all possible typed matchers
261 std::vector<DynTypedMatcher> Matchers;
262 mergePolyMatchers(PolyMatcher, Matchers, typename T::ReturnTypes());
263 VariantMatcher Out = VariantMatcher::PolymorphicMatcher(std::move(Matchers));
  /external/clang/unittests/ASTMatchers/Dynamic/
ParserTest.cpp 56 Matchers.push_back(ToStore);
69 std::vector<MatcherInfo> Matchers;
131 EXPECT_EQ(3ULL, Sema.Matchers.size());
132 const MockSema::MatcherInfo Bar = Sema.Matchers[0];
138 const MockSema::MatcherInfo Baz = Sema.Matchers[1];
144 const MockSema::MatcherInfo Foo = Sema.Matchers[2];
  /external/mockito/src/org/mockito/
Matchers.java 8 import org.mockito.internal.matchers.*;
9 import org.mockito.internal.matchers.apachecommons.ReflectionEquals;
22 * {@link Mockito} extends Matchers so to get access to all matchers just import Mockito class statically.
33 * Scroll down to see all methods - full list of matchers.
37 * If you are using argument matchers, <b>all arguments</b> have to be provided by matchers.
48 * Matcher methods like <code>anyObject()</code>, <code>eq()</code> <b>do not</b> return matchers.
60 * <h1>Custom Argument Matchers</h1>
62 * Use {@link Matchers#argThat} method and pass an instance of hamcrest {@link Matcher}.
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 12 // Matchers are methods that return a Matcher<T> which provides a method
14 // parameters define the context of the match, which allows matchers to recurse
18 // In general, matchers have two parts:
31 // This file contains the base classes needed to construct the actual matchers.
162 /// \brief Generic interface for matchers on an AST node of type T.
183 /// \brief Interface for matchers that only evaluate properties on a single
652 /// \brief Interface that allows matchers to traverse the AST.
833 /// Useful for matchers like \c anything and \c unless.
847 /// \brief Default type lists for ArgumentAdaptingMatcher matchers.
    [all...]
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
sisu-guice-3.1.3-no_aop.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.3/
hamcrest-library-1.3.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar 
  /external/robolectric/lib/test/
mockito-core-1.8.5.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-all/1.9.5/
mockito-all-1.9.5.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/1.9.5/
mockito-core-1.9.5.jar 

Completed in 532 milliseconds