Home
last modified time | relevance | path

Searched refs:totalObjects (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorTraceEvents.cpp58 unsigned totalObjects; in beginData() local
60 frame.countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial); in beginData()
64 data->setNumber("totalObjects", totalObjects); in beginData()
DTimelineRecordFactory.cpp185 …melineRecordFactory::createLayoutData(unsigned dirtyObjects, unsigned totalObjects, bool partialLa… in createLayoutData() argument
189 data->setNumber("totalObjects", totalObjects); in createLayoutData()
DTimelineRecordFactory.h68 …static PassRefPtr<JSONObject> createLayoutData(unsigned dirtyObjects, unsigned totalObjects, bool …
DInspectorTimelineAgent.cpp485 unsigned totalObjects; in willLayout() local
486 frame->countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial); in willLayout()
488 …pushCurrentRecord(TimelineRecordFactory::createLayoutData(needsLayoutObjects, totalObjects, isPart… in willLayout()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DLocalFrame.cpp406 void LocalFrame::countObjectsNeedingLayout(unsigned& needsLayoutObjects, unsigned& totalObjects, bo… in countObjectsNeedingLayout() argument
416 totalObjects = 0; in countObjectsNeedingLayout()
419 ++totalObjects; in countObjectsNeedingLayout()
DLocalFrame.h110 …void countObjectsNeedingLayout(unsigned& needsLayoutObjects, unsigned& totalObjects, bool& isParti…
/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.cpp293 unsigned totalObjects; in needsLayoutCount() local
294 contextFrame->countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial); in needsLayoutCount()