HomeSort by relevance Sort by last modified time
    Searched refs:WithArg (Results 1 - 13 of 13) sorted by null

  /external/chromium/chrome/browser/password_manager/
password_manager_unittest.cc 25 using ::testing::WithArg;
142 .WillOnce(DoAll(WithArg<1>(InvokeConsumer(0, result)), Return(0)));
154 .WillOnce(WithArg<0>(SaveToScopedPtr(&form_to_save)));
176 .WillOnce(DoAll(WithArg<1>(InvokeConsumer(0, result)), Return(0)));
188 .WillOnce(WithArg<0>(SaveToScopedPtr(&form_to_save)));
201 .WillOnce(DoAll(WithArg<1>(InvokeConsumer(0, result)), Return(0)));
218 .WillRepeatedly(DoAll(WithArg<1>(InvokeConsumer(0, result)), Return(0)));
241 .WillRepeatedly(DoAll(WithArg<1>(InvokeConsumer(0, result)), Return(0)));
257 .WillOnce(WithArg<0>(SaveToScopedPtr(&form_to_save)));
274 .WillRepeatedly(DoAll(WithArg<1>(InvokeConsumer(0, result)), Return(0)))
    [all...]
password_store_win_unittest.cc 32 using testing::WithArg;
463 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
473 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
544 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
567 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
590 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
password_store_x_unittest.cc 29 using testing::WithArg;
389 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
399 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
669 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
678 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
695 .WillOnce(WithArg<0>(STLDeleteElements0()));
715 .WillOnce(WithArg<0>(STLDeleteElements0()));
password_store_default_unittest.cc 34 using testing::WithArg;
202 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
317 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
327 .WillOnce(DoAll(WithArg<1>(STLDeleteElements0()), QuitUIMessageLoop()));
password_store_mac_unittest.cc 25 using testing::WithArg;
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_helper_unittest.cc 26 using ::testing::WithArg;
130 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
138 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
143 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
181 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
189 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
197 .WillOnce(WithArg<1>(Invoke(&SignedSettingsHelperTest::OnKeyOpComplete)));
signed_settings_unittest.cc 33 using ::testing::WithArg;
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringSyntaxChecker.cpp 46 /// Check if the expression E is a sizeof(WithArg).
47 inline bool isSizeof(const Expr *E, const Expr *WithArg) {
51 return sameDecl(UE->getArgumentExpr(), WithArg);
55 /// Check if the expression E is a strlen(WithArg).
56 inline bool isStrlen(const Expr *E, const Expr *WithArg) {
62 && sameDecl(CE->getArg(0), WithArg));
  /external/chromium/chrome/browser/sync/engine/
syncer_thread2_unittest.cc 25 using testing::WithArg;
211 WithArg<0>(RecordSyncShare(&records, 1U, &done))))
229 WithArg<0>(RecordSyncShare(&records2, 1U, &done))));
251 WithArg<0>(RecordSyncShare(&records, 1U, &done))));
278 WithArg<0>(RecordSyncShare(&records, 1U, dummy))))
280 WithArg<0>(RecordSyncShare(&records, 1U, &done))));
311 WithArg<0>(RecordSyncShare(&records, 1U, dummy))))
313 WithArg<0>(RecordSyncShare(&records, 1U, &done1))))
315 WithArg<0>(RecordSyncShare(&records, 1U, &done))));
349 WithArg<0>(RecordSyncShare(&records, 1U, dummy)))
    [all...]
  /external/chromium/base/
gmock_unittest.cc 17 using testing::WithArg;
125 // and a WithArg adapter to bridge the interfaces.
129 .WillRepeatedly(WithArg<1>(ReturnVal()));
  /external/chromium/testing/gmock/include/gmock/
gmock-more-actions.h 122 // WithArg<k>(an_action) creates an action that passes the k-th
129 WithArg(const InnerAction& action) {
  /external/chromium/testing/gmock/test/
gmock_link_test.h 55 // WithArg
176 using testing::WithArg;
352 // Tests the linkage of the WithArg action.
357 .WillOnce(WithArg<0>(Invoke(&InvokeHelper::StaticVoidFromString)));
gmock-more-actions_test.cc 67 using testing::WithArg;
476 // Tests using WithArg with an action that takes 1 argument.
478 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT

Completed in 472 milliseconds