Searched defs:try_catch (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CustomXPathNSResolver.cpp76 v8::TryCatch try_catch; local
77 try_catch.SetVerbose(true); // Print exceptions to console.
86 if (try_catch.HasCaught())
H A DV8HTMLOptionsCollectionCustom.cpp70 v8::TryCatch try_catch; local
73 if (try_catch.HasCaught())
/external/v8/test/cctest/
H A Dtest-thread-termination.cc67 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
269 v8::TryCatch try_catch; local
318 v8::TryCatch try_catch; local
[all...]
H A Dtest-debug.cc246 v8::TryCatch try_catch; local
249 CHECK(!try_catch.HasCaught());
273 v8::TryCatch try_catch; local
276 CHECK(!try_catch.HasCaught());
H A Dtest-api.cc185 v8::TryCatch try_catch; local
191 CHECK(try_catch.HasCaught());
192 try_catch.Reset();
201 CHECK(try_catch.HasCaught());
1981 v8::TryCatch try_catch; local
1984 CHECK(try_catch.HasCaught());
1985 String::AsciiValue exception_value(try_catch.Exception());
2350 static void CheckUncle(v8::TryCatch* try_catch) { argument
2351 CHECK(try_catch->HasCaught());
2352 String::AsciiValue str_value(try_catch
2456 v8::TryCatch try_catch; local
2510 v8::TryCatch try_catch; local
2541 v8::TryCatch try_catch; local
2656 v8::TryCatch try_catch; local
2671 v8::TryCatch try_catch; local
2688 v8::TryCatch try_catch; local
2715 v8::TryCatch try_catch; local
2751 v8::TryCatch try_catch; local
2876 v8::TryCatch try_catch; local
2892 v8::TryCatch try_catch; local
2902 v8::TryCatch try_catch; local
2911 v8::TryCatch try_catch; local
2922 v8::TryCatch try_catch; local
3037 v8::TryCatch try_catch; local
3083 v8::TryCatch try_catch; local
3201 v8::TryCatch try_catch; local
3210 v8::TryCatch try_catch; local
5120 v8::TryCatch try_catch; local
5130 v8::TryCatch try_catch; local
5245 v8::TryCatch try_catch; local
5471 v8::TryCatch try_catch; local
6704 v8::TryCatch try_catch; local
6724 v8::TryCatch try_catch; local
6795 v8::TryCatch try_catch; local
6838 v8::TryCatch try_catch; local
6970 v8::TryCatch try_catch; local
8104 v8::TryCatch try_catch; local
8143 v8::TryCatch try_catch; local
8258 v8::TryCatch try_catch; local
8627 TryCatch try_catch; local
8662 TryCatch try_catch; local
8678 TryCatch try_catch; local
9040 { v8::TryCatch try_catch; local
9388 v8::TryCatch try_catch; local
9404 v8::TryCatch try_catch; local
9931 v8::TryCatch try_catch; local
12027 v8::TryCatch try_catch; local
12384 v8::TryCatch try_catch; local
12471 v8::TryCatch try_catch; local
12557 v8::TryCatch try_catch; local
13730 v8::TryCatch try_catch; local
[all...]
/external/v8/samples/
H A Dlineprocessor.cc241 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) { argument
362 v8::String::Utf8Value exception(try_catch
[all...]
H A Dprocess.cc200 TryCatch try_catch; local
205 String::Utf8Value error(try_catch.Exception());
215 String::Utf8Value error(try_catch.Exception());
253 TryCatch try_catch; local
261 String::Utf8Value error(try_catch.Exception());
H A Dshell.cc569 v8::TryCatch try_catch; local
574 ReportException(&try_catch);
579 assert(try_catch.HasCaught());
582 ReportException(&try_catch);
585 assert(!try_catch.HasCaught());
599 void ReportException(v8::TryCatch* try_catch) { argument
601 v8::String::Utf8Value exception(try_catch->Exception());
603 v8::Handle<v8::Message> message = try_catch->Message();
628 v8::String::Utf8Value stack_trace(try_catch->StackTrace());
/external/v8/src/
H A Dd8-debug.cc63 TryCatch try_catch; local
70 if (try_catch.HasCaught()) {
71 Shell::ReportException(&try_catch);
78 if (try_catch.HasCaught()) {
79 Shell::ReportException(&try_catch);
94 if (try_catch.HasCaught()) {
95 Shell::ReportException(&try_catch);
110 TryCatch try_catch; local
115 if (try_catch.HasCaught()) {
116 Shell::ReportException(&try_catch);
278 TryCatch try_catch; local
306 TryCatch try_catch; local
[all...]
H A Dd8.cc118 TryCatch try_catch; local
121 try_catch.SetVerbose(true);
127 ReportException(&try_catch);
132 ASSERT(try_catch.HasCaught());
135 ReportException(&try_catch);
138 ASSERT(!try_catch.HasCaught());
240 void Shell::ReportException(v8::TryCatch* try_catch) { argument
242 v8::String::Utf8Value exception(try_catch->Exception());
244 Handle<Message> message = try_catch->Message();
H A Ddebug.cc2517 v8::TryCatch try_catch; local
2534 if (try_catch.HasCaught()) {
2535 PrintLn(try_catch.Exception());
2570 v8::TryCatch try_catch; local
2582 if (!try_catch.HasCaught()) {
2602 if (!try_catch.HasCaught()) {
2607 response = try_catch.Exception()->ToString();
H A Dapi.cc2585 TryCatch try_catch; local
4708 TryCatch try_catch; local
4736 TryCatch try_catch; local
4764 TryCatch try_catch; local
/external/chromium/net/proxy/
H A Dproxy_resolver_v8.cc369 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());

Completed in 866 milliseconds