Home
last modified time | relevance | path

Searched refs:catcher (Results 1 – 25 of 31) sorted by relevance

12

/external/chromium/chrome/browser/extensions/
Dpage_action_apitest.cc25 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
28 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
40 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
46 EXPECT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
51 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
54 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
80 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
84 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
96 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
100 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
[all …]
Dextension_incognito_apitest.cc99 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
109 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); in IN_PROC_BROWSER_TEST_F()
121 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
122 catcher.RestrictToProfile(browser()->profile()); in IN_PROC_BROWSER_TEST_F()
143 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); in IN_PROC_BROWSER_TEST_F()
144 EXPECT_TRUE(catcher_incognito.GetNextResult()) << catcher.message(); in IN_PROC_BROWSER_TEST_F()
153 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
163 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); in IN_PROC_BROWSER_TEST_F()
171 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
188 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); in IN_PROC_BROWSER_TEST_F()
Dextension_override_apitest.cc60 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
69 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
108 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
112 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
158 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
160 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
167 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
169 ASSERT_FALSE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
177 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
179 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
Dbrowser_action_apitest.cc37 ResultCatcher catcher; in OpenPopup() local
41 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); in OpenPopup()
56 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
59 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
98 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
101 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
109 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
130 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
132 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
207 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
[all …]
Dextension_context_menu_apitest.cc30 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
33 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
38 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
41 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
Dstubs_apitest.cc28 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
29 ASSERT_TRUE(catcher.GetNextResult()); in IN_PROC_BROWSER_TEST_F()
Dwindow_open_apitest.cc18 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
21 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); in IN_PROC_BROWSER_TEST_F()
Dextension_webnavigation_apitest.cc96 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
109 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message(); in IN_PROC_BROWSER_TEST_F()
Dextension_apitest.cc140 ResultCatcher catcher; in RunExtensionTestImpl() local
190 if (!catcher.GetNextResult()) { in RunExtensionTestImpl()
191 message_ = catcher.message(); in RunExtensionTestImpl()
Dextension_omnibox_apitest.cc194 ResultCatcher catcher; in IN_PROC_BROWSER_TEST_F() local
199 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); in IN_PROC_BROWSER_TEST_F()
/external/v8/test/mjsunit/regress/
Dregress-734862.js28 function catcher(o, p) { function
33 assertTrue(catcher(null, 'foo') instanceof TypeError);
34 assertTrue(catcher(void 0, 'foo') instanceof TypeError);
35 assertTrue(catcher(null, 123) instanceof TypeError);
36 assertTrue(catcher(void 0, 123) instanceof TypeError);
/external/guava/guava-tests/test/com/google/common/eventbus/
DEventBusTest.java42 StringCatcher catcher = new StringCatcher(); in testBasicCatcherDistribution() local
43 bus.register(catcher); in testBasicCatcherDistribution()
51 List<String> events = catcher.getEvents(); in testBasicCatcherDistribution()
123 GhostCatcher catcher = new GhostCatcher(); in testDeadEventForwarding() local
124 bus.register(catcher); in testDeadEventForwarding()
129 List<DeadEvent> events = catcher.getEvents(); in testDeadEventForwarding()
136 GhostCatcher catcher = new GhostCatcher(); in testDeadEventPosting() local
137 bus.register(catcher); in testDeadEventPosting()
141 List<DeadEvent> events = catcher.getEvents(); in testDeadEventPosting()
DAsyncEventBusTest.java43 StringCatcher catcher = new StringCatcher(); in testBasicDistribution() local
44 bus.register(catcher); in testBasicDistribution()
49 List<String> events = catcher.getEvents(); in testBasicDistribution()
/external/chromium/chrome/browser/chromeos/login/
Dissue_response_handler.cc25 URLFetcher::Delegate* catcher) { in Handle() argument
30 new URLFetcher(GURL(token_url_), URLFetcher::GET, catcher); in Handle()
Dclient_login_response_handler.cc29 URLFetcher::Delegate* catcher) { in Handle() argument
38 catcher); in Handle()
Dauth_response_handler.h34 URLFetcher::Delegate* catcher) = 0;
Dclient_login_response_handler.h38 URLFetcher::Delegate* catcher);
Dissue_response_handler.h40 URLFetcher::Delegate* catcher);
Dmock_auth_response_handler.h38 URLFetcher::Delegate* catcher));
/external/v8/test/cctest/
Dtest-decls.cc135 TryCatch catcher; in Check() local
136 catcher.SetVerbose(true); in Check()
142 CHECK(!catcher.HasCaught()); in Check()
148 CHECK(catcher.HasCaught()); in Check()
150 CHECK_EQ(value, catcher.Exception()); in Check()
/external/valgrind/main/include/
Dpub_tool_signals.h41 extern void VG_(set_fault_catcher)(void (*catcher)(Int sig, Addr addr));
/external/v8/src/
Dexecution.cc195 v8::TryCatch catcher; in TryCall() local
196 catcher.SetVerbose(false); in TryCall()
197 catcher.SetCaptureMessage(false); in TryCall()
204 ASSERT(catcher.HasCaught()); in TryCall()
212 result = v8::Utils::OpenHandle(*catcher.Exception()); in TryCall()
Disolate.h571 v8::TryCatch* catcher() { in catcher() function
574 void set_catcher(v8::TryCatch* catcher) { in set_catcher() argument
575 thread_local_top_.catcher_ = catcher; in set_catcher()
652 catcher_(isolate_->catcher()) in ExceptionScope()
/external/netperf/
Dnetlib.h527 extern void catcher(int, siginfo_t *,void *);
529 extern void catcher(int);
/external/javassist/src/main/javassist/bytecode/stackmap/
DBasicBlock.java101 Catch catcher;
109 catcher = null;

12