HomeSort by relevance Sort by last modified time
    Searched defs:TryCatch (Results 1 - 7 of 7) sorted by null

  /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() {
  /external/chromium_org/content/renderer/pepper/
npapi_glue.h 227 // TryCatch --------------------------------------------------------------------
231 class TryCatch {
235 // exception is thrown (so it must outlive the TryCatch object).
236 TryCatch(PP_Var* exception);
237 ~TryCatch();
npapi_glue.cc 332 // TryCatch --------------------------------------------------------------------
334 TryCatch::TryCatch(PP_Var* exception)
337 WebBindings::pushExceptionHandler(&TryCatch::Catch, this);
340 TryCatch::~TryCatch() { WebBindings::popExceptionHandler(); }
342 void TryCatch::SetException(const char* message) {
354 void TryCatch::Catch(void* self, const char* message) {
355 static_cast<TryCatch*>(self)->SetException(message);
  /external/chromium_org/v8/src/
full-codegen.h 224 class TryCatch : public NestedStatement {
226 explicit TryCatch(FullCodeGenerator* codegen) : NestedStatement(codegen) {
228 virtual ~TryCatch() {}
    [all...]
api.cc     [all...]
  /external/chromium_org/v8/include/
v8.h     [all...]

Completed in 148 milliseconds