HomeSort by relevance Sort by last modified time
    Searched refs:ArgumentTuple (Results 1 - 9 of 9) sorted by null

  /external/chromium/testing/gmock/include/gmock/
gmock-actions.h 253 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
262 virtual Result Perform(const ArgumentTuple& args) = 0;
281 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
310 Result Perform(const ArgumentTuple& args) const {
337 // template <typename Result, typename ArgumentTuple>
338 // Result Perform(const ArgumentTuple& args) const {
364 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
    [all...]
gmock-spec-builders.h 282 typedef typename Function<F>::ArgumentTuple ArgumentTuple;
294 // overloaded constructors of Matcher<const ArgumentTuple&>).
295 extra_matcher_(A<const ArgumentTuple&>()) {
299 OnCallSpec& With(const Matcher<const ArgumentTuple&>& m) {
324 bool Matches(const ArgumentTuple& args) const {
351 Matcher<const ArgumentTuple&> extra_matcher_;
866 typedef typename Function<F>::ArgumentTuple ArgumentTuple;
879 // overloaded constructors of Matcher<const ArgumentTuple&>)
    [all...]
gmock-more-actions.h 59 template <typename Result, typename ArgumentTuple>
60 Result Perform(const ArgumentTuple& args) {
61 return InvokeHelper<Result, ArgumentTuple>::Invoke(function_impl_, args);
77 template <typename Result, typename ArgumentTuple>
78 Result Perform(const ArgumentTuple& args) const {
79 return InvokeHelper<Result, ArgumentTuple>::InvokeMethod(
gmock-generated-function-mockers.h 65 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
76 return this->InvokeWith(ArgumentTuple());
85 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
97 return this->InvokeWith(ArgumentTuple(a1));
106 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
118 return this->InvokeWith(ArgumentTuple(a1, a2));
127 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple
    [all...]
gmock-generated-actions.h 50 template <typename Result, typename ArgumentTuple>
392 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::type is the
394 // k{i}-th (0-based) field of ArgumentTuple, which must be a tuple
399 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::Select(args)
410 template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
414 typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
415 GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
416 GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5)
    [all...]
  /external/chromium/testing/gmock/test/
gmock-generated-internal-utils_test.cc 77 CompileAssertTypesEqual<tuple<>, F::ArgumentTuple>();
87 CompileAssertTypesEqual<tuple<bool>, F::ArgumentTuple>();
99 CompileAssertTypesEqual<tuple<bool, const long&>, F::ArgumentTuple>(); // NOLINT
116 F::ArgumentTuple>();
gmock-actions_test.cc 422 template <typename Result, typename ArgumentTuple>
423 Result Perform(const ArgumentTuple& args) { return get<1>(args); }
    [all...]
  /external/chromium/testing/gmock/include/gmock/internal/
gmock-generated-internal-utils.h 143 // ArgumentTuple: the tuple type consisting of all parameters of F.
157 typedef ::std::tr1::tuple<> ArgumentTuple;
158 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
167 typedef ::std::tr1::tuple<A1> ArgumentTuple;
168 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
177 typedef ::std::tr1::tuple<A1, A2> ArgumentTuple;
178 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
187 typedef ::std::tr1::tuple<A1, A2, A3> ArgumentTuple;
188 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
197 typedef ::std::tr1::tuple<A1, A2, A3, A4> ArgumentTuple;
    [all...]
  /external/chromium_org/chrome_frame/test/
mock_ie_event_sink_actions.h 199 return action.Perform(typename testing::Action<R(HWND)>::ArgumentTuple(hwnd));

Completed in 233 milliseconds