Lines Matching defs:commandLineAPI
857 v8::Local<v8::Object> commandLineAPI = v8::Object::New(isolate);
859 commandLineAPI->SetPrototype(context, v8::Null(isolate)).FromMaybe(false);
867 createBoundFunctionProperty(context, commandLineAPI, data, "dir",
869 createBoundFunctionProperty(context, commandLineAPI, data, "dirxml",
871 createBoundFunctionProperty(context, commandLineAPI, data, "profile",
873 createBoundFunctionProperty(context, commandLineAPI, data, "profileEnd",
875 createBoundFunctionProperty(context, commandLineAPI, data, "clear",
877 createBoundFunctionProperty(context, commandLineAPI, data, "table",
880 createBoundFunctionProperty(context, commandLineAPI, data, "keys",
883 createBoundFunctionProperty(context, commandLineAPI, data, "values",
887 context, commandLineAPI, data, "debug",
890 context, commandLineAPI, data, "undebug",
893 context, commandLineAPI, data, "monitor",
896 context, commandLineAPI, data, "unmonitor",
898 createBoundFunctionProperty(context, commandLineAPI, data, "inspect",
900 createBoundFunctionProperty(context, commandLineAPI, data, "copy",
903 context, commandLineAPI, data, "queryObjects",
906 context, commandLineAPI, data, "$_",
909 createBoundFunctionProperty(context, commandLineAPI, data, "$0",
912 createBoundFunctionProperty(context, commandLineAPI, data, "$1",
915 createBoundFunctionProperty(context, commandLineAPI, data, "$2",
918 createBoundFunctionProperty(context, commandLineAPI, data, "$3",
921 createBoundFunctionProperty(context, commandLineAPI, data, "$4",
926 commandLineAPI);
927 return commandLineAPI;
946 v8::Local<v8::Object> commandLineAPI = scope->m_commandLineAPI;
949 if (!commandLineAPI->Get(context, name).ToLocal(&value)) return;
956 ->Call(context, commandLineAPI, 0, nullptr)
978 v8::Local<v8::Context> context, v8::Local<v8::Object> commandLineAPI,
981 m_commandLineAPI(commandLineAPI),