Home
last modified time | relevance | path

Searched refs:m_lowestFloatBottomCache (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DFloatingObjects.cpp229 …ASSERT(floatIndex < static_cast<int>(sizeof(m_lowestFloatBottomCache) / sizeof(FloatBottomCachedVa… in hasLowestFloatLogicalBottomCached()
231 …return (m_cachedHorizontalWritingMode == isHorizontal && !m_lowestFloatBottomCache[floatIndex].dir… in hasLowestFloatLogicalBottomCached()
237 …ASSERT(floatIndex < static_cast<int>(sizeof(m_lowestFloatBottomCache) / sizeof(FloatBottomCachedVa… in getCachedlowestFloatLogicalBottom()
239 return m_lowestFloatBottomCache[floatIndex].value; in getCachedlowestFloatLogicalBottom()
245 …ASSERT(floatIndex < static_cast<int>(sizeof(m_lowestFloatBottomCache) / sizeof(FloatBottomCachedVa… in setCachedLowestFloatLogicalBottom()
248 m_lowestFloatBottomCache[floatIndex].value = value; in setCachedLowestFloatLogicalBottom()
249 m_lowestFloatBottomCache[floatIndex].dirty = false; in setCachedLowestFloatLogicalBottom()
254 for (size_t i = 0; i < sizeof(m_lowestFloatBottomCache) / sizeof(FloatBottomCachedValue); ++i) in markLowestFloatLogicalBottomCacheAsDirty()
255 m_lowestFloatBottomCache[i].dirty = true; in markLowestFloatLogicalBottomCacheAsDirty()
DFloatingObjects.h186 FloatBottomCachedValue m_lowestFloatBottomCache[2]; variable