Searched refs:includeCommandLineAPI (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/inspector/
H A DInspectorRuntimeAgent.cpp52 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result) argument
56 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, result);
H A DInjectedScript.h58 void evaluate(ErrorString*, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result);
60 void evaluateOnCallFrame(ErrorString*, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result);
H A DInjectedScript.cpp57 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result) argument
62 function.appendArgument(includeCommandLineAPI);
74 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result) argument
80 function.appendArgument(includeCommandLineAPI);
H A DInspectorRuntimeAgent.h55 void evaluate(ErrorString*, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result);
H A DInspectorDebuggerAgent.cpp354 void InspectorDebuggerAgent::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result) argument
358 injectedScript.evaluateOnCallFrame(errorString, callFrameId, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, result);
H A DInspectorDebuggerAgent.h99 void evaluateOnCallFrame(ErrorString*, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result);
/external/webkit/Source/WebCore/inspector/front-end/
H A DConsoleView.js387 var includeCommandLineAPI = (!dotNotation && !bracketNotation);
388 if (includeCommandLineAPI) {
541 evalInInspectedWindow: function(expression, objectGroup, includeCommandLineAPI, callback)
544 WebInspector.panels.scripts.evaluateInSelectedCallFrame(expression, objectGroup, includeCommandLineAPI, callback);
558 RuntimeAgent.evaluate(expression, objectGroup, includeCommandLineAPI, evalCallback);
H A DDebuggerPresentationModel.js697 evaluate: function(code, objectGroup, includeCommandLineAPI, callback)
703 DebuggerAgent.evaluateOnCallFrame(this._callFrame.id, code, objectGroup, includeCommandLineAPI, didEvaluateOnCallFrame.bind(this));
H A DScriptsPanel.js355 evaluateInSelectedCallFrame: function(code, objectGroup, includeCommandLineAPI, callback)
358 selectedCallFrame.evaluate(code, objectGroup, includeCommandLineAPI, callback);

Completed in 106 milliseconds