/external/webkit/Source/WebCore/inspector/ |
D | TimelineRecordFactory.cpp | 46 PassRefPtr<InspectorObject> TimelineRecordFactory::createGenericRecord(double startTime) in createGenericRecord() 48 RefPtr<InspectorObject> record = InspectorObject::create(); in createGenericRecord() 57 PassRefPtr<InspectorObject> TimelineRecordFactory::createGCEventData(const size_t usedHeapSizeDelta) in createGCEventData() 59 RefPtr<InspectorObject> data = InspectorObject::create(); in createGCEventData() 64 PassRefPtr<InspectorObject> TimelineRecordFactory::createFunctionCallData(const String& scriptName,… in createFunctionCallData() 66 RefPtr<InspectorObject> data = InspectorObject::create(); in createFunctionCallData() 72 PassRefPtr<InspectorObject> TimelineRecordFactory::createEventDispatchData(const Event& event) in createEventDispatchData() 74 RefPtr<InspectorObject> data = InspectorObject::create(); in createEventDispatchData() 79 PassRefPtr<InspectorObject> TimelineRecordFactory::createGenericTimerData(int timerId) in createGenericTimerData() 81 RefPtr<InspectorObject> data = InspectorObject::create(); in createGenericTimerData() [all …]
|
D | TimelineRecordFactory.h | 40 class InspectorObject; variable 47 static PassRefPtr<InspectorObject> createGenericRecord(double startTime); 49 static PassRefPtr<InspectorObject> createGCEventData(const size_t usedHeapSizeDelta); 51 …static PassRefPtr<InspectorObject> createFunctionCallData(const String& scriptName, int scriptLine… 53 static PassRefPtr<InspectorObject> createEventDispatchData(const Event&); 55 static PassRefPtr<InspectorObject> createGenericTimerData(int timerId); 57 …static PassRefPtr<InspectorObject> createTimerInstallData(int timerId, int timeout, bool singleSho… 59 …static PassRefPtr<InspectorObject> createXHRReadyStateChangeData(const String& url, int readyState… 61 static PassRefPtr<InspectorObject> createXHRLoadData(const String& url); 63 … static PassRefPtr<InspectorObject> createEvaluateScriptData(const String&, double lineNumber); [all …]
|
D | InspectorValues.h | 47 class InspectorObject; variable 80 virtual bool asObject(RefPtr<InspectorObject>* output); 82 virtual PassRefPtr<InspectorObject> asObject(); 158 class InspectorObject : public InspectorValue { 167 static PassRefPtr<InspectorObject> create() in create() 169 return adoptRef(new InspectorObject()); in create() 171 ~InspectorObject(); 173 virtual bool asObject(RefPtr<InspectorObject>* output); 174 virtual PassRefPtr<InspectorObject> asObject(); 180 void setObject(const String& name, PassRefPtr<InspectorObject>); [all …]
|
D | InspectorResourceAgent.cpp | 192 static PassRefPtr<InspectorObject> buildObjectForHeaders(const HTTPHeaderMap& headers) in buildObjectForHeaders() 194 RefPtr<InspectorObject> headersObject = InspectorObject::create(); in buildObjectForHeaders() 201 static PassRefPtr<InspectorObject> buildObjectForTiming(const ResourceLoadTiming& timing) in buildObjectForTiming() 203 RefPtr<InspectorObject> timingObject = InspectorObject::create(); in buildObjectForTiming() 219 static PassRefPtr<InspectorObject> buildObjectForResourceRequest(const ResourceRequest& request) in buildObjectForResourceRequest() 221 RefPtr<InspectorObject> requestObject = InspectorObject::create(); in buildObjectForResourceRequest() 230 static PassRefPtr<InspectorObject> buildObjectForResourceResponse(const ResourceResponse& response) in buildObjectForResourceResponse() 235 RefPtr<InspectorObject> responseObject = InspectorObject::create(); in buildObjectForResourceResponse() 288 static PassRefPtr<InspectorObject> buildObjectForCachedResource(const CachedResource& cachedResourc… in buildObjectForCachedResource() 290 RefPtr<InspectorObject> resourceObject = InspectorObject::create(); in buildObjectForCachedResource() [all …]
|
D | InspectorCSSAgent.h | 64 void getStylesForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* result); 65 void getInlineStyleForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* style); 66 void getComputedStyleForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* style); 68 void getStyleSheet(ErrorString*, const String& styleSheetId, RefPtr<InspectorObject>* result); 71 …orString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, const String& text, bool ove… 72 …roperty(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, bool disable, Ref… 73 …RuleSelector(ErrorString*, const RefPtr<InspectorObject>& ruleId, const String& selector, RefPtr<I… 74 …le(ErrorString*, const int contextNodeId, const String& selector, RefPtr<InspectorObject>* result);
|
D | InspectorBrowserDebuggerAgent.cpp | 127 …RefPtr<InspectorObject> eventListenerBreakpoints = m_inspectorState->getObject(BrowserDebuggerAgen… in setEventListenerBreakpoint() 139 …RefPtr<InspectorObject> eventListenerBreakpoints = m_inspectorState->getObject(BrowserDebuggerAgen… in removeEventListenerBreakpoint() 212 RefPtr<InspectorObject> eventData = InspectorObject::create(); in willInsertDOMNode() 227 RefPtr<InspectorObject> eventData = InspectorObject::create(); in willRemoveDOMNode() 232 RefPtr<InspectorObject> eventData = InspectorObject::create(); in willRemoveDOMNode() 246 RefPtr<InspectorObject> eventData = InspectorObject::create(); in willModifyDOMAttr() 253 …criptionForDOMEvent(Node* target, int breakpointType, bool insertion, InspectorObject* description) in descriptionForDOMEvent() 261 RefPtr<InspectorObject> targetNodeObject = m_domAgent->resolveNode(target); in descriptionForDOMEvent() 315 …RefPtr<InspectorObject> eventListenerBreakpoints = m_inspectorState->getObject(BrowserDebuggerAgen… in pauseOnNativeEventIfNeeded() 319 RefPtr<InspectorObject> eventData = InspectorObject::create(); in pauseOnNativeEventIfNeeded() [all …]
|
D | InspectorDebuggerAgent.cpp | 90 … m_inspectorState->setObject(DebuggerAgentState::javaScriptBreakpoints, InspectorObject::create()); in disable() 144 static PassRefPtr<InspectorObject> buildObjectForBreakpointCookie(const String& url, int lineNumber… in buildObjectForBreakpointCookie() 146 RefPtr<InspectorObject> breakpointObject = InspectorObject::create(); in buildObjectForBreakpointCookie() 160 …RefPtr<InspectorObject> breakpointsCookie = m_inspectorState->getObject(DebuggerAgentState::javaSc… in setBreakpointByUrl() 170 RefPtr<InspectorObject> location = resolveBreakpoint(breakpointId, it->first, breakpoint); in setBreakpointByUrl() 177 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* sourc… in parseLocation() 189 …rString, PassRefPtr<InspectorObject> location, const String* const optionalCondition, String* outB… in setBreakpoint() 213 …RefPtr<InspectorObject> breakpointsCookie = m_inspectorState->getObject(DebuggerAgentState::javaSc… in removeBreakpoint() 225 …orDebuggerAgent::continueToLocation(ErrorString* errorString, PassRefPtr<InspectorObject> location) in continueToLocation() 244 PassRefPtr<InspectorObject> InspectorDebuggerAgent::resolveBreakpoint(const String& breakpointId, c… in resolveBreakpoint() [all …]
|
D | InspectorState.cpp | 40 , m_properties(InspectorObject::create()) in InspectorState() 52 m_properties = InspectorObject::create(); in loadFromCookie() 79 InspectorObject::iterator it = m_properties->find(propertyName); in getBoolean() 88 InspectorObject::iterator it = m_properties->find(propertyName); in getString() 97 InspectorObject::iterator it = m_properties->find(propertyName); in getLong() 104 PassRefPtr<InspectorObject> InspectorState::getObject(const String& propertyName) in getObject() 106 InspectorObject::iterator it = m_properties->find(propertyName); in getObject() 108 m_properties->setObject(propertyName, InspectorObject::create()); in getObject()
|
D | InjectedScript.h | 44 class InspectorObject; variable 58 …xpression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result); 59 …n(ErrorString*, const String& objectId, const String& expression, RefPtr<InspectorObject>* result); 60 …xpression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result); 70 PassRefPtr<InspectorObject> wrapObject(ScriptValue, const String& groupName); 71 PassRefPtr<InspectorObject> wrapNode(Node*); 83 void makeObjectCall(ErrorString*, ScriptFunctionCall&, RefPtr<InspectorObject>* result);
|
D | InspectorTimelineAgent.cpp | 91 RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(i->startTime); in pushGCEventRecords() 181 pushCurrentRecord(InspectorObject::create(), TimelineRecordType::Layout); in willLayout() 191 pushCurrentRecord(InspectorObject::create(), TimelineRecordType::RecalculateStyles); in willRecalculateStyle() 226 … RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS()); in didInstallTimer() 234 … RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS()); in didRemoveTimer() 282 … RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS()); in didScheduleResourceRequest() 291 … RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS()); in willSendResourceRequest() 322 … RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS()); in didFinishLoadingResource() 332 … RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS()); in didMarkTimeline() 340 … RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS()); in didMarkDOMContentEvent() [all …]
|
D | InspectorValues.cpp | 392 RefPtr<InspectorObject> object = InspectorObject::create(); in buildValue() 520 bool InspectorValue::asObject(RefPtr<InspectorObject>*) in asObject() argument 530 PassRefPtr<InspectorObject> InspectorValue::asObject() in asObject() 640 InspectorObject::~InspectorObject() in ~InspectorObject() 644 bool InspectorObject::asObject(RefPtr<InspectorObject>* output) in asObject() 650 PassRefPtr<InspectorObject> InspectorObject::asObject() in asObject() 655 bool InspectorObject::getBoolean(const String& name, bool* output) const in getBoolean() 663 bool InspectorObject::getString(const String& name, String* output) const in getString() 671 PassRefPtr<InspectorObject> InspectorObject::getObject(const String& name) const in getObject() 679 PassRefPtr<InspectorArray> InspectorObject::getArray(const String& name) const in getArray() [all …]
|
D | InspectorApplicationCacheAgent.cpp | 76 void InspectorApplicationCacheAgent::getApplicationCaches(ErrorString*, RefPtr<InspectorObject>* ap… in getApplicationCaches() 89 PassRefPtr<InspectorObject> InspectorApplicationCacheAgent::buildObjectForApplicationCache(const Ap… in buildObjectForApplicationCache() 91 RefPtr<InspectorObject> value = InspectorObject::create(); in buildObjectForApplicationCache() 113 PassRefPtr<InspectorObject> InspectorApplicationCacheAgent::buildObjectForApplicationCacheResource(… in buildObjectForApplicationCacheResource() 115 RefPtr<InspectorObject> value = InspectorObject::create(); in buildObjectForApplicationCacheResource()
|
D | InspectorTimelineAgent.h | 126 …TimelineRecordEntry(PassRefPtr<InspectorObject> record, PassRefPtr<InspectorObject> data, PassRefP… in TimelineRecordEntry() 130 RefPtr<InspectorObject> record; 131 RefPtr<InspectorObject> data; 138 void pushCurrentRecord(PassRefPtr<InspectorObject>, const String& type); 139 void setHeapSizeStatistic(InspectorObject* record); 143 void addRecordToTimeline(PassRefPtr<InspectorObject>, const String& type);
|
D | InspectorCSSAgent.cpp | 184 …orCSSAgent::getStylesForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* result) in getStylesForNode() 190 RefPtr<InspectorObject> resultObject = InspectorObject::create(); in getStylesForNode() 210 RefPtr<InspectorObject> pseudoStyles = InspectorObject::create(); in getStylesForNode() 221 RefPtr<InspectorObject> parentStyle = InspectorObject::create(); in getStylesForNode() 239 …SAgent::getInlineStyleForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* style) in getInlineStyleForNode() 252 …gent::getComputedStyleForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* style) in getComputedStyleForNode() 278 …leSheet(ErrorString* errorString, const String& styleSheetId, RefPtr<InspectorObject>* styleSheetO… in getStyleSheet() 308 …rString, const RefPtr<InspectorObject>& fullStyleId, int propertyIndex, const String& text, bool o… in setPropertyText() 322 …tring* errorString, const RefPtr<InspectorObject>& fullStyleId, int propertyIndex, bool disable, R… in toggleProperty() 336 …rrorString* errorString, const RefPtr<InspectorObject>& fullRuleId, const String& selector, RefPtr… in setRuleSelector() [all …]
|
D | InspectorDebuggerAgent.h | 51 class InspectorObject; variable 84 …rString*, PassRefPtr<InspectorObject> location, const String* const optionalCondition, String* bre… 86 void continueToLocation(ErrorString*, PassRefPtr<InspectorObject> location); 99 …ring* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result); 127 …PassRefPtr<InspectorObject> resolveBreakpoint(const String& breakpointId, const String& sourceId, … 166 RefPtr<InspectorObject> m_breakProgramDetails;
|
D | InspectorApplicationCacheAgent.h | 41 class InspectorObject; variable 63 void getApplicationCaches(ErrorString*, RefPtr<InspectorObject>* applicationCaches); 66 …PassRefPtr<InspectorObject> buildObjectForApplicationCache(const ApplicationCacheHost::ResourceInf… 68 …PassRefPtr<InspectorObject> buildObjectForApplicationCacheResource(const ApplicationCacheHost::Res…
|
D | InjectedScript.cpp | 57 …expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result) in evaluate() 66 …ng* errorString, const String& objectId, const String& expression, RefPtr<InspectorObject>* result) in evaluateOn() 74 …expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result) in evaluateOnCallFrame() 146 PassRefPtr<InspectorObject> InjectedScript::wrapObject(ScriptValue value, const String& groupName) in wrapObject() 156 RefPtr<InspectorObject> result = InspectorObject::create(); in wrapObject() 163 PassRefPtr<InspectorObject> InjectedScript::wrapNode(Node* node) in wrapNode() 207 …tCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<InspectorObject>* objectResul… in makeObjectCall()
|
D | InspectorStyleSheet.h | 58 explicit InspectorCSSId(RefPtr<InspectorObject> value) in InspectorCSSId() 84 RefPtr<InspectorObject> result = InspectorObject::create(); in asInspectorValue() 130 PassRefPtr<InspectorObject> buildObjectForStyle() const; 144 void populateObjectWithStyleProperties(InspectorObject* result) const; 172 PassRefPtr<InspectorObject> buildObjectForStyleSheet(); 173 PassRefPtr<InspectorObject> buildObjectForStyleSheetInfo(); 174 PassRefPtr<InspectorObject> buildObjectForRule(CSSStyleRule*); 175 PassRefPtr<InspectorObject> buildObjectForStyle(CSSStyleDeclaration*);
|
D | InspectorStyleSheet.cpp | 105 static PassRefPtr<InspectorObject> buildSourceRangeObject(const SourceRange& range) in buildSourceRangeObject() 107 RefPtr<InspectorObject> result = InspectorObject::create(); in buildSourceRangeObject() 159 PassRefPtr<InspectorObject> InspectorStyle::buildObjectForStyle() const in buildObjectForStyle() 161 RefPtr<InspectorObject> result = InspectorObject::create(); in buildObjectForStyle() 459 void InspectorStyle::populateObjectWithStyleProperties(InspectorObject* result) const in populateObjectWithStyleProperties() 466 HashMap<String, RefPtr<InspectorObject> > propertyNameToPreviousActiveProperty; in populateObjectWithStyleProperties() 473 RefPtr<InspectorObject> property = InspectorObject::create(); in populateObjectWithStyleProperties() 496 …HashMap<String, RefPtr<InspectorObject> >::iterator activeIt = propertyNameToPreviousActivePropert… in populateObjectWithStyleProperties() 535 RefPtr<InspectorObject> shorthandEntry = InspectorObject::create(); in populateObjectWithStyleProperties() 728 PassRefPtr<InspectorObject> InspectorStyleSheet::buildObjectForStyleSheet() in buildObjectForStyleSheet() [all …]
|
D | ScriptCallFrame.cpp | 59 PassRefPtr<InspectorObject> ScriptCallFrame::buildInspectorObject() const in buildInspectorObject() 61 RefPtr<InspectorObject> frame = InspectorObject::create(); in buildInspectorObject()
|
D | InspectorProfilerAgent.h | 47 class InspectorObject; variable 80 …void getProfile(ErrorString* error, const String& type, unsigned uid, RefPtr<InspectorObject>* pro… 101 PassRefPtr<InspectorObject> createProfileHeader(const ScriptProfile& profile); 102 PassRefPtr<InspectorObject> createSnapshotHeader(const ScriptHeapSnapshot& snapshot);
|
D | InspectorRuntimeAgent.h | 44 class InspectorObject; variable 55 …ring* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result); 56 …n(ErrorString*, const String& objectId, const String& expression, RefPtr<InspectorObject>* result);
|
D | InspectorState.h | 59 PassRefPtr<InspectorObject> getObject(const String& propertyName); 64 …void setObject(const String& propertyName, PassRefPtr<InspectorObject> value) { setValue(propertyN… in setObject() 71 RefPtr<InspectorObject> m_properties;
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | ScriptProfile.cpp | 63 static PassRefPtr<InspectorObject> buildInspectorObjectFor(const v8::CpuProfileNode* node) in buildInspectorObjectFor() 66 RefPtr<InspectorObject> result = InspectorObject::create(); in buildInspectorObjectFor() 86 PassRefPtr<InspectorObject> ScriptProfile::buildInspectorObjectForHead() const in buildInspectorObjectForHead()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | ScriptProfile.cpp | 70 static PassRefPtr<InspectorObject> buildInspectorObjectFor(const JSC::ProfileNode* node) in buildInspectorObjectFor() 72 RefPtr<InspectorObject> result = InspectorObject::create(); in buildInspectorObjectFor() 94 PassRefPtr<InspectorObject> ScriptProfile::buildInspectorObjectForHead() const in buildInspectorObjectForHead()
|