HomeSort by relevance Sort by last modified time
    Searched defs:try_catch (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/v8/test/cctest/
test-global-object.cc 40 v8::TryCatch try_catch; local
48 CHECK(try_catch.HasCaught());
49 v8::String::Utf8Value exception(try_catch.Exception());
test-thread-termination.cc 63 v8::TryCatch try_catch; local
78 CHECK(try_catch.HasCaught());
79 CHECK(try_catch.Exception()->IsNull());
80 CHECK(try_catch.Message().IsEmpty());
81 CHECK(!try_catch.CanContinue());
87 v8::TryCatch try_catch; local
94 CHECK(try_catch.HasCaught());
95 CHECK(try_catch.Exception()->IsNull());
96 CHECK(try_catch.Message().IsEmpty());
97 CHECK(!try_catch.CanContinue())
278 v8::TryCatch try_catch; local
327 v8::TryCatch try_catch; local
372 v8::TryCatch try_catch; local
    [all...]
test-log.cc 544 v8::TryCatch try_catch; local
547 v8::String::Utf8Value exception(try_catch.Exception());
553 v8::String::Utf8Value exception(try_catch.Exception());
  /external/chromium_org/v8/src/extensions/i18n/
i18n-utils.cc 66 v8::TryCatch try_catch; local
68 if (try_catch.HasCaught()) {
87 v8::TryCatch try_catch; local
89 if (try_catch.HasCaught()) {
109 v8::TryCatch try_catch; local
111 if (try_catch.HasCaught()) {
break-iterator.cc 230 v8::TryCatch try_catch; local
233 if (try_catch.HasCaught()) {
  /external/v8/test/cctest/
test-thread-termination.cc 67 v8::TryCatch try_catch; local
82 CHECK(try_catch.HasCaught());
83 CHECK(try_catch.Exception()->IsNull());
84 CHECK(try_catch.Message().IsEmpty());
85 CHECK(!try_catch.CanContinue());
92 v8::TryCatch try_catch; local
99 CHECK(try_catch.HasCaught());
100 CHECK(try_catch.Exception()->IsNull());
101 CHECK(try_catch.Message().IsEmpty());
102 CHECK(!try_catch.CanContinue())
280 v8::TryCatch try_catch; local
329 v8::TryCatch try_catch; local
    [all...]
test-log.cc 514 v8::TryCatch try_catch; local
517 v8::String::Utf8Value exception(try_catch.Exception());
523 v8::String::Utf8Value exception(try_catch.Exception());
  /external/chromium_org/chrome/test/base/
module_system_test.cc 33 virtual void HandleUncaughtException(const v8::TryCatch& try_catch) OVERRIDE {
34 FAIL() << "Uncaught exception: " << CreateExceptionString(try_catch); variable
v8_unit_test.cc 118 v8::TryCatch try_catch; local
201 v8::TryCatch try_catch; local
205 FAIL() << ExceptionToString(try_catch);
210 FAIL() << ExceptionToString(try_catch);
213 std::string V8UnitTest::ExceptionToString(const v8::TryCatch& try_catch) {
216 v8::String::Utf8Value exception(try_catch.Exception());
217 v8::Local<v8::Message> message(try_catch.Message());
245 v8::TryCatch try_catch; local
249 FAIL() << ExceptionToString(try_catch);
  /external/chromium_org/v8/samples/
shell.cc 290 v8::TryCatch try_catch; local
295 ReportException(isolate, &try_catch);
300 assert(try_catch.HasCaught());
303 ReportException(isolate, &try_catch);
306 assert(!try_catch.HasCaught());
320 void ReportException(v8::Isolate* isolate, v8::TryCatch* try_catch) {
322 v8::String::Utf8Value exception(try_catch->Exception());
324 v8::Handle<v8::Message> message = try_catch->Message();
349 v8::String::Utf8Value stack_trace(try_catch->StackTrace());
lineprocessor.cc 239 v8::TryCatch try_catch; local
244 ReportException(isolate, &try_catch);
250 v8::TryCatch try_catch; local
253 if (try_catch.HasCaught()) {
255 ReportException(isolate, &try_catch);
308 v8::TryCatch try_catch; local
311 if (try_catch.HasCaught()) {
313 ReportException(isolate, &try_catch);
362 void ReportException(v8::Isolate* isolate, v8::TryCatch* try_catch) {
364 v8::String::Utf8Value exception(try_catch->Exception())
    [all...]
  /external/chromium_org/v8/src/
messages.cc 145 v8::TryCatch try_catch; local
d8-debug.cc 64 TryCatch try_catch; local
72 if (try_catch.HasCaught()) {
73 Shell::ReportException(isolate, &try_catch);
80 if (try_catch.HasCaught()) {
81 Shell::ReportException(isolate, &try_catch);
97 if (try_catch.HasCaught()) {
98 Shell::ReportException(isolate, &try_catch);
113 TryCatch try_catch; local
118 if (try_catch.HasCaught()) {
119 Shell::ReportException(isolate, &try_catch);
283 TryCatch try_catch; local
313 TryCatch try_catch; local
    [all...]
mksnapshot.cc 377 TryCatch try_catch; local
379 if (try_catch.HasCaught()) {
381 DumpException(try_catch.Message());
385 if (try_catch.HasCaught()) {
387 DumpException(try_catch.Message());
  /external/v8/src/
messages.cc 133 v8::TryCatch try_catch; local
d8-debug.cc 64 TryCatch try_catch; local
71 if (try_catch.HasCaught()) {
72 Shell::ReportException(&try_catch);
79 if (try_catch.HasCaught()) {
80 Shell::ReportException(&try_catch);
95 if (try_catch.HasCaught()) {
96 Shell::ReportException(&try_catch);
111 TryCatch try_catch; local
116 if (try_catch.HasCaught()) {
117 Shell::ReportException(&try_catch);
280 TryCatch try_catch; local
309 TryCatch try_catch; local
    [all...]
  /external/chromium_org/content/renderer/pepper/
v8_var_converter.cc 302 v8::TryCatch try_catch; local
304 if (try_catch.HasCaught()) {
332 v8::TryCatch try_catch; local
334 if (try_catch.HasCaught()) {
398 v8::TryCatch try_catch; local
400 if (try_catch.HasCaught())
444 v8::TryCatch try_catch; local
446 if (try_catch.HasCaught())
  /external/chromium_org/content/renderer/
v8_value_converter_impl.cc 185 v8::TryCatch try_catch; local
187 if (try_catch.HasCaught())
204 v8::TryCatch try_catch; local
206 if (try_catch.HasCaught()) {
320 v8::TryCatch try_catch; local
322 if (try_catch.HasCaught()) {
401 v8::TryCatch try_catch; local
404 if (try_catch.HasCaught()) {
v8_value_converter_impl_unittest.cc 623 v8::TryCatch try_catch; local
626 ASSERT_FALSE(try_catch.HasCaught());
  /external/v8/samples/
lineprocessor.cc 241 v8::TryCatch try_catch; local
246 ReportException(&try_catch);
252 v8::TryCatch try_catch; local
255 if (try_catch.HasCaught()) {
257 ReportException(&try_catch);
308 v8::TryCatch try_catch; local
311 if (try_catch.HasCaught()) {
313 ReportException(&try_catch);
360 void ReportException(v8::TryCatch* try_catch) {
362 v8::String::Utf8Value exception(try_catch->Exception())
    [all...]
shell.cc 272 v8::TryCatch try_catch; local
277 ReportException(&try_catch);
282 assert(try_catch.HasCaught());
285 ReportException(&try_catch);
288 assert(!try_catch.HasCaught());
302 void ReportException(v8::TryCatch* try_catch) {
304 v8::String::Utf8Value exception(try_catch->Exception());
306 v8::Handle<v8::Message> message = try_catch->Message();
331 v8::String::Utf8Value stack_trace(try_catch->StackTrace());
process.cc 202 TryCatch try_catch; local
207 String::Utf8Value error(try_catch.Exception());
217 String::Utf8Value error(try_catch.Exception());
255 TryCatch try_catch; local
263 String::Utf8Value error(try_catch.Exception());
  /external/chromium_org/chrome/renderer/extensions/
module_system.cc 73 // Fatally dumps the debug info from |try_catch| to the console.
76 virtual void HandleUncaughtException(const v8::TryCatch& try_catch) OVERRIDE {
79 if (!try_catch.StackTrace().IsEmpty()) {
80 v8::String::Utf8Value stack_value(try_catch.StackTrace());
86 Fatal(context_, CreateExceptionString(try_catch) + "{" + stack_trace + "}");
96 const v8::TryCatch& try_catch) {
97 v8::Handle<v8::Message> message(try_catch.Message());
99 return "try_catch has no message";
175 void ModuleSystem::HandleException(const v8::TryCatch& try_catch) {
176 exception_handler_->HandleUncaughtException(try_catch);
251 v8::TryCatch try_catch; local
315 v8::TryCatch try_catch; local
387 v8::TryCatch try_catch; local
467 v8::TryCatch try_catch; local
    [all...]
  /external/chromium/net/proxy/
proxy_resolver_v8.cc 369 v8::TryCatch try_catch; local
373 if (try_catch.HasCaught()) {
374 HandleError(try_catch.Message());
513 v8::TryCatch try_catch; local
525 if (try_catch.HasCaught()) {
526 HandleError(try_catch.Message());
  /external/chromium-libpac/src/
proxy_resolver_v8.cc 388 v8::TryCatch try_catch; local
392 if (try_catch.HasCaught()) {
394 V8StringToUTF16(try_catch.Message()->Get()));
521 v8::TryCatch try_catch; local
533 if (try_catch.HasCaught()) {
534 HandleError(try_catch.Message());

Completed in 607 milliseconds

1 2