/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/libchrome/base/ |
D | gmock_unittest.cc | 17 using testing::WithArg; 129 .WillRepeatedly(WithArg<1>(ReturnVal())); in TEST()
|
/external/libbrillo/brillo/http/ |
D | http_request_unittest.cc | 23 using testing::WithArg; 199 .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/googletest/googlemock/include/gmock/ |
D | gmock-more-actions.h | 146 WithArg(const InnerAction& action) { in WithArg() function
|
/external/v8/testing/gmock/include/gmock/ |
D | gmock-more-actions.h | 146 WithArg(const InnerAction& action) { in WithArg() function
|
/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/googletest/googlemock/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; 485 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT in TEST()
|
/external/v8/testing/gmock/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/docs/v1_5/ |
D | CheatSheet.md | 384 |`WithArg<N>(a)` |Pass the `N`-th (0-based) argument of the mock function to action `a` and…
|
D | CookBook.md | 1956 * `WithArg<N>(action)` (no `s` after `Arg`) when the inner `action` takes _one_ argument. 1966 …ment of the mock function is an `int` and `my_action` takes a `double`, `WithArg<4>(my_action)` wi…
|
/external/googletest/googlemock/docs/v1_6/ |
D | CheatSheet.md | 393 |`WithArg<N>(a)` |Pass the `N`-th (0-based) argument of the mock function to action `a` and…
|
D | CookBook.md | 2024 * `WithArg<N>(action)` (no `s` after `Arg`) when the inner `action` takes _one_ argument. 2034 …ment of the mock function is an `int` and `my_action` takes a `double`, `WithArg<4>(my_action)` wi…
|
/external/googletest/googlemock/docs/ |
D | CheatSheet.md | 421 |`WithArg<N>(a)` |Pass the `N`-th (0-based) argument of the mock function to action `a` and…
|
D | CookBook.md | 2103 * `WithArg<N>(action)` (no `s` after `Arg`) when the inner `action` takes _one_ argument. 2113 …ment of the mock function is an `int` and `my_action` takes a `double`, `WithArg<4>(my_action)` wi…
|
/external/googletest/googlemock/docs/v1_7/ |
D | CheatSheet.md | 415 |`WithArg<N>(a)` |Pass the `N`-th (0-based) argument of the mock function to action `a` and…
|
D | CookBook.md | 2052 * `WithArg<N>(action)` (no `s` after `Arg`) when the inner `action` takes _one_ argument. 2062 …ment of the mock function is an `int` and `my_action` takes a `double`, `WithArg<4>(my_action)` wi…
|
/external/fmtlib/test/gmock/ |
D | gmock.h | 14015 WithArg(const InnerAction& action) {
|