HomeSort by relevance Sort by last modified time
    Searched refs:totalObjects (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalFrame.h 121 void countObjectsNeedingLayout(unsigned& needsLayoutObjects, unsigned& totalObjects, bool& isPartial);
LocalFrame.cpp 470 void LocalFrame::countObjectsNeedingLayout(unsigned& needsLayoutObjects, unsigned& totalObjects, bool& isPartial)
480 totalObjects = 0;
483 ++totalObjects;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
TimelineRecordFactory.h 68 static PassRefPtr<JSONObject> createLayoutData(unsigned dirtyObjects, unsigned totalObjects, bool partialLayout);
InspectorTraceEvents.cpp 65 unsigned totalObjects;
67 frame.countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial);
71 value->setInteger("totalObjects", totalObjects);
TimelineRecordFactory.cpp 185 PassRefPtr<JSONObject> TimelineRecordFactory::createLayoutData(unsigned dirtyObjects, unsigned totalObjects, bool partialLayout)
189 data->setNumber("totalObjects", totalObjects);
InspectorTimelineAgent.cpp 531 unsigned totalObjects;
532 frame->countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial);
534 pushCurrentRecord(TimelineRecordFactory::createLayoutData(needsLayoutObjects, totalObjects, isPartial), TimelineRecordType::Layout, true, frame);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineUIUtilsImpl.js 601 if (recordData["totalObjects"])
602 contentHelper.appendTextRow(WebInspector.UIString("Layout tree size"), recordData["totalObjects"]);
TracingTimelineUIUtils.js 627 contentHelper.appendTextRow(WebInspector.UIString("Layout tree size"), beginData["totalObjects"]);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 327 unsigned totalObjects;
328 contextFrame->countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial);
    [all...]

Completed in 491 milliseconds