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.cpp65 unsigned totalObjects; in beginData() local
67 frame.countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial); in beginData()
71 value->setInteger("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.cpp531 unsigned totalObjects; in willLayout() local
532 frame->countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial); in willLayout()
534 …pushCurrentRecord(TimelineRecordFactory::createLayoutData(needsLayoutObjects, totalObjects, isPart… in willLayout()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DLocalFrame.cpp470 void LocalFrame::countObjectsNeedingLayout(unsigned& needsLayoutObjects, unsigned& totalObjects, bo… in countObjectsNeedingLayout() argument
480 totalObjects = 0; in countObjectsNeedingLayout()
483 ++totalObjects; in countObjectsNeedingLayout()
DLocalFrame.h121 …void countObjectsNeedingLayout(unsigned& needsLayoutObjects, unsigned& totalObjects, bool& isParti…
/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.cpp327 unsigned totalObjects; in needsLayoutCount() local
328 contextFrame->countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial); in needsLayoutCount()