OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:trycatch
(Results
1 - 25
of
120
) sorted by null
1
2
3
4
5
/external/chromium_org/gin/
try_catch.h
16
//
TryCatch
is a convenient wrapper around v8::
TryCatch
.
17
class GIN_EXPORT
TryCatch
{
19
TryCatch
();
20
~
TryCatch
();
26
v8::
TryCatch
try_catch_;
28
DISALLOW_COPY_AND_ASSIGN(
TryCatch
);
try_catch.cc
13
TryCatch
::
TryCatch
() {
16
TryCatch
::~
TryCatch
() {
19
bool
TryCatch
::HasCaught() {
23
std::string
TryCatch
::GetStackTrace() {
runner.cc
39
void RunnerDelegate::UnhandledException(Runner* runner,
TryCatch
& try_catch) {
67
TryCatch
try_catch;
81
TryCatch
try_catch;
runner.h
17
class
TryCatch
;
32
virtual void UnhandledException(Runner* runner,
TryCatch
& try_catch);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptPreprocessor.cpp
46
v8::
TryCatch
tryCatch
;
47
tryCatch
.SetVerbose(true);
101
v8::
TryCatch
tryCatch
;
102
tryCatch
.SetVerbose(true);
V8BindingMacros.h
39
v8::
TryCatch
block; \
48
v8::
TryCatch
block; \
59
v8::
TryCatch
block; \
72
v8::
TryCatch
block; \
V8AbstractEventListener.cpp
118
v8::
TryCatch
tryCatch
;
119
tryCatch
.SetVerbose(true);
123
tryCatch
.Reset();
127
tryCatch
.Reset();
130
if (
tryCatch
.HasCaught())
133
if (!
tryCatch
.CanContinue()) { // Result of TerminateExecution().
138
tryCatch
.Reset();
145
tryCatch
.Reset();
ScriptRegexp.cpp
51
v8::
TryCatch
tryCatch
;
75
v8::
TryCatch
tryCatch
;
ScriptDebugServer.cpp
272
v8::
TryCatch
tryCatch
;
273
tryCatch
.SetVerbose(false);
275
if (
tryCatch
.HasCaught()) {
276
v8::Local<v8::Message> message =
tryCatch
.Message();
572
v8::
TryCatch
tryCatch
;
574
if (
tryCatch
.HasCaught()) {
575
v8::Local<v8::Message> message =
tryCatch
.Message();
607
v8::
TryCatch
tryCatch
[
all
...]
ScriptScope.h
50
v8::
TryCatch
m_exceptionCatcher;
V8ErrorHandler.cpp
74
v8::
TryCatch
tryCatch
;
75
tryCatch
.SetVerbose(true);
V8CustomElementLifecycleCallbacks.cpp
185
v8::
TryCatch
exceptionCatcher;
226
v8::
TryCatch
exceptionCatcher;
251
v8::
TryCatch
exceptionCatcher;
/external/chromium_org/gin/test/
file_runner.h
27
virtual void UnhandledException(Runner* runner,
TryCatch
& try_catch) OVERRIDE;
file_runner.cc
42
TryCatch
& try_catch) {
/external/chromium_org/mojo/apps/js/
mojo_runner_delegate.h
25
gin::
TryCatch
& try_catch) OVERRIDE;
mojo_runner_delegate.cc
69
gin::
TryCatch
& try_catch) {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CustomXPathNSResolver.cpp
81
v8::
TryCatch
tryCatch
;
82
tryCatch
.SetVerbose(true); // Print exceptions to console.
91
if (
tryCatch
.HasCaught())
/external/chromium_org/content/renderer/pepper/
npapi_glue.cc
335
//
TryCatch
--------------------------------------------------------------------
337
TryCatch
::
TryCatch
(PP_Var* exception)
340
WebBindings::pushExceptionHandler(&
TryCatch
::Catch, this);
343
TryCatch
::~
TryCatch
() {
347
void
TryCatch
::SetException(const char* message) {
357
void
TryCatch
::Catch(void* self, const char* message) {
358
static_cast<
TryCatch
*>(self)->SetException(message);
ppb_var_deprecated_impl.cc
99
// Automatically sets up a
TryCatch
for accessing the object identified by the
101
// strings generated by the
TryCatch
.
107
// that the
TryCatch
's pp_module() getter is also set up properly and ready to
109
class ObjectAccessorTryCatch : public
TryCatch
{
112
:
TryCatch
(exception),
133
// Automatically sets up a
TryCatch
for accessing the identifier on the given
141
// use (via the identifier() getter), and that the
TryCatch
's pp_module() getter
npapi_glue.h
229
//
TryCatch
--------------------------------------------------------------------
233
class
TryCatch
{
237
// exception is thrown (so it must outlive the
TryCatch
object).
238
TryCatch
(PP_Var* exception);
239
~
TryCatch
();
/external/chromium_org/chrome/test/base/
v8_unit_test.h
45
// Converts the v8::
TryCatch
|try_catch| into a human readable string.
46
virtual std::string ExceptionToString(const v8::
TryCatch
& try_catch);
/external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsFrontendImpl.cpp
164
v8::
TryCatch
tryCatch
;
165
tryCatch
.SetVerbose(true);
/external/chromium_org/chrome/renderer/extensions/
module_system.h
53
virtual void HandleUncaughtException(const v8::
TryCatch
& try_catch) = 0;
57
std::string CreateExceptionString(const v8::
TryCatch
& try_catch);
157
void HandleException(const v8::
TryCatch
& try_catch);
/external/antlr/antlr-3.4/runtime/JavaScript/third/
antcontrib.properties
10
trycatch
=net.sf.antcontrib.logic.TryCatchTask
/external/chromium_org/gin/shell/
gin_main.cc
47
TryCatch
& try_catch) OVERRIDE {
Completed in 335 milliseconds
1
2
3
4
5