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

1 2

  /libcore/luni/src/main/native/
ExecStrings.cpp 49 jthrowable pending_exception = env_->ExceptionOccurred(); local
50 if (pending_exception != NULL) {
62 if (pending_exception != NULL) {
63 if (env_->Throw(pending_exception) < 0) {
  /external/chromium_org/v8/src/
execution.cc 131 if (isolate->pending_exception()->IsOutOfMemory()) {
156 bool* pending_exception,
158 *pending_exception = false;
161 callable = TryGetFunctionDelegate(isolate, callable, pending_exception);
162 if (*pending_exception) return callable;
178 receiver = ToObject(isolate, receiver, pending_exception);
180 if (*pending_exception) return callable;
183 return Invoke(false, func, receiver, argc, argv, pending_exception);
190 bool* pending_exception) {
192 pending_exception);
    [all...]
execution.h 59 // *pending_exception tells whether the invoke resulted in
71 bool* pending_exception,
78 // *pending_exception tells whether the invoke resulted in
84 bool* pending_exception);
isolate.cc 915 pending_exception() == heap_.termination_exception())
    [all...]
messages.cc 116 isolate->pending_exception()->ToObject(&exception_object);
builtins.cc 383 bool pending_exception; local
389 &pending_exception);
390 if (pending_exception) return Failure::Exception();
1168 bool pending_exception = false; local
    [all...]
isolate.h 157 C(PendingException, pending_exception) \
263 // invariants that hold about pending_exception. We may want to
553 MaybeObject* pending_exception() { function in class:v8::internal::Isolate
686 pending_exception_(isolate_->pending_exception()->ToObjectUnchecked(),
    [all...]
factory.cc 1785 pending_exception); local
    [all...]
factory.h 474 bool* pending_exception);
debug.h 849 bool* pending_exception);
    [all...]
  /external/v8/src/
execution.cc 130 if (isolate->pending_exception() == Failure::OutOfMemoryException()) {
148 bool* pending_exception,
150 *pending_exception = false;
153 callable = TryGetFunctionDelegate(callable, pending_exception);
154 if (*pending_exception) return callable;
168 receiver = ToObject(receiver, pending_exception);
170 if (*pending_exception) return callable;
173 return Invoke(false, func, receiver, argc, argv, pending_exception);
180 bool* pending_exception) {
182 pending_exception);
    [all...]
execution.h 58 // *pending_exception tells whether the invoke resulted in
69 bool* pending_exception,
76 // *pending_exception tells whether the invoke resulted in
82 bool* pending_exception);
builtins.cc 474 bool pending_exception; local
479 &pending_exception);
480 if (pending_exception) return Failure::Exception();
1074 bool pending_exception = false; local
    [all...]
isolate.cc 948 thread_local_top()->scheduled_exception_ = pending_exception();
    [all...]
isolate.h 141 C(PendingException, pending_exception) \
246 // invariants that hold about pending_exception. We may want to
535 MaybeObject* pending_exception() { function in class:v8::internal::Isolate
651 pending_exception_(isolate_->pending_exception()->ToObjectUnchecked()),
    [all...]
factory.cc     [all...]
debug.h 773 bool* pending_exception);
    [all...]
factory.h 405 bool* pending_exception);
bootstrapper.cc 2143 bool pending_exception = false; local
    [all...]
  /external/qemu/target-arm/
cpu.h 166 int pending_exception; member in struct:CPUARMState::__anon28275
  /external/v8/test/cctest/
test-compiler.cc 275 CHECK_EQ(42.0, Isolate::Current()->pending_exception()->
test-parsing.cc     [all...]
  /external/chromium_org/v8/test/cctest/
test-compiler.cc 269 CHECK_EQ(42.0, isolate->pending_exception()->ToObjectChecked()->Number());
  /external/chromium_org/v8/src/ia32/
code-stubs-ia32.cc     [all...]
  /external/v8/src/ia32/
code-stubs-ia32.cc     [all...]

Completed in 875 milliseconds

1 2