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

/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DLocalFrame.h121 void countObjectsNeedingLayout(unsigned& needsLayoutObjects, unsigned& totalObjects, bool& isPartial);
H A DLocalFrame.cpp470 void LocalFrame::countObjectsNeedingLayout(unsigned& needsLayoutObjects, unsigned& totalObjects, bool& isPartial) argument
480 totalObjects = 0;
483 ++totalObjects;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DTimelineRecordFactory.h68 static PassRefPtr<JSONObject> createLayoutData(unsigned dirtyObjects, unsigned totalObjects, bool partialLayout);
H A DInspectorTraceEvents.cpp65 unsigned totalObjects; local
67 frame.countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial);
71 value->setInteger("totalObjects", totalObjects);
H A DTimelineRecordFactory.cpp185 PassRefPtr<JSONObject> TimelineRecordFactory::createLayoutData(unsigned dirtyObjects, unsigned totalObjects, bool partialLayout) argument
189 data->setNumber("totalObjects", totalObjects);
H A DInspectorTimelineAgent.cpp531 unsigned totalObjects; local
532 frame->countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial);
534 pushCurrentRecord(TimelineRecordFactory::createLayoutData(needsLayoutObjects, totalObjects, isPartial), TimelineRecordType::Layout, true, frame);
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp327 unsigned totalObjects; local
328 contextFrame->countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial);

Completed in 186 milliseconds