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

  /external/google-breakpad/src/testing/include/gmock/internal/
gmock-generated-internal-utils.h 145 // ArgumentTuple: the tuple type consisting of all parameters of F.
159 typedef ::std::tr1::tuple<> ArgumentTuple;
160 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
169 typedef ::std::tr1::tuple<A1> ArgumentTuple;
170 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
179 typedef ::std::tr1::tuple<A1, A2> ArgumentTuple;
180 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
189 typedef ::std::tr1::tuple<A1, A2, A3> ArgumentTuple;
190 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
199 typedef ::std::tr1::tuple<A1, A2, A3, A4> ArgumentTuple;
    [all...]
  /external/googletest/googlemock/include/gmock/internal/
gmock-generated-internal-utils.h 145 // ArgumentTuple: the tuple type consisting of all parameters of F.
159 typedef ::testing::tuple<> ArgumentTuple;
160 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
169 typedef ::testing::tuple<A1> ArgumentTuple;
170 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
179 typedef ::testing::tuple<A1, A2> ArgumentTuple;
180 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
189 typedef ::testing::tuple<A1, A2, A3> ArgumentTuple;
190 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
199 typedef ::testing::tuple<A1, A2, A3, A4> ArgumentTuple;
    [all...]
  /external/v8/testing/gmock/include/gmock/internal/
gmock-generated-internal-utils.h 145 // ArgumentTuple: the tuple type consisting of all parameters of F.
159 typedef ::testing::tuple<> ArgumentTuple;
160 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
169 typedef ::testing::tuple<A1> ArgumentTuple;
170 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
179 typedef ::testing::tuple<A1, A2> ArgumentTuple;
180 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
189 typedef ::testing::tuple<A1, A2, A3> ArgumentTuple;
190 typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
199 typedef ::testing::tuple<A1, A2, A3, A4> ArgumentTuple;
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-spec-builders.h 283 typedef typename Function<F>::ArgumentTuple ArgumentTuple;
295 // overloaded constructors of Matcher<const ArgumentTuple&>).
296 extra_matcher_(A<const ArgumentTuple&>()) {
300 OnCallSpec& With(const Matcher<const ArgumentTuple&>& m) {
325 bool Matches(const ArgumentTuple& args) const {
352 Matcher<const ArgumentTuple&> extra_matcher_;
871 typedef typename Function<F>::ArgumentTuple ArgumentTuple;
    [all...]
gmock-actions.h 255 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
264 virtual Result Perform(const ArgumentTuple& args) = 0;
283 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
312 Result Perform(const ArgumentTuple& args) const {
339 // template <typename Result, typename ArgumentTuple>
340 // Result Perform(const ArgumentTuple& args) const {
366 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
    [all...]
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>
391 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::type is the
393 // k{i}-th (0-based) field of ArgumentTuple, which must be a tuple
398 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::Select(args)
409 template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
413 typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
414 GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
415 GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5)
    [all...]
  /external/googletest/googlemock/include/gmock/
gmock-spec-builders.h 288 typedef typename Function<F>::ArgumentTuple ArgumentTuple;
300 // overloaded constructors of Matcher<const ArgumentTuple&>).
301 extra_matcher_(A<const ArgumentTuple&>()) {
305 OnCallSpec& With(const Matcher<const ArgumentTuple&>& m) {
330 bool Matches(const ArgumentTuple& args) const {
357 Matcher<const ArgumentTuple&> extra_matcher_;
881 typedef typename Function<F>::ArgumentTuple ArgumentTuple;
    [all...]
gmock-actions.h 330 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
339 virtual Result Perform(const ArgumentTuple& args) = 0;
358 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
387 Result Perform(const ArgumentTuple& args) const {
414 // template <typename Result, typename ArgumentTuple>
415 // Result Perform(const ArgumentTuple& args) const {
441 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
    [all...]
gmock-generated-function-mockers.h 69 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
80 return this->InvokeWith(ArgumentTuple());
89 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
101 return this->InvokeWith(ArgumentTuple(a1));
110 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
122 return this->InvokeWith(ArgumentTuple(a1, a2));
131 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple
    [all...]
gmock-generated-actions.h 50 template <typename Result, typename ArgumentTuple>
275 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::type is the
277 // k{i}-th (0-based) field of ArgumentTuple, which must be a tuple
282 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::Select(args)
293 template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
297 typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
298 GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
299 GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5)
    [all...]
  /external/v8/testing/gmock/include/gmock/
gmock-spec-builders.h 287 typedef typename Function<F>::ArgumentTuple ArgumentTuple;
299 // overloaded constructors of Matcher<const ArgumentTuple&>).
300 extra_matcher_(A<const ArgumentTuple&>()) {
304 OnCallSpec& With(const Matcher<const ArgumentTuple&>& m) {
329 bool Matches(const ArgumentTuple& args) const {
356 Matcher<const ArgumentTuple&> extra_matcher_;
879 typedef typename Function<F>::ArgumentTuple ArgumentTuple;
    [all...]
gmock-actions.h 330 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
339 virtual Result Perform(const ArgumentTuple& args) = 0;
358 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
387 Result Perform(const ArgumentTuple& args) const {
414 // template <typename Result, typename ArgumentTuple>
415 // Result Perform(const ArgumentTuple& args) const {
441 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
    [all...]
gmock-generated-function-mockers.h 69 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
80 return this->InvokeWith(ArgumentTuple());
89 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
101 return this->InvokeWith(ArgumentTuple(a1));
110 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
122 return this->InvokeWith(ArgumentTuple(a1, a2));
131 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple
    [all...]
gmock-generated-actions.h 50 template <typename Result, typename ArgumentTuple>
275 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::type is the
277 // k{i}-th (0-based) field of ArgumentTuple, which must be a tuple
282 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::Select(args)
293 template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
297 typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
298 GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
299 GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5)
    [all...]

Completed in 269 milliseconds