HomeSort by relevance Sort by last modified time
    Searched defs:catcher (Results 1 - 7 of 7) 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/v8/src/
messages.cc 103 v8::TryCatch catcher; local
104 catcher.SetVerbose(false);
105 catcher.SetCaptureMessage(false);
execution.cc 143 v8::TryCatch catcher; local
144 catcher.SetVerbose(false);
145 catcher.SetCaptureMessage(false);
151 ASSERT(catcher.HasCaught());
157 result = v8::Utils::OpenHandle(*catcher.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());
test-debug.cc 4604 v8::TryCatch catcher; local
    [all...]
test-api.cc 5502 v8::TryCatch catcher; local
    [all...]
  /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 346 milliseconds