Searched refs:catcher (Results 1 - 25 of 29) sorted by relevance

12

/external/v8/test/mjsunit/regress/
H A 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/valgrind/main/include/
H A Dpub_tool_signals.h35 // wanders around dangerous memory (ie, leakcheck). The catcher is
41 extern void VG_(set_fault_catcher)(void (*catcher)(Int sig, Addr addr));
/external/chromium/chrome/browser/extensions/
H A Dextension_context_menu_apitest.cc30 ResultCatcher catcher; local
33 ASSERT_TRUE(catcher.GetNextResult());
38 ResultCatcher catcher; local
41 ASSERT_TRUE(catcher.GetNextResult());
H A Dstubs_apitest.cc28 ResultCatcher catcher; local
29 ASSERT_TRUE(catcher.GetNextResult());
H A Dpage_action_apitest.cc25 ResultCatcher catcher; local
28 ASSERT_TRUE(catcher.GetNextResult());
40 ResultCatcher catcher; local
46 EXPECT_TRUE(catcher.GetNextResult());
51 ResultCatcher catcher; local
54 ASSERT_TRUE(catcher.GetNextResult());
80 ResultCatcher catcher; local
84 ASSERT_TRUE(catcher.GetNextResult());
96 ResultCatcher catcher; local
100 ASSERT_TRUE(catcher
126 ResultCatcher catcher; local
146 ResultCatcher catcher; local
154 ResultCatcher catcher; local
173 ResultCatcher catcher; local
[all...]
H A Dextension_incognito_apitest.cc99 ResultCatcher catcher; local
109 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
121 ResultCatcher catcher; local
122 catcher.RestrictToProfile(browser()->profile());
143 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
144 EXPECT_TRUE(catcher_incognito.GetNextResult()) << catcher.message();
153 ResultCatcher catcher; local
163 EXPECT_TRUE(catcher
171 ResultCatcher catcher; local
[all...]
H A Dextension_override_apitest.cc60 ResultCatcher catcher; local
69 ASSERT_TRUE(catcher.GetNextResult());
108 ResultCatcher catcher; local
112 ASSERT_TRUE(catcher.GetNextResult());
158 ResultCatcher catcher; local
160 ASSERT_TRUE(catcher.GetNextResult());
167 ResultCatcher catcher; local
169 ASSERT_FALSE(catcher.GetNextResult());
177 ResultCatcher catcher; local
179 ASSERT_TRUE(catcher
[all...]
H A Dbrowser_action_apitest.cc37 ResultCatcher catcher; local
41 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
56 ResultCatcher catcher; local
59 ASSERT_TRUE(catcher.GetNextResult());
98 ResultCatcher catcher; local
101 ASSERT_TRUE(catcher.GetNextResult());
109 ASSERT_TRUE(catcher.GetNextResult());
130 ResultCatcher catcher; local
132 ASSERT_TRUE(catcher
207 ResultCatcher catcher; local
228 ResultCatcher catcher; local
263 ResultCatcher catcher; local
[all...]
H A Dextension_webnavigation_apitest.cc96 ResultCatcher catcher; local
109 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message();
H A Dwindow_open_apitest.cc18 ResultCatcher catcher; local
21 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
H A Dextension_apitest.cc140 ResultCatcher catcher; local
190 if (!catcher.GetNextResult()) {
191 message_ = catcher.message();
H A Dextension_omnibox_apitest.cc194 ResultCatcher catcher; local
199 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
/external/chromium/chrome/browser/chromeos/login/
H A Dissue_response_handler.cc25 URLFetcher::Delegate* catcher) {
30 new URLFetcher(GURL(token_url_), URLFetcher::GET, catcher);
23 Handle( const std::string& to_process, URLFetcher::Delegate* catcher) argument
H A Dauth_response_handler.h30 // the next step, sets |catcher| to get called back when that fetcher is done.
34 URLFetcher::Delegate* catcher) = 0;
H A Dclient_login_response_handler.cc29 URLFetcher::Delegate* catcher) {
38 catcher);
27 Handle( const std::string& to_process, URLFetcher::Delegate* catcher) argument
H A Dclient_login_response_handler.h35 // to sent to IssueAuthToken and issues said query. |catcher| will receive
38 URLFetcher::Delegate* catcher);
H A Dissue_response_handler.h36 // to sent to TokenAuth, and issues said query. |catcher| will receive
40 URLFetcher::Delegate* catcher);
H A Dmock_auth_response_handler.h38 URLFetcher::Delegate* catcher));
/external/guava/guava-tests/test/com/google/common/eventbus/
H A DAsyncEventBusTest.java43 StringCatcher catcher = new StringCatcher();
44 bus.register(catcher);
49 List<String> events = catcher.getEvents();
H A DEventBusTest.java42 StringCatcher catcher = new StringCatcher();
43 bus.register(catcher);
51 List<String> events = catcher.getEvents();
123 GhostCatcher catcher = new GhostCatcher();
124 bus.register(catcher);
129 List<DeadEvent> events = catcher.getEvents();
136 GhostCatcher catcher = new GhostCatcher();
137 bus.register(catcher);
141 List<DeadEvent> events = catcher.getEvents();
/external/v8/test/cctest/
H A Dtest-decls.cc135 TryCatch catcher; local
136 catcher.SetVerbose(true);
142 CHECK(!catcher.HasCaught());
148 CHECK(catcher.HasCaught());
150 CHECK_EQ(value, catcher.Exception());
/external/netperf/
H A Dnetlib.h527 extern void catcher(int, siginfo_t *,void *);
529 extern void catcher(int);
/external/v8/src/
H A Dexecution.cc195 v8::TryCatch catcher; local
196 catcher.SetVerbose(false);
197 catcher.SetCaptureMessage(false);
204 ASSERT(catcher.HasCaught());
212 result = v8::Utils::OpenHandle(*catcher.Exception());
H A Disolate.h571 v8::TryCatch* catcher() { function in class:v8::internal::Isolate
574 void set_catcher(v8::TryCatch* catcher) { argument
575 thread_local_top_.catcher_ = catcher;
652 catcher_(isolate_->catcher())
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DBasicBlock.java101 Catch catcher; field in class:BasicBlock.Mark
109 catcher = null;

Completed in 382 milliseconds

12