Home
last modified time | relevance | path

Searched refs:WithArg (Results 1 – 23 of 23) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DCStringSyntaxChecker.cpp47 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/
Dgmock_unittest.cc17 using testing::WithArg;
129 .WillRepeatedly(WithArg<1>(ReturnVal())); in TEST()
/external/libbrillo/brillo/http/
Dhttp_request_unittest.cc23 using testing::WithArg;
199 .WillOnce(DoAll(WithArg<0>(Invoke(finish_request_async)), Return(23))); in TEST_F()
/external/webrtc/webrtc/video/
Dvideo_capture_input_unittest.cc30 using ::testing::WithArg;
62 WithArg<0>(Invoke(this, &VideoCaptureInputTest::AddOutputFrame))); in SetUp()
/external/google-breakpad/src/testing/include/gmock/
Dgmock-more-actions.h129 WithArg(const InnerAction& action) { in WithArg() function
/external/googletest/googlemock/include/gmock/
Dgmock-more-actions.h146 WithArg(const InnerAction& action) { in WithArg() function
/external/v8/testing/gmock/include/gmock/
Dgmock-more-actions.h146 WithArg(const InnerAction& action) { in WithArg() function
/external/google-breakpad/src/testing/test/
Dgmock_link_test.h176 using testing::WithArg;
357 .WillOnce(WithArg<0>(Invoke(&InvokeHelper::StaticVoidFromString))); in TEST()
Dgmock-more-actions_test.cc67 using testing::WithArg;
479 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT in TEST()
/external/googletest/googlemock/test/
Dgmock_link_test.h176 using testing::WithArg;
357 .WillOnce(WithArg<0>(Invoke(&InvokeHelper::StaticVoidFromString))); in TEST()
Dgmock-more-actions_test.cc67 using testing::WithArg;
485 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT in TEST()
/external/v8/testing/gmock/test/
Dgmock_link_test.h176 using testing::WithArg;
357 .WillOnce(WithArg<0>(Invoke(&InvokeHelper::StaticVoidFromString))); in TEST()
Dgmock-more-actions_test.cc67 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/
Dneteq_impl_unittest.cc40 using ::testing::WithArg;
320 WithArg<0>(Invoke(DeletePacketsAndReturnOk)))); in TEST_F()
/external/googletest/googlemock/docs/v1_5/
DCheatSheet.md384 |`WithArg<N>(a)` |Pass the `N`-th (0-based) argument of the mock function to action `a` and…
DCookBook.md1956 * `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/
DCheatSheet.md393 |`WithArg<N>(a)` |Pass the `N`-th (0-based) argument of the mock function to action `a` and…
DCookBook.md2024 * `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/
DCheatSheet.md421 |`WithArg<N>(a)` |Pass the `N`-th (0-based) argument of the mock function to action `a` and…
DCookBook.md2103 * `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/
DCheatSheet.md415 |`WithArg<N>(a)` |Pass the `N`-th (0-based) argument of the mock function to action `a` and…
DCookBook.md2052 * `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/
Dgmock.h14015 WithArg(const InnerAction& action) {