HomeSort by relevance Sort by last modified time
    Searched full:has_pending_exception (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/v8/test/cctest/
test-compiler.cc 130 bool has_pending_exception;
132 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception);
133 CHECK(!has_pending_exception);
151 bool has_pending_exception; local
153 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception);
154 CHECK(!has_pending_exception);
171 bool has_pending_exception; local
173 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception);
174 CHECK(!has_pending_exception);
192 bool has_pending_exception; local
217 CcTest::i_isolate(), fun, global, 0, NULL, &has_pending_exception); local
248 bool has_pending_exception; local
251 CcTest::i_isolate(), fun, global, 0, NULL, &has_pending_exception); local
264 bool has_pending_exception; local
292 bool has_pending_exception; local
    [all...]
  /external/v8/test/cctest/
test-compiler.cc 140 bool has_pending_exception;
142 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
143 CHECK(!has_pending_exception);
161 bool has_pending_exception; local
163 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
164 CHECK(!has_pending_exception);
181 bool has_pending_exception; local
183 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
184 CHECK(!has_pending_exception);
202 bool has_pending_exception; local
256 bool has_pending_exception; local
271 bool has_pending_exception; local
296 bool has_pending_exception; local
312 &has_pending_exception); local
    [all...]
test-random.cc 54 bool has_pending_exception; local
60 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
82 bool has_pending_exception; local
92 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
93 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
104 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
  /external/chromium_org/v8/src/
execution.cc 75 bool* has_pending_exception) {
127 *has_pending_exception = value->IsException();
128 ASSERT(*has_pending_exception == isolate->has_pending_exception());
129 if (*has_pending_exception) {
218 ASSERT(isolate->has_pending_exception());
232 ASSERT(!isolate->has_pending_exception());
267 bool* has_pending_exception) {
290 *has_pending_exception = true;
325 bool* has_pending_exception) {
    [all...]
api.cc 89 bool has_pending_exception = false
97 if (has_pending_exception) { \
    [all...]
execution.h 165 bool* has_pending_exception);
173 bool* has_pending_exception);
messages.cc 115 if (isolate->has_pending_exception()) {
isolate.h 138 ASSERT((isolate)->has_pending_exception()); \
145 ASSERT(!(isolate)->has_pending_exception()); \
147 CHECK(!(isolate)->has_pending_exception()); \
554 ASSERT(has_pending_exception());
572 bool has_pending_exception() { function in class:v8::internal::Isolate
    [all...]
isolate.cc 914 if (has_pending_exception() &&
    [all...]
runtime.cc 2741 bool has_pending_exception; local
    [all...]
compiler.cc 477 if (isolate()->has_pending_exception()) {
693 if (!isolate->has_pending_exception()) isolate->StackOverflow();
    [all...]
contexts.cc 138 if (isolate->has_pending_exception()) return Handle<Object>();
regexp-macro-assembler.cc 183 if (result == EXCEPTION && !isolate->has_pending_exception()) {
objects.cc 483 if (isolate->has_pending_exception()) return Failure::Exception();
552 bool has_pending_exception; local
554 isolate, fun, self, 0, NULL, &has_pending_exception, true);
556 if (has_pending_exception) return Failure::Exception();
2998 bool has_pending_exception; local
3609 bool has_pending_exception; local
    [all...]
bootstrapper.cc 1533 bool has_pending_exception; local
    [all...]
  /external/v8/src/
execution.cc 74 bool* has_pending_exception) {
126 *has_pending_exception = value->IsException();
127 ASSERT(*has_pending_exception == Isolate::Current()->has_pending_exception());
128 if (*has_pending_exception) {
206 ASSERT(isolate->has_pending_exception());
217 ASSERT(!Isolate::Current()->has_pending_exception());
251 bool* has_pending_exception) {
275 *has_pending_exception = true;
309 bool* has_pending_exception) {
    [all...]
api.cc 83 bool has_pending_exception = false
91 if (has_pending_exception) { \
    [all...]
execution.h 155 bool* has_pending_exception);
161 bool* has_pending_exception);
isolate.h 122 ASSERT((isolate)->has_pending_exception()); \
129 ASSERT(!(isolate)->has_pending_exception()); \
131 CHECK(!(isolate)->has_pending_exception()); \
536 ASSERT(has_pending_exception());
554 bool has_pending_exception() { function in class:v8::internal::Isolate
    [all...]
compiler.cc 301 if (info->isolate()->has_pending_exception()) {
412 if (!isolate->has_pending_exception()) isolate->StackOverflow();
631 if (!isolate->has_pending_exception()) {
bootstrapper.cc 1370 bool has_pending_exception; local
    [all...]
isolate.cc     [all...]
regexp-macro-assembler.cc 183 if (result == EXCEPTION && !isolate->has_pending_exception()) {
runtime.cc 1944 bool has_pending_exception; local
    [all...]
objects.cc 233 if (isolate->has_pending_exception()) return Failure::Exception();
289 bool has_pending_exception; local
291 Execution::Call(fun, self, 0, NULL, &has_pending_exception, true);
293 if (has_pending_exception) return Failure::Exception();
2041 bool has_pending_exception; local
2674 bool has_pending_exception; local
    [all...]

Completed in 945 milliseconds

1 2