HomeSort by relevance Sort by last modified time
    Searched refs:needsLayoutObjects (Results 1 - 5 of 5) 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)
479 needsLayoutObjects = 0;
485 ++needsLayoutObjects;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTraceEvents.cpp 64 unsigned needsLayoutObjects;
67 frame.countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial);
70 value->setInteger("dirtyObjects", needsLayoutObjects);
InspectorTimelineAgent.cpp 530 unsigned needsLayoutObjects;
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/core/testing/
Internals.cpp 326 unsigned needsLayoutObjects;
328 contextFrame->countObjectsNeedingLayout(needsLayoutObjects, totalObjects, isPartial);
329 return needsLayoutObjects;
    [all...]

Completed in 79 milliseconds