OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Matchers
(Results
1 - 7
of
7
) 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
...]
/external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar
Completed in 1395 milliseconds