Searched refs:AllArgs (Results 1 - 7 of 7) sorted by relevance

/external/google-breakpad/src/testing/test/
H A Dgmock-matchers_test.cc76 using testing::AllArgs;
2419 EXPECT_THAT(make_tuple(1, 2L), AllArgs(Lt()));
2420 EXPECT_THAT(make_tuple(2L, 1), Not(AllArgs(Lt())));
2424 EXPECT_THAT(42, AllArgs(Gt(0)));
2425 EXPECT_THAT('a', Not(AllArgs(Eq('b'))));
2441 .With(AllArgs(Lt()))
2445 .With(AllArgs(Gt()))
/external/gmock/test/
H A Dgmock-matchers_test.cc81 using testing::AllArgs;
2528 EXPECT_THAT(make_tuple(1, 2L), AllArgs(Lt()));
2529 EXPECT_THAT(make_tuple(2L, 1), Not(AllArgs(Lt())));
2533 EXPECT_THAT(42, AllArgs(Gt(0)));
2534 EXPECT_THAT('a', Not(AllArgs(Eq('b'))));
2550 .With(AllArgs(Lt()))
2554 .With(AllArgs(Gt()))
/external/clang/lib/Sema/
H A DSemaExpr.cpp4539 SmallVector<Expr *, 8> AllArgs; local
4543 Proto, 0, Args, AllArgs, CallType);
4546 unsigned TotalNumArgs = AllArgs.size();
4548 Call->setArg(i, AllArgs[i]);
4556 SmallVectorImpl<Expr *> &AllArgs,
4622 AllArgs.push_back(Arg);
4635 AllArgs.push_back(arg.get());
4643 AllArgs.push_back(Arg.get());
4553 GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl, const FunctionProtoType *Proto, unsigned FirstParam, ArrayRef<Expr *> Args, SmallVectorImpl<Expr *> &AllArgs, VariadicCallType CallType, bool AllowExplicit, bool IsListInitialization) argument
H A DSemaDeclCXX.cpp11460 SmallVector<Expr *, 8> AllArgs; local
11464 AllArgs,
11467 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
11469 DiagnoseSentinelCalls(Constructor, Loc, AllArgs);
11472 llvm::makeArrayRef(AllArgs.data(), AllArgs.size()),
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h3186 // AllArgs(m) is a synonym of m. This is useful in
3188 // EXPECT_CALL(foo, Bar(_, _)).With(AllArgs(Eq()));
3194 inline InnerMatcher AllArgs(const InnerMatcher& matcher) { return matcher; } function in namespace:testing
/external/gmock/include/gmock/
H A Dgmock-matchers.h3965 // AllArgs(m) is a synonym of m. This is useful in
3967 // EXPECT_CALL(foo, Bar(_, _)).With(AllArgs(Eq()));
3973 inline InnerMatcher AllArgs(const InnerMatcher& matcher) { return matcher; } function in namespace:testing
/external/clang/include/clang/Sema/
H A DSema.h8287 SmallVectorImpl<Expr *> &AllArgs,

Completed in 2367 milliseconds