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

1 2

  /external/chromium_org/v8/test/cctest/
test-compiler.cc 127 bool has_pending_exception;
129 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
130 CHECK(!has_pending_exception);
148 bool has_pending_exception; local
150 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
151 CHECK(!has_pending_exception);
168 bool has_pending_exception; local
170 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
171 CHECK(!has_pending_exception);
189 bool has_pending_exception; local
243 bool has_pending_exception; local
258 bool has_pending_exception; local
284 bool has_pending_exception; local
302 &has_pending_exception); local
    [all...]
test-random.cc 51 bool has_pending_exception; local
57 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
80 bool has_pending_exception; local
91 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
92 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
103 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
  /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) {
217 ASSERT(isolate->has_pending_exception());
231 ASSERT(!isolate->has_pending_exception());
265 bool* has_pending_exception) {
289 *has_pending_exception = true;
323 bool* has_pending_exception) {
    [all...]
execution.h 152 bool* has_pending_exception);
158 bool* has_pending_exception);
api.cc 88 bool has_pending_exception = false
96 if (has_pending_exception) { \
    [all...]
isolate.h 140 ASSERT((isolate)->has_pending_exception()); \
147 ASSERT(!(isolate)->has_pending_exception()); \
149 CHECK(!(isolate)->has_pending_exception()); \
573 ASSERT(has_pending_exception());
591 bool has_pending_exception() { function in class:v8::internal::Isolate
    [all...]
contexts.cc 138 if (isolate->has_pending_exception()) return Handle<Object>();
messages.cc 115 if (isolate->has_pending_exception()) {
isolate.cc     [all...]
runtime.cc 2644 bool has_pending_exception; local
    [all...]
compiler.cc 432 if (isolate()->has_pending_exception()) {
617 if (!isolate->has_pending_exception()) isolate->StackOverflow();
    [all...]
regexp-macro-assembler.cc 184 if (result == EXCEPTION && !isolate->has_pending_exception()) {
objects.cc 418 if (isolate->has_pending_exception()) return Failure::Exception();
489 bool has_pending_exception; local
491 Execution::Call(fun, self, 0, NULL, &has_pending_exception, true);
493 if (has_pending_exception) return Failure::Exception();
2933 bool has_pending_exception; local
3486 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...]
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...]
api.cc 83 bool has_pending_exception = false
91 if (has_pending_exception) { \
    [all...]
regexp-macro-assembler.cc 183 if (result == EXCEPTION && !isolate->has_pending_exception()) {
isolate.cc     [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...]
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 791 milliseconds

1 2