OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TimelineRecordFactory
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/inspector/
InspectorTimelineAgent.cpp
43
#include "
TimelineRecordFactory
.h"
91
RefPtr<InspectorObject> record =
TimelineRecordFactory
::createGenericRecord(i->startTime);
92
record->setObject("data",
TimelineRecordFactory
::createGCEventData(i->collectedBytes));
160
pushCurrentRecord(
TimelineRecordFactory
::createFunctionCallData(scriptName, scriptLine), TimelineRecordType::FunctionCall);
170
pushCurrentRecord(
TimelineRecordFactory
::createEventDispatchData(event),
201
pushCurrentRecord(
TimelineRecordFactory
::createPaintData(rect), TimelineRecordType::Paint);
211
pushCurrentRecord(
TimelineRecordFactory
::createParseHTMLData(length, startLine), TimelineRecordType::ParseHTML);
226
RefPtr<InspectorObject> record =
TimelineRecordFactory
::createGenericRecord(WTF::currentTimeMS());
227
record->setObject("data",
TimelineRecordFactory
::createTimerInstallData(timerId, timeout, singleShot));
234
RefPtr<InspectorObject> record =
TimelineRecordFactory
::createGenericRecord(WTF::currentTimeMS())
[
all
...]
TimelineRecordFactory.cpp
32
#include "
TimelineRecordFactory
.h"
46
PassRefPtr<InspectorObject>
TimelineRecordFactory
::createGenericRecord(double startTime)
57
PassRefPtr<InspectorObject>
TimelineRecordFactory
::createGCEventData(const size_t usedHeapSizeDelta)
64
PassRefPtr<InspectorObject>
TimelineRecordFactory
::createFunctionCallData(const String& scriptName, int scriptLine)
72
PassRefPtr<InspectorObject>
TimelineRecordFactory
::createEventDispatchData(const Event& event)
79
PassRefPtr<InspectorObject>
TimelineRecordFactory
::createGenericTimerData(int timerId)
86
PassRefPtr<InspectorObject>
TimelineRecordFactory
::createTimerInstallData(int timerId, int timeout, bool singleShot)
95
PassRefPtr<InspectorObject>
TimelineRecordFactory
::createXHRReadyStateChangeData(const String& url, int readyState)
103
PassRefPtr<InspectorObject>
TimelineRecordFactory
::createXHRLoadData(const String& url)
110
PassRefPtr<InspectorObject>
TimelineRecordFactory
::createEvaluateScriptData(const String& url, double lineNumber
[
all
...]
TimelineRecordFactory.h
45
class
TimelineRecordFactory
{
82
TimelineRecordFactory
() { }
Completed in 321 milliseconds