Searched defs:calling (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome/renderer/extensions/
H A Dchrome_v8_context_set.cc70 v8::Local<v8::Context> calling = isolate->GetCallingContext(); local
71 return calling.IsEmpty() ? NULL : GetByV8Context(calling);
89 // We copy the context list, because calling into javascript may modify it
/external/chromium_org/v8/test/cctest/
H A Dtest-debug.cc5578 // Function to retrieve the number of JavaScript frames by calling a JavaScript
5587 // Function to retrieve the source line of the top JavaScript frame by calling a
7146 // Set the debug break flag before calling the code using function.apply.
7167 // Property getter that checks that current and calling contexts
7176 v8::Handle<v8::Context> calling = info.GetIsolate()->GetCallingContext(); local
7177 CHECK(calling == debugee_context);
7178 CHECK(calling != debugger_context);
/external/v8/test/cctest/
H A Dtest-debug.cc5364 // Function to retrieve the number of JavaScript frames by calling a JavaScript
5374 // Function to retrieve the source line of the top JavaScript frame by calling a
6856 // Set the debug break flag before calling the code using function.apply.
6877 // Property getter that checks that current and calling contexts
6886 v8::Handle<v8::Context> calling = v8::Context::GetCalling(); local
6887 CHECK(calling == debugee_context);
6888 CHECK(calling != debugger_context);
/external/chromium_org/v8/src/
H A Dapi.cc894 // NeanderObject constructor. When you add one to the site calling the
929 // to check for a dead VM with ON_BAILOUT before calling it. To remind you
931 // site calling this method you should check that you ensured the VM was not
6557 i::Handle<i::Object> calling = isolate->GetCallingNativeContext(); local
6558 if (calling.is_null()) return Local<Context>();
6559 return Utils::ToLocal(i::Handle<i::Context>::cast(calling));
/external/v8/src/
H A Dapi.cc257 * which you sometimes can't avoid calling after the vm has crashed. Functions
817 // NeanderObject constructor. When you add one to the site calling the
852 // to check for a dead VM with ON_BAILOUT before calling it. To remind you
854 // site calling this method you should check that you ensured the VM was not
4427 i::Handle<i::Object> calling = local
4429 if (calling.is_null()) return Local<Context>();
4430 i::Handle<i::Context> context = i::Handle<i::Context>::cast(calling);

Completed in 5539 milliseconds