Searched refs:objectGroup (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorRuntimeAgent.cpp78 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const int* executionContextId, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>& exceptionDetails) argument
89 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown, &exceptionDetails);
155 void InspectorRuntimeAgent::releaseObjectGroup(ErrorString*, const String& objectGroup) argument
160 m_injectedScriptManager->releaseObjectGroup(objectGroup);
H A DInspectorRuntimeAgent.h61 const String* objectGroup,
81 virtual void releaseObjectGroup(ErrorString*, const String& objectGroup) OVERRIDE FINAL;
H A DInjectedScriptManager.h80 void releaseObjectGroup(const String& objectGroup);
H A DInspectorHeapProfilerAgent.h72 virtual void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) OVERRIDE;
H A DInjectedScript.cpp61 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails) argument
65 function.appendArgument(objectGroup);
83 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const Vector<ScriptValue>& asyncCallStacks, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails) argument
90 function.appendArgument(objectGroup);
325 void InjectedScript::releaseObjectGroup(const String& objectGroup) argument
329 releaseFunction.appendArgument(objectGroup);
H A DInjectedScript.h56 const String& objectGroup,
78 const String& objectGroup,
H A DInjectedScriptManager.cpp160 void InjectedScriptManager::releaseObjectGroup(const String& objectGroup) argument
167 s->value.releaseObjectGroup(objectGroup); // m_idToInjectedScript may change here.
H A DInjectedScriptSource.js601 * @param {string} objectGroup
607 evaluate: function(expression, objectGroup, injectCommandLineAPI, returnByValue, generatePreview)
609 return this._evaluateAndWrap(null, null, expression, objectGroup, false, injectCommandLineAPI, returnByValue, generatePreview);
639 var objectGroup = this._idToObjectGroupName[parsedObjectId.id];
645 result: this._wrapObject(InjectedScriptHost.callFunction(func, object, resolvedArgs), objectGroup, returnByValue),
648 return this._createThrownValue(e, objectGroup, false);
685 * @param {string} objectGroup
693 _evaluateAndWrap: function(evalFunction, object, expression, objectGroup, isEvalOnCallFrame, injectCommandLineAPI, returnByValue, generatePreview, scopeChain)
695 var wrappedResult = this._evaluateOn(evalFunction, object, objectGroup, expression, isEvalOnCallFrame, injectCommandLineAPI, scopeChain);
698 result: this._wrapObject(wrappedResult.result, objectGroup, returnByValu
[all...]
H A DInspectorHeapProfilerAgent.cpp281 void InspectorHeapProfilerAgent::getObjectByHeapObjectId(ErrorString* error, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) argument
299 result = injectedScript.wrapObject(heapObject, objectGroup ? *objectGroup : "");
H A DInspectorCanvasAgent.cpp190 void InspectorCanvasAgent::evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String* objectGroup, RefPtr<RemoteObject>& result, RefPtr<ResourceState>& resourceState) argument
194 module.evaluateTraceLogCallArgument(errorString, traceLogId, callIndex, argumentIndex, objectGroup ? *objectGroup : String(), &result, &resourceState);
H A DInjectedScriptCanvasModule.cpp193 void InjectedScriptCanvasModule::evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String& objectGroup, RefPtr<RemoteObject>* result, RefPtr<ResourceState>* resourceState) argument
199 function.appendArgument(objectGroup);
H A DInspectorDOMAgent.h130 virtual void getEventListenersForNode(ErrorString*, int nodeId, const WTF::String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray) OVERRIDE;
134 virtual void resolveNode(ErrorString*, int nodeId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) OVERRIDE;
196 PassRefPtr<TypeBuilder::Runtime::RemoteObject> resolveNode(Node*, const String& objectGroup);
H A DInspectorDebuggerAgent.h135 const String* objectGroup,
144 virtual void runScript(ErrorString*, const TypeBuilder::Debugger::ScriptId&, const int* executionContextId, const String* objectGroup, const bool* doNotPauseOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, RefPtr<TypeBuilder::Debugger::ExceptionDetails>&) OVERRIDE;
152 virtual void getPromiseById(ErrorString*, int promiseId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& promise) OVERRIDE FINAL;
H A DInspectorDebuggerAgent.cpp1025 void InspectorDebuggerAgent::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>& exceptionDetails) argument
1054 injectedScript.evaluateOnCallFrame(errorString, m_currentCallStack, asyncCallStacks, callFrameId, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown, &exceptionDetails);
1095 void InspectorDebuggerAgent::runScript(ErrorString* errorString, const ScriptId& scriptId, const int* executionContextId, const String* const objectGroup, const bool* const doNotPauseOnExceptionsAndMuteConsole, RefPtr<RemoteObject>& result, RefPtr<ExceptionDetails>& exceptionDetails) argument
1121 result = injectedScript.wrapObject(value, objectGroup ? *objectGroup : "");
1213 void InspectorDebuggerAgent::getPromiseById(ErrorString* errorString, int promiseId, const String* objectGroup, RefPtr<RemoteObject>& promise) argument
1225 promise = injectedScript.wrapObject(value, objectGroup ? *objectGroup : "");
H A DInjectedScriptCanvasModuleSource.js3535 * @param {string=} objectGroup
3538 formatCall: function(replayableCall, objectGroup)
3547 result.arguments.push(this.formatValue(args[i], objectGroup));
3549 result.result = this.formatValue(replayableCall.result(), objectGroup);
3554 result.value = this.formatValue(replayableCall.propertyValue(), objectGroup);
3561 * @param {string=} objectGroup
3564 formatValue: function(value, objectGroup)
3573 var remoteObject = injectedScript.wrapObject(value, objectGroup || "", true, false);
3583 if (objectGroup)
3612 * @param {string=} objectGroup
[all...]
H A DInspectorDOMAgent.cpp898 void InspectorDOMAgent::getEventListenersForNode(ErrorString* errorString, int nodeId, const String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray) argument
915 RefPtr<TypeBuilder::DOM::EventListener> listenerObject = buildObjectForEventListener(listener, info.eventType, info.eventTarget->toNode(), objectGroup);
929 RefPtr<TypeBuilder::DOM::EventListener> listenerObject = buildObjectForEventListener(listener, info.eventType, info.eventTarget->toNode(), objectGroup);
1507 void InspectorDOMAgent::resolveNode(ErrorString* errorString, int nodeId, const String* const objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) argument
1509 String objectGroupName = objectGroup ? *objectGroup : "";
2168 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InspectorDOMAgent::resolveNode(Node* node, const String& objectGroup) argument
2179 return injectedScript.wrapNode(node, objectGroup);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DRuntimeModel.js203 * @param {string} objectGroup
210 evaluate: function(expression, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback)
214 this._debuggerModel.evaluateOnSelectedCallFrame(expression, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback);
242 this.target().runtimeAgent().evaluate(expression, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, this.id, returnByValue, generatePreview, evalCallback.bind(this));
H A DDebuggerModel.js593 * @param {string} objectGroup
600 evaluateOnSelectedCallFrame: function(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback)
617 if (objectGroup === "console")
621 this.selectedCallFrame().evaluate(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, didEvaluate.bind(this));
992 * @param {string} objectGroup
999 evaluate: function(code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, callback)
1016 this._debuggerAgent.evaluateOnCallFrame(this._payload.callFrameId, code, objectGroup, includeCommandLineAPI, doNotPauseOnExceptionsAndMuteConsole, returnByValue, generatePreview, didEvaluateOnCallFrame);
H A DDOMModel.js842 * @param {string=} objectGroup
845 resolveToObject: function(objectGroup, callback)
847 this._agent.resolveNode(this.id, objectGroup, mycallback.bind(this));

Completed in 7334 milliseconds