Home
last modified time | relevance | path

Searched refs:commandLineAPI (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/inspector/
Dv8-console.cc779 v8::Local<v8::Object> commandLineAPI = v8::Object::New(isolate); in createCommandLineAPI() local
781 commandLineAPI->SetPrototype(context, v8::Null(isolate)).FromMaybe(false); in createCommandLineAPI()
785 createBoundFunctionProperty(context, commandLineAPI, "dir", in createCommandLineAPI()
788 createBoundFunctionProperty(context, commandLineAPI, "dirxml", in createCommandLineAPI()
791 createBoundFunctionProperty(context, commandLineAPI, "profile", in createCommandLineAPI()
795 context, commandLineAPI, "profileEnd", V8Console::profileEndCallback, in createCommandLineAPI()
797 createBoundFunctionProperty(context, commandLineAPI, "clear", in createCommandLineAPI()
801 context, commandLineAPI, "table", V8Console::tableCallback, in createCommandLineAPI()
804 createBoundFunctionProperty(context, commandLineAPI, "keys", in createCommandLineAPI()
807 createBoundFunctionProperty(context, commandLineAPI, "values", in createCommandLineAPI()
[all …]
Dv8-console.h29 v8::Local<v8::Object> commandLineAPI,
Dinjected-script.h186 v8::Local<v8::Object> commandLineAPI();
Dinjected-script.cc408 v8::Local<v8::Object> InjectedScript::commandLineAPI() { in commandLineAPI() function in v8_inspector::InjectedScript
443 m_context, m_injectedScript->commandLineAPI(), m_context->Global())); in installCommandLineAPI()