• Home
  • Raw
  • Download

Lines Matching refs:commandLineAPI

672   v8::Local<v8::Object> commandLineAPI = v8::Object::New(isolate);  in createCommandLineAPI()  local
674 commandLineAPI->SetPrototype(context, v8::Null(isolate)).FromMaybe(false); in createCommandLineAPI()
682 createBoundFunctionProperty(context, commandLineAPI, data, "dir", in createCommandLineAPI()
685 createBoundFunctionProperty(context, commandLineAPI, data, "dirxml", in createCommandLineAPI()
688 createBoundFunctionProperty(context, commandLineAPI, data, "profile", in createCommandLineAPI()
692 context, commandLineAPI, data, "profileEnd", in createCommandLineAPI()
695 createBoundFunctionProperty(context, commandLineAPI, data, "clear", in createCommandLineAPI()
699 context, commandLineAPI, data, "table", in createCommandLineAPI()
703 createBoundFunctionProperty(context, commandLineAPI, data, "keys", in createCommandLineAPI()
707 createBoundFunctionProperty(context, commandLineAPI, data, "values", in createCommandLineAPI()
712 context, commandLineAPI, data, "debug", in createCommandLineAPI()
716 context, commandLineAPI, data, "undebug", in createCommandLineAPI()
720 context, commandLineAPI, data, "monitor", in createCommandLineAPI()
724 context, commandLineAPI, data, "unmonitor", in createCommandLineAPI()
728 context, commandLineAPI, data, "inspect", in createCommandLineAPI()
731 createBoundFunctionProperty(context, commandLineAPI, data, "copy", in createCommandLineAPI()
735 context, commandLineAPI, data, "queryObjects", in createCommandLineAPI()
739 context, commandLineAPI, data, "$_", in createCommandLineAPI()
742 createBoundFunctionProperty(context, commandLineAPI, data, "$0", in createCommandLineAPI()
745 createBoundFunctionProperty(context, commandLineAPI, data, "$1", in createCommandLineAPI()
748 createBoundFunctionProperty(context, commandLineAPI, data, "$2", in createCommandLineAPI()
751 createBoundFunctionProperty(context, commandLineAPI, data, "$3", in createCommandLineAPI()
754 createBoundFunctionProperty(context, commandLineAPI, data, "$4", in createCommandLineAPI()
759 commandLineAPI); in createCommandLineAPI()
760 return commandLineAPI; in createCommandLineAPI()
783 v8::Local<v8::Object> commandLineAPI = scope->m_commandLineAPI; in accessorGetterCallback() local
786 if (!commandLineAPI->Get(context, name).ToLocal(&value)) return; in accessorGetterCallback()
793 ->Call(context, commandLineAPI, 0, nullptr) in accessorGetterCallback()
817 v8::Local<v8::Context> context, v8::Local<v8::Object> commandLineAPI, in CommandLineAPIScope() argument
820 m_commandLineAPI(commandLineAPI), in CommandLineAPIScope()