HomeSort by relevance Sort by last modified time
    Searched refs:catcher (Results 1 - 25 of 33) sorted by null

1 2

  /external/valgrind/main/include/
pub_tool_signals.h 35 // 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/
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());
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...]
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...]
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...]
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_webnavigation_apitest.cc 96 ResultCatcher catcher; local
109 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message();
window_open_apitest.cc 18 ResultCatcher catcher; local
21 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
extension_apitest.cc 140 ResultCatcher catcher; local
190 if (!catcher.GetNextResult()) {
191 message_ = catcher.message();
extension_omnibox_apitest.cc 194 ResultCatcher catcher; local
199 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
  /external/chromium/chrome/browser/chromeos/login/
issue_response_handler.cc 25 URLFetcher::Delegate* catcher) {
30 new URLFetcher(GURL(token_url_), URLFetcher::GET, catcher);
auth_response_handler.h 30 // the next step, sets |catcher| to get called back when that fetcher is done.
34 URLFetcher::Delegate* catcher) = 0;
client_login_response_handler.cc 29 URLFetcher::Delegate* catcher) {
38 catcher);
client_login_response_handler.h 35 // to sent to IssueAuthToken and issues said query. |catcher| will receive
38 URLFetcher::Delegate* catcher);
issue_response_handler.h 36 // to sent to TokenAuth, and issues said query. |catcher| will receive
40 URLFetcher::Delegate* catcher);
mock_auth_response_handler.h 38 URLFetcher::Delegate* catcher));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nls/
MockListener.java 168 public static void probeListenerStatus(Context context, IntegerResultCatcher catcher) {
169 requestIntegerResult(context, SERVICE_CHECK, catcher);
172 public static void probeListenerPosted(Context context, StringListResultCatcher catcher) {
173 requestStringListResult(context, SERVICE_POSTED, catcher);
176 public static void probeListenerPayloads(Context context, StringListResultCatcher catcher) {
177 requestStringListResult(context, SERVICE_PAYLOADS, catcher);
180 public static void probeListenerRemoved(Context context, StringListResultCatcher catcher) {
181 requestStringListResult(context, SERVICE_REMOVED, catcher);
211 IntegerResultCatcher catcher) {
213 context.sendOrderedBroadcast(broadcast, null, catcher, null, RESULT_NO_SERVER, null, null)
    [all...]
  /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/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);
regress-1184.js 30 // catcher as it doesn't catch original exception any more.
41 // stack with catcher set while processing exception
  /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());
  /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.h 527 extern void catcher(int, siginfo_t *,void *);
529 extern void catcher(int);

Completed in 236 milliseconds

1 2