HomeSort by relevance Sort by last modified time
    Searched defs:floatIndex (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
LineLayoutState.h 93 unsigned floatIndex() const { return m_floatIndex; }
94 void setFloatIndex(unsigned floatIndex) { m_floatIndex = floatIndex; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FloatingObjects.cpp 242 int floatIndex = static_cast<int>(type) - 1;
243 ASSERT(floatIndex < static_cast<int>(sizeof(m_lowestFloatBottomCache) / sizeof(FloatBottomCachedValue)));
244 ASSERT(floatIndex >= 0);
245 return (m_cachedHorizontalWritingMode == isHorizontal && !m_lowestFloatBottomCache[floatIndex].dirty);
250 int floatIndex = static_cast<int>(type) - 1;
251 ASSERT(floatIndex < static_cast<int>(sizeof(m_lowestFloatBottomCache) / sizeof(FloatBottomCachedValue)));
252 ASSERT(floatIndex >= 0);
253 return m_lowestFloatBottomCache[floatIndex].value;
258 int floatIndex = static_cast<int>(type) - 1;
259 ASSERT(floatIndex < static_cast<int>(sizeof(m_lowestFloatBottomCache) / sizeof(FloatBottomCachedValue)))
    [all...]
RenderBlockLineLayout.cpp     [all...]

Completed in 42 milliseconds