HomeSort by relevance Sort by last modified time
    Searched full:matchers (Results 326 - 350 of 1392) sorted by null

<<11121314151617181920>>

  /external/mockito/src/main/java/org/mockito/internal/exceptions/
Reporter.java 15 import org.mockito.internal.matchers.LocalizedMatcher;
233 "Invalid use of argument matchers!",
234 expectedMatchersCount + " matchers expected, " + recordedMatchers.size() + " recorded:" +
237 "This exception may occur if matchers are combined with raw values:",
240 "When using matchers, all arguments have to be provided by matchers.",
245 "For more info see javadoc for Matchers class.",
252 "Invalid use of argument matchers inside additional matcher " + additionalMatcherName + " !",
255 expectedSubMatchersCount + " sub matchers expected, " + matcherStack.size() + " recorded:",
258 "This exception may occur if matchers are combined with raw values:"
    [all...]
  /cts/tests/tests/preference2/src/android/preference2/cts/
PreferenceDataStoreTest.java 24 import static org.mockito.Matchers.any;
25 import static org.mockito.Matchers.anyBoolean;
26 import static org.mockito.Matchers.anyFloat;
27 import static org.mockito.Matchers.anyInt;
28 import static org.mockito.Matchers.anyLong;
29 import static org.mockito.Matchers.anyString;
30 import static org.mockito.Matchers.eq;
31 import static org.mockito.Matchers.isNull;
32 import static org.mockito.Matchers.nullable;
  /external/googletest/googlemock/docs/v1_6/
CheatSheet.md 119 ON_CALL(mock_object, method(matchers))
129 EXPECT_CALL(mock_object, method(matchers))
147 # Matchers #
157 Built-in matchers (where `argument` is the function argument) are
179 Except `Ref()`, these matchers make a _copy_ of `value` in case it's
186 ## Floating-Point Matchers ##
194 These matchers use ULP-based comparison (the same as used in
202 ## String Matchers ##
223 ## Container Matchers ##
234 | `ElementsAreArray(array)` or `ElementsAreArray(array, count)` | The same as `ElementsAre()` except that the expected element values/matchers come from a C-style array.
    [all...]
  /external/clang/docs/
LibASTMatchersTutorial.rst 187 curious), matchers offer the feel of algebraic data types common to
205 There are AST matchers to match all the different nodes of the AST,
206 narrowing matchers to only match AST nodes fulfilling specific criteria,
207 and traversal matchers to get from one kind of AST node to another. For
208 a complete list of AST matchers, take a look at the `AST Matcher
213 so, simply call the method ``bind`` on these matchers, e.g.:
219 Step 2: Using AST matchers
222 Okay, on to using matchers for real. Let's start by defining a matcher
261 Once you have defined your matchers, you will need to add a little more
262 scaffolding in order to run them. Matchers are paired with
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-internal-utils_test.cc 265 tuple<> matchers; local
268 EXPECT_TRUE(TupleMatches(matchers, values));
272 tuple<Matcher<int> > matchers(Eq(1));
276 EXPECT_TRUE(TupleMatches(matchers, values1));
277 EXPECT_FALSE(TupleMatches(matchers, values2));
281 tuple<Matcher<int>, Matcher<char> > matchers(Eq(1), Eq('a'));
287 EXPECT_TRUE(TupleMatches(matchers, values1));
288 EXPECT_FALSE(TupleMatches(matchers, values2));
289 EXPECT_FALSE(TupleMatches(matchers, values3));
290 EXPECT_FALSE(TupleMatches(matchers, values4))
    [all...]
  /external/googletest/googlemock/test/
gmock-internal-utils_test.cc 292 tuple<> matchers; local
295 EXPECT_TRUE(TupleMatches(matchers, values));
299 tuple<Matcher<int> > matchers(Eq(1));
303 EXPECT_TRUE(TupleMatches(matchers, values1));
304 EXPECT_FALSE(TupleMatches(matchers, values2));
308 tuple<Matcher<int>, Matcher<char> > matchers(Eq(1), Eq('a'));
314 EXPECT_TRUE(TupleMatches(matchers, values1));
315 EXPECT_FALSE(TupleMatches(matchers, values2));
316 EXPECT_FALSE(TupleMatches(matchers, values3));
317 EXPECT_FALSE(TupleMatches(matchers, values4))
    [all...]
  /external/v8/testing/gmock/test/
gmock-internal-utils_test.cc 291 tuple<> matchers; local
294 EXPECT_TRUE(TupleMatches(matchers, values));
298 tuple<Matcher<int> > matchers(Eq(1));
302 EXPECT_TRUE(TupleMatches(matchers, values1));
303 EXPECT_FALSE(TupleMatches(matchers, values2));
307 tuple<Matcher<int>, Matcher<char> > matchers(Eq(1), Eq('a'));
313 EXPECT_TRUE(TupleMatches(matchers, values1));
314 EXPECT_FALSE(TupleMatches(matchers, values2));
315 EXPECT_FALSE(TupleMatches(matchers, values3));
316 EXPECT_FALSE(TupleMatches(matchers, values4))
    [all...]
  /external/googletest/googlemock/include/gmock/
gmock-matchers.h 34 // This file implements some commonly used argument matchers. More
35 // matchers can be defined by the user implementing the
69 // is impossible if we pass matchers by pointers. It also eases
624 // This overload handles polymorphic matchers and values only since
625 // monomorphic matchers are handled by the next one.
631 // This overload handles monomorphic matchers.
698 // Value cannot be passed by const reference, because some matchers take a
738 // TuplePrefix<N>::ExplainMatchFailuresTo(matchers, values, os)
739 // describes failures in matching the first N fields of matchers
743 static void ExplainMatchFailuresTo(const MatcherTuple& matchers,
3461 MatcherVec matchers; local
3486 MatcherVec matchers; local
4237 ::std::vector<internal::BoundSecondMatcher<Tuple2Matcher, Second> > matchers; local
    [all...]
  /external/v8/testing/gmock/include/gmock/
gmock-matchers.h 34 // This file implements some commonly used argument matchers. More
35 // matchers can be defined by the user implementing the
69 // is impossible if we pass matchers by pointers. It also eases
624 // This overload handles polymorphic matchers and values only since
625 // monomorphic matchers are handled by the next one.
631 // This overload handles monomorphic matchers.
698 // Value cannot be passed by const reference, because some matchers take a
738 // TuplePrefix<N>::ExplainMatchFailuresTo(matchers, values, os)
739 // describes failures in matching the first N fields of matchers
743 static void ExplainMatchFailuresTo(const MatcherTuple& matchers,
3462 MatcherVec matchers; local
3487 MatcherVec matchers; local
4239 ::std::vector<internal::BoundSecondMatcher<Tuple2Matcher, Second> > matchers; local
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 13 /// Used by the registry to construct matchers in a generic way.
81 /// The purpose of this object is to abstract simple and polymorphic matchers
83 /// Polymorphic matchers might be implemented as a list of all the possible
141 /// \brief Clones the provided matchers.
145 PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers);
258 VariantValue(const VariantMatcher &Matchers);
  /external/googletest/googlemock/docs/v1_5/
CheatSheet.md 119 ON_CALL(mock_object, method(matchers))
129 EXPECT_CALL(mock_object, method(matchers))
147 # Matchers #
157 Built-in matchers (where `argument` is the function argument) are
179 Except `Ref()`, these matchers make a _copy_ of `value` in case it's
186 ## Floating-Point Matchers ##
194 The above matchers use ULP-based comparison (the same as used in
202 ## String Matchers ##
220 ## Container Matchers ##
230 |`ElementsAreArray(array)` or `ElementsAreArray(array, count)`|The same as `ElementsAre()` except that the expected element values/matchers come from a C-style array.
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
RecentAppsPreferenceControllerTest.java 53 import static org.mockito.Matchers.any;
54 import static org.mockito.Matchers.anyInt;
55 import static org.mockito.Matchers.anyLong;
56 import static org.mockito.Matchers.anyString;
57 import static org.mockito.Matchers.argThat;
58 import static org.mockito.Matchers.eq;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 13 /// Used by the registry to construct matchers in a generic way.
80 /// The purpose of this object is to abstract simple and polymorphic matchers
82 /// Polymorphic matchers might be implemented as a list of all the possible
140 /// \brief Clones the provided matchers.
144 PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers);
258 VariantValue(const VariantMatcher &Matchers);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 13 /// Used by the registry to construct matchers in a generic way.
80 /// The purpose of this object is to abstract simple and polymorphic matchers
82 /// Polymorphic matchers might be implemented as a list of all the possible
140 /// \brief Clones the provided matchers.
144 PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers);
258 VariantValue(const VariantMatcher &Matchers);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 13 /// Used by the registry to construct matchers in a generic way.
80 /// The purpose of this object is to abstract simple and polymorphic matchers
82 /// Polymorphic matchers might be implemented as a list of all the possible
140 /// \brief Clones the provided matchers.
144 PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers);
258 VariantValue(const VariantMatcher &Matchers);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 13 /// Used by the registry to construct matchers in a generic way.
80 /// The purpose of this object is to abstract simple and polymorphic matchers
82 /// Polymorphic matchers might be implemented as a list of all the possible
140 /// \brief Clones the provided matchers.
144 PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers);
258 VariantValue(const VariantMatcher &Matchers);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 13 /// Used by the registry to construct matchers in a generic way.
80 /// The purpose of this object is to abstract simple and polymorphic matchers
82 /// Polymorphic matchers might be implemented as a list of all the possible
140 /// \brief Clones the provided matchers.
144 PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers);
258 VariantValue(const VariantMatcher &Matchers);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 13 /// Used by the registry to construct matchers in a generic way.
80 /// The purpose of this object is to abstract simple and polymorphic matchers
82 /// Polymorphic matchers might be implemented as a list of all the possible
140 /// \brief Clones the provided matchers.
144 PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers);
258 VariantValue(const VariantMatcher &Matchers);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 13 /// Used by the registry to construct matchers in a generic way.
80 /// The purpose of this object is to abstract simple and polymorphic matchers
82 /// Polymorphic matchers might be implemented as a list of all the possible
140 /// \brief Clones the provided matchers.
144 PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers);
258 VariantValue(const VariantMatcher &Matchers);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 13 /// Used by the registry to construct matchers in a generic way.
80 /// The purpose of this object is to abstract simple and polymorphic matchers
82 /// Polymorphic matchers might be implemented as a list of all the possible
140 /// \brief Clones the provided matchers.
144 PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers);
258 VariantValue(const VariantMatcher &Matchers);
  /prebuilts/devtools/tools/lib/
easymock-3.3.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/3.3/
easymock-3.3.jar 
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
CtsMouseUtil.java 19 import static org.mockito.Matchers.argThat;
20 import static org.mockito.Matchers.eq;
  /cts/tests/accessibility/src/android/view/accessibility/cts/
CaptioningManagerTest.java 32 import static org.mockito.Matchers.anyFloat;
33 import static org.mockito.Matchers.anyObject;
  /external/google-breakpad/src/testing/include/gmock/
gmock.h 62 #include "gmock/gmock-generated-matchers.h"
65 #include "gmock/gmock-matchers.h"

Completed in 377 milliseconds

<<11121314151617181920>>