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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FastTextAutosizer.cpp 94 explanation = "[supercluster]";
318 // Clear the cluster stack and the supercluster map to avoid stale pointers.
720 FastTextAutosizer::Supercluster* FastTextAutosizer::getSupercluster(const RenderBlock* block)
730 SuperclusterMap::AddResult addResult = m_superclusters.add(fingerprint, PassOwnPtr<Supercluster>());
734 Supercluster* supercluster = new Supercluster(roots);
735 addResult.storedValue->value = adoptPtr(supercluster);
736 return supercluster;
767 bool FastTextAutosizer::superclusterHasEnoughTextToAutosize(Supercluster* supercluster, const RenderBlock* widthProvider
785 Supercluster* supercluster = cluster->m_supercluster; local
    [all...]
FastTextAutosizer.h 131 // A supercluster represents autosizing information about a set of two or
133 // belong to a supercluster will share a common multiplier and
135 struct Supercluster {
136 explicit Supercluster(const BlockSet* roots)
149 explicit Cluster(const RenderBlock* root, BlockFlags flags, Cluster* parent, Supercluster* supercluster = 0)
156 , m_supercluster(supercluster)
174 Supercluster* m_supercluster;
205 typedef HashMap<Fingerprint, OwnPtr<Supercluster> > SuperclusterMap;
260 bool superclusterHasEnoughTextToAutosize(Supercluster*, const RenderBlock* widthProvider = 0)
    [all...]

Completed in 548 milliseconds