HomeSort by relevance Sort by last modified time
    Searched refs:InspectorObject (Results 1 - 25 of 48) sorted by null

1 2

  /external/webkit/Source/WebCore/inspector/
TimelineRecordFactory.h 40 class InspectorObject;
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 singleShot);
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...]
TimelineRecordFactory.cpp 46 PassRefPtr<InspectorObject> TimelineRecordFactory::createGenericRecord(double startTime)
48 RefPtr<InspectorObject> record = InspectorObject::create();
57 PassRefPtr<InspectorObject> TimelineRecordFactory::createGCEventData(const size_t usedHeapSizeDelta)
59 RefPtr<InspectorObject> data = InspectorObject::create();
64 PassRefPtr<InspectorObject> TimelineRecordFactory::createFunctionCallData(const String& scriptName, int scriptLine)
66 RefPtr<InspectorObject> data = InspectorObject::create();
72 PassRefPtr<InspectorObject> TimelineRecordFactory::createEventDispatchData(const Event& event
    [all...]
InspectorApplicationCacheAgent.h 41 class InspectorObject;
63 void getApplicationCaches(ErrorString*, RefPtr<InspectorObject>* applicationCaches);
66 PassRefPtr<InspectorObject> buildObjectForApplicationCache(const ApplicationCacheHost::ResourceInfoList&, const ApplicationCacheHost::CacheInfo&);
68 PassRefPtr<InspectorObject> buildObjectForApplicationCacheResource(const ApplicationCacheHost::ResourceInfo&);
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 void setPropertyText(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, const String& text, bool overwrite, RefPtr<InspectorObject>* result);
72 void toggleProperty(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, bool disable, RefPtr<InspectorObject>* result);
73 void setRuleSelector(ErrorString*, const RefPtr<InspectorObject>& ruleId, const String& selector, RefPtr<InspectorObject>* result)
    [all...]
InspectorState.cpp 40 , m_properties(InspectorObject::create())
52 m_properties = InspectorObject::create();
79 InspectorObject::iterator it = m_properties->find(propertyName);
88 InspectorObject::iterator it = m_properties->find(propertyName);
97 InspectorObject::iterator it = m_properties->find(propertyName);
104 PassRefPtr<InspectorObject> InspectorState::getObject(const String& propertyName)
106 InspectorObject::iterator it = m_properties->find(propertyName);
108 m_properties->setObject(propertyName, InspectorObject::create());
ScriptCallFrame.h 39 class InspectorObject;
51 PassRefPtr<InspectorObject> buildInspectorObject() const;
InjectedScript.h 44 class InspectorObject;
58 void evaluate(ErrorString*, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result);
59 void evaluateOn(ErrorString*, const String& objectId, const String& expression, RefPtr<InspectorObject>* result);
60 void evaluateOnCallFrame(ErrorString*, const String& callFrameId, const String& expression, 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);
InspectorValues.h 47 class InspectorObject;
80 virtual bool asObject(RefPtr<InspectorObject>* output);
82 virtual PassRefPtr<InspectorObject> asObject();
158 class InspectorObject : public InspectorValue {
167 static PassRefPtr<InspectorObject> create()
169 return adoptRef(new InspectorObject());
171 ~InspectorObject();
173 virtual bool asObject(RefPtr<InspectorObject>* output);
174 virtual PassRefPtr<InspectorObject> asObject();
180 void setObject(const String& name, PassRefPtr<InspectorObject>);
    [all...]
InspectorRuntimeAgent.h 44 class InspectorObject;
55 void evaluate(ErrorString*, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result);
56 void evaluateOn(ErrorString*, const String& objectId, const String& expression, RefPtr<InspectorObject>* result);
ScriptCallFrame.cpp 59 PassRefPtr<InspectorObject> ScriptCallFrame::buildInspectorObject() const
61 RefPtr<InspectorObject> frame = InspectorObject::create();
InspectorApplicationCacheAgent.cpp 76 void InspectorApplicationCacheAgent::getApplicationCaches(ErrorString*, RefPtr<InspectorObject>* applicationCaches)
89 PassRefPtr<InspectorObject> InspectorApplicationCacheAgent::buildObjectForApplicationCache(const ApplicationCacheHost::ResourceInfoList& applicationCacheResources, const ApplicationCacheHost::CacheInfo& applicationCacheInfo)
91 RefPtr<InspectorObject> value = InspectorObject::create();
113 PassRefPtr<InspectorObject> InspectorApplicationCacheAgent::buildObjectForApplicationCacheResource(const ApplicationCacheHost::ResourceInfo& resourceInfo)
115 RefPtr<InspectorObject> value = InspectorObject::create();
InspectorTimelineAgent.h 126 TimelineRecordEntry(PassRefPtr<InspectorObject> record, PassRefPtr<InspectorObject> data, PassRefPtr<InspectorArray> children, const String& type)
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);
InspectorResourceAgent.cpp 192 static PassRefPtr<InspectorObject> buildObjectForHeaders(const HTTPHeaderMap& headers)
194 RefPtr<InspectorObject> headersObject = InspectorObject::create();
201 static PassRefPtr<InspectorObject> buildObjectForTiming(const ResourceLoadTiming& timing)
203 RefPtr<InspectorObject> timingObject = InspectorObject::create();
219 static PassRefPtr<InspectorObject> buildObjectForResourceRequest(const ResourceRequest& request)
221 RefPtr<InspectorObject> requestObject = InspectorObject::create();
230 static PassRefPtr<InspectorObject> buildObjectForResourceResponse(const ResourceResponse& response
    [all...]
InspectorDebuggerAgent.cpp 90 m_inspectorState->setObject(DebuggerAgentState::javaScriptBreakpoints, InspectorObject::create());
144 static PassRefPtr<InspectorObject> buildObjectForBreakpointCookie(const String& url, int lineNumber, int columnNumber, const String& condition)
146 RefPtr<InspectorObject> breakpointObject = InspectorObject::create();
160 RefPtr<InspectorObject> breakpointsCookie = m_inspectorState->getObject(DebuggerAgentState::javaScriptBreakpoints);
170 RefPtr<InspectorObject> location = resolveBreakpoint(breakpointId, it->first, breakpoint);
177 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* sourceId, int* lineNumber, int* columnNumber)
189 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, PassRefPtr<InspectorObject> location, const String* const optionalCondition, String* outBreakpointId, RefPtr<InspectorObject>* actualLocation)
213 RefPtr<InspectorObject> breakpointsCookie = m_inspectorState->getObject(DebuggerAgentState::javaScriptBreakpoints)
    [all...]
InspectorDatabaseResource.cpp 59 RefPtr<InspectorObject> jsonObject = InspectorObject::create();
InspectorTimelineAgent.cpp 91 RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(i->startTime);
181 pushCurrentRecord(InspectorObject::create(), TimelineRecordType::Layout);
191 pushCurrentRecord(InspectorObject::create(), TimelineRecordType::RecalculateStyles);
226 RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS());
234 RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS());
282 RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS());
291 RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS());
322 RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS());
332 RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS());
340 RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS())
    [all...]
InspectorState.h 59 PassRefPtr<InspectorObject> getObject(const String& propertyName);
64 void setObject(const String& propertyName, PassRefPtr<InspectorObject> value) { setValue(propertyName, value); }
71 RefPtr<InspectorObject> m_properties;
InspectorBrowserDebuggerAgent.cpp 127 RefPtr<InspectorObject> eventListenerBreakpoints = m_inspectorState->getObject(BrowserDebuggerAgentState::eventListenerBreakpoints);
139 RefPtr<InspectorObject> eventListenerBreakpoints = m_inspectorState->getObject(BrowserDebuggerAgentState::eventListenerBreakpoints);
212 RefPtr<InspectorObject> eventData = InspectorObject::create();
227 RefPtr<InspectorObject> eventData = InspectorObject::create();
232 RefPtr<InspectorObject> eventData = InspectorObject::create();
246 RefPtr<InspectorObject> eventData = InspectorObject::create()
    [all...]
InspectorDebuggerAgent.h 51 class InspectorObject;
84 void setBreakpoint(ErrorString*, PassRefPtr<InspectorObject> location, const String* const optionalCondition, String* breakpointId, RefPtr<InspectorObject>* actualLocation);
86 void continueToLocation(ErrorString*, PassRefPtr<InspectorObject> location);
99 void evaluateOnCallFrame(ErrorString*, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result);
127 PassRefPtr<InspectorObject> resolveBreakpoint(const String& breakpointId, const String& sourceId, const ScriptBreakpoint&);
166 RefPtr<InspectorObject> m_breakProgramDetails;
  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfile.h 43 class InspectorObject;
57 PassRefPtr<InspectorObject> buildInspectorObjectForHead() const;
ScriptProfile.cpp 63 static PassRefPtr<InspectorObject> buildInspectorObjectFor(const v8::CpuProfileNode* node)
66 RefPtr<InspectorObject> result = InspectorObject::create();
86 PassRefPtr<InspectorObject> ScriptProfile::buildInspectorObjectForHead() const
ScriptHeapSnapshot.h 42 class InspectorObject;
ScriptProfiler.h 42 class InspectorObject;
  /external/webkit/Source/WebCore/bindings/js/
ScriptProfile.h 43 class InspectorObject;
55 PassRefPtr<InspectorObject> buildInspectorObjectForHead() const;
ScriptProfile.cpp 70 static PassRefPtr<InspectorObject> buildInspectorObjectFor(const JSC::ProfileNode* node)
72 RefPtr<InspectorObject> result = InspectorObject::create();
94 PassRefPtr<InspectorObject> ScriptProfile::buildInspectorObjectForHead() const

Completed in 1043 milliseconds

1 2