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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineIterator.h 511 : m_nestedIsolateCount(nestedIsolateCount)
521 void enterIsolate() { m_nestedIsolateCount++; }
524 ASSERT(m_nestedIsolateCount >= 1);
525 m_nestedIsolateCount--;
529 bool inIsolate() const { return m_nestedIsolateCount; }
553 unsigned m_nestedIsolateCount;
  /external/chromium_org/third_party/WebKit/Source/platform/text/
BidiResolver.h 174 , m_nestedIsolateCount(0)
188 m_nestedIsolateCount = nestedIsolatedCount;
213 void enterIsolate() { m_nestedIsolateCount++; }
214 void exitIsolate() { ASSERT(m_nestedIsolateCount >= 1); m_nestedIsolateCount--; }
215 bool inIsolate() const { return m_nestedIsolateCount; }
266 unsigned m_nestedIsolateCount;
    [all...]

Completed in 190 milliseconds