HomeSort by relevance Sort by last modified time
    Searched defs:catcher (Results 1 - 20 of 20) sorted by null

  /external/v8/test/mjsunit/regress/
regress-734862.js 28 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/chromium/chrome/browser/extensions/
extension_context_menu_apitest.cc 30 ResultCatcher catcher; local
33 ASSERT_TRUE(catcher.GetNextResult());
38 ResultCatcher catcher; local
41 ASSERT_TRUE(catcher.GetNextResult());
stubs_apitest.cc 28 ResultCatcher catcher; local
29 ASSERT_TRUE(catcher.GetNextResult());
extension_webnavigation_apitest.cc 96 ResultCatcher catcher; local
109 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message();
extension_incognito_apitest.cc 99 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.GetNextResult()) << catcher.message()
171 ResultCatcher catcher; local
    [all...]
page_action_apitest.cc 25 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.GetNextResult())
126 ResultCatcher catcher; local
146 ResultCatcher catcher; local
154 ResultCatcher catcher; local
173 ResultCatcher catcher; local
    [all...]
window_open_apitest.cc 18 ResultCatcher catcher; local
21 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
extension_override_apitest.cc 60 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.GetNextResult())
    [all...]
extension_omnibox_apitest.cc 194 ResultCatcher catcher; local
199 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
browser_action_apitest.cc 37 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.GetNextResult())
207 ResultCatcher catcher; local
228 ResultCatcher catcher; local
263 ResultCatcher catcher; local
    [all...]
extension_apitest.cc 140 ResultCatcher catcher; local
190 if (!catcher.GetNextResult()) {
191 message_ = catcher.message();
  /external/guava/guava-tests/test/com/google/common/eventbus/
AsyncEventBusTest.java 43 StringCatcher catcher = new StringCatcher(); local
44 bus.register(catcher);
49 List<String> events = catcher.getEvents();
EventBusTest.java 42 StringCatcher catcher = new StringCatcher(); local
43 bus.register(catcher);
51 List<String> events = catcher.getEvents();
103 // Check the Catcher<Object>...
113 // Check the Catcher<Comparable<?>>...
123 GhostCatcher catcher = new GhostCatcher(); local
124 bus.register(catcher);
129 List<DeadEvent> events = catcher.getEvents();
136 GhostCatcher catcher = new GhostCatcher(); local
137 bus.register(catcher);
    [all...]
  /external/v8/test/cctest/
test-decls.cc 135 TryCatch catcher; local
136 catcher.SetVerbose(true);
142 CHECK(!catcher.HasCaught());
148 CHECK(catcher.HasCaught());
150 CHECK_EQ(value, catcher.Exception());
test-debug.cc 5394 v8::TryCatch catcher; local
    [all...]
test-api.cc 8279 v8::TryCatch catcher; local
    [all...]
  /external/v8/src/
execution.cc 195 v8::TryCatch catcher; local
196 catcher.SetVerbose(false);
197 catcher.SetCaptureMessage(false);
204 ASSERT(catcher.HasCaught());
212 result = v8::Utils::OpenHandle(*catcher.Exception());
isolate.h 571 v8::TryCatch* catcher() { function in class:v8::internal::Isolate
574 void set_catcher(v8::TryCatch* catcher) {
575 thread_local_top_.catcher_ = catcher;
652 catcher_(isolate_->catcher())
    [all...]
  /packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
VideoChatTestActivity.java 273 private void setupCallback(Camera camera, FrameCatcher catcher, int bufferSize) {
275 camera.setPreviewCallbackWithBuffer(catcher);
381 FrameCatcher catcher = new FrameCatcher(setSize.width, setSize.height); local
419 setupCallback(camera, catcher, bufferSize);
441 frames = catcher.mFrames;
  /external/netperf/
netlib.c 748 /* signal catcher */
754 catcher(sig, code, scp)
759 catcher(int sig)
788 fprintf(where,"catcher: timer popped with times_up != 0\n");
809 "catcher: Time to send burst > interval!\n");
817 "catcher: interval timer running unexpectedly!\n");
838 fprintf(where,"installing catcher for all signals\n");
842 action.sa_handler = catcher;
855 "Could not install signal catcher for sig %d, errno %d\n",
959 action.sa_handler = catcher;
747 catcher(sig, code, scp) function
    [all...]

Completed in 481 milliseconds