Home
last modified time | relevance | path

Searched refs:objectGroup (Results 1 – 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/inspector/
DInspectorRuntimeAgent.cpp52 …rrorString* errorString, const String& expression, const String* const objectGroup, const bool* co… in evaluate() argument
56 …injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", includeCommandLi… in evaluate()
89 void InspectorRuntimeAgent::releaseObjectGroup(ErrorString*, const String& objectGroup) in releaseObjectGroup() argument
91 m_injectedScriptManager->releaseObjectGroup(objectGroup); in releaseObjectGroup()
DInjectedScript.cpp57 …uate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCo… in evaluate() argument
61 function.appendArgument(objectGroup); in evaluate()
74 …ng, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCo… in evaluateOnCallFrame() argument
79 function.appendArgument(objectGroup); in evaluateOnCallFrame()
177 void InjectedScript::releaseObjectGroup(const String& objectGroup) in releaseObjectGroup() argument
181 releaseFunction.appendArgument(objectGroup); in releaseObjectGroup()
DInspectorRuntimeAgent.h55 …void evaluate(ErrorString*, const String& expression, const String* const objectGroup, const bool*…
60 void releaseObjectGroup(ErrorString*, const String& objectGroup);
DInjectedScriptSource.js243 evaluate: function(expression, objectGroup, injectCommandLineAPI) argument
245 …return this._evaluateAndWrap(inspectedWindow.eval, inspectedWindow, expression, objectGroup, false…
256 …ression + "}).call(window.console._objectToEvaluateOn)", parsedObjectId.objectGroup, false, false);
262 …_evaluateAndWrap: function(evalFunction, object, expression, objectGroup, isEvalOnCallFrame, injec… argument
265 …valuateOn(evalFunction, object, expression, isEvalOnCallFrame, injectCommandLineAPI), objectGroup);
311 evaluateOnCallFrame: function(callFrameId, expression, objectGroup, injectCommandLineAPI) argument
316 …return this._evaluateAndWrap(callFrame.evaluate, callFrame, expression, objectGroup, true, injectC…
DInjectedScript.h58 …void evaluate(ErrorString*, const String& expression, const String& objectGroup, bool includeComma…
60 …g*, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCo…
DInjectedScriptManager.cpp109 void InjectedScriptManager::releaseObjectGroup(const String& objectGroup) in releaseObjectGroup() argument
112 it->second.releaseObjectGroup(objectGroup); in releaseObjectGroup()
DInjectedScriptManager.h62 void releaseObjectGroup(const String& objectGroup);
DInspectorDebuggerAgent.cpp354 …nst String& callFrameId, const String& expression, const String* const objectGroup, const bool* co… in evaluateOnCallFrame() argument
358 …ript.evaluateOnCallFrame(errorString, callFrameId, expression, objectGroup ? *objectGroup : "", in… in evaluateOnCallFrame()
DInspectorDebuggerAgent.h99 …nst String& callFrameId, const String& expression, const String* const objectGroup, const bool* co…
/external/webkit/Source/WebCore/inspector/front-end/
DDebuggerPresentationModel.js697 evaluate: function(code, objectGroup, includeCommandLineAPI, callback) argument
703 …DebuggerAgent.evaluateOnCallFrame(this._callFrame.id, code, objectGroup, includeCommandLineAPI, di…
DConsoleView.js541 evalInInspectedWindow: function(expression, objectGroup, includeCommandLineAPI, callback) argument
544 …WebInspector.panels.scripts.evaluateInSelectedCallFrame(expression, objectGroup, includeCommandLin…
558 RuntimeAgent.evaluate(expression, objectGroup, includeCommandLineAPI, evalCallback);
DScriptsPanel.js355 evaluateInSelectedCallFrame: function(code, objectGroup, includeCommandLineAPI, callback) argument
358 selectedCallFrame.evaluate(code, objectGroup, includeCommandLineAPI, callback);