Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DInlineIterator.h511 : m_nestedIsolateCount(nestedIsolateCount) in IsolateTracker()
521 void enterIsolate() { m_nestedIsolateCount++; } in enterIsolate()
524 ASSERT(m_nestedIsolateCount >= 1); in exitIsolate()
525 m_nestedIsolateCount--; in exitIsolate()
529 bool inIsolate() const { return m_nestedIsolateCount; } in inIsolate()
553 unsigned m_nestedIsolateCount;
/external/chromium_org/third_party/WebKit/Source/platform/text/
DBidiResolver.h174 , m_nestedIsolateCount(0) in BidiResolver()
188 m_nestedIsolateCount = nestedIsolatedCount; in setPosition()
213 void enterIsolate() { m_nestedIsolateCount++; } in enterIsolate()
214 void exitIsolate() { ASSERT(m_nestedIsolateCount >= 1); m_nestedIsolateCount--; } in exitIsolate()
215 bool inIsolate() const { return m_nestedIsolateCount; } in inIsolate()
266 unsigned m_nestedIsolateCount; variable