Searched refs:WithArg (Results 1 – 17 of 17) sorted by relevance
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CStringSyntaxChecker.cpp | 47 inline bool isSizeof(const Expr *E, const Expr *WithArg) { in isSizeof() argument 51 return sameDecl(UE->getArgumentExpr(), WithArg); in isSizeof() 56 inline bool isStrlen(const Expr *E, const Expr *WithArg) { in isStrlen() argument 62 sameDecl(CE->getArg(0), WithArg)); in isStrlen()
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_indirect_object_holder_unittest.cpp | 33 .WillOnce(::testing::WithArg<0>(::testing::Invoke( in TEST() 53 .WillOnce(::testing::WithArg<0>(::testing::Invoke( in TEST()
|
/external/libchrome/base/ |
D | gmock_unittest.cc | 17 using testing::WithArg; 127 .WillRepeatedly(WithArg<1>(ReturnVal())); in TEST()
|
/external/grpc-grpc/test/cpp/end2end/ |
D | mock_test.cc | 51 using ::testing::WithArg; 331 .WillOnce(DoAll(WithArg<0>(copy(&msg)), Return(true))) in TEST_F() 332 .WillOnce(DoAll(WithArg<0>(copy(&msg)), Return(true))) in TEST_F() 333 .WillOnce(DoAll(WithArg<0>(copy(&msg)), Return(true))) in TEST_F()
|
/external/grpc-grpc/doc/ |
D | unit_testing.md | 164 WillOnce(DoAll(WithArg<0>(copy(&msg)), Return(true))). 165 WillOnce(DoAll(WithArg<0>(copy(&msg)), Return(true))). 166 WillOnce(DoAll(WithArg<0>(copy(&msg)), Return(true))).
|
/external/libbrillo/brillo/http/ |
D | http_request_unittest.cc | 23 using testing::WithArg; 197 .WillOnce(DoAll(WithArg<0>(Invoke(finish_request_async)), Return(23))); in TEST_F()
|
/external/webrtc/webrtc/video/ |
D | video_capture_input_unittest.cc | 30 using ::testing::WithArg; 62 WithArg<0>(Invoke(this, &VideoCaptureInputTest::AddOutputFrame))); in SetUp()
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-more-actions.h | 129 WithArg(const InnerAction& action) { in WithArg() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/ |
D | gmock-more-actions.h | 146 WithArg(const InnerAction& action) { in WithArg() function
|
/external/googletest/googlemock/test/ |
D | gmock_link_test.h | 181 using testing::WithArg; 362 .WillOnce(WithArg<0>(Invoke(&InvokeHelper::StaticVoidFromString))); in TEST()
|
D | gmock-more-actions_test.cc | 62 using testing::WithArg; 481 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT in TEST()
|
/external/google-breakpad/src/testing/test/ |
D | gmock_link_test.h | 176 using testing::WithArg; 357 .WillOnce(WithArg<0>(Invoke(&InvokeHelper::StaticVoidFromString))); in TEST()
|
D | gmock-more-actions_test.cc | 67 using testing::WithArg; 479 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT in TEST()
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | neteq_impl_unittest.cc | 40 using ::testing::WithArg; 320 WithArg<0>(Invoke(DeletePacketsAndReturnOk)))); in TEST_F()
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-actions.h | 1013 WithArg(InnerAction&& action) {
|
/external/googletest/googlemock/docs/ |
D | CheatSheet.md | 445 |`WithArg<N>(a)` |Pass the `N`-th (0-based) argument of the mock function to action `…
|
D | CookBook.md | 2105 * `WithArg<N>(action)` (no `s` after `Arg`) when the inner `action` takes _one_ argument. 2115 …ment of the mock function is an `int` and `my_action` takes a `double`, `WithArg<4>(my_action)` wi…
|