Searched defs:objectGroup (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptCanvasModule.cpp191 void InjectedScriptCanvasModule::evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String& objectGroup, RefPtr<RemoteObject>* result, RefPtr<ResourceState>* resourceState) argument
197 function.appendArgument(objectGroup);
H A DInjectedScriptManager.cpp150 void InjectedScriptManager::releaseObjectGroup(const String& objectGroup) argument
157 s->value.releaseObjectGroup(objectGroup); // m_idToInjectedScript may change here.
H A DInspectorRuntimeAgent.cpp69 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) argument
80 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
141 void InspectorRuntimeAgent::releaseObjectGroup(ErrorString*, const String& objectGroup) argument
143 m_injectedScriptManager->releaseObjectGroup(objectGroup);
H A DInjectedScript.cpp60 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) argument
64 function.appendArgument(objectGroup);
82 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown) argument
88 function.appendArgument(objectGroup);
323 void InjectedScript::releaseObjectGroup(const String& objectGroup) argument
327 releaseFunction.appendArgument(objectGroup);
H A DInspectorCanvasAgent.cpp184 void InspectorCanvasAgent::evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String* objectGroup, RefPtr<RemoteObject>& result, RefPtr<ResourceState>& resourceState) argument
188 module.evaluateTraceLogCallArgument(errorString, traceLogId, callIndex, argumentIndex, objectGroup ? *objectGroup : String(), &result, &resourceState);
H A DInspectorHeapProfilerAgent.cpp288 void InspectorHeapProfilerAgent::getObjectByHeapObjectId(ErrorString* error, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) argument
306 result = injectedScript.wrapObject(heapObject, objectGroup ? *objectGroup : "");
H A DInspectorDebuggerAgent.cpp806 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) argument
825 injectedScript.evaluateOnCallFrame(errorString, m_currentCallStack, callFrameId, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, returnByValue ? *returnByValue : false, generatePreview ? *generatePreview : false, &result, wasThrown);
853 void InspectorDebuggerAgent::runScript(ErrorString* errorString, const ScriptId& scriptId, const int* executionContextId, const String* const objectGroup, const bool* const doNotPauseOnExceptionsAndMuteConsole, RefPtr<RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) argument
877 result = injectedScript.wrapObject(value, objectGroup ? *objectGroup : "");
H A DInspectorDOMAgent.cpp850 void InspectorDOMAgent::getEventListenersForNode(ErrorString* errorString, int nodeId, const String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray) argument
867 listenersArray->addItem(buildObjectForEventListener(listener, info.eventType, info.node, objectGroup));
878 listenersArray->addItem(buildObjectForEventListener(listener, info.eventType, info.node, objectGroup));
1387 void InspectorDOMAgent::resolveNode(ErrorString* errorString, int nodeId, const String* const objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) argument
1389 String objectGroupName = objectGroup ? *objectGroup : "";
2013 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InspectorDOMAgent::resolveNode(Node* node, const String& objectGroup) argument
2024 return injectedScript.wrapNode(node, objectGroup);

Completed in 290 milliseconds