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

  /external/chromium_org/third_party/WebKit/Source/core/platform/
SharedBufferChunkReader.cpp 46 , m_separatorIndex(0)
57 , m_separatorIndex(0)
82 if (currentCharacter != m_separator[m_separatorIndex]) {
83 if (m_separatorIndex > 0) {
84 ASSERT_WITH_SECURITY_IMPLICATION(m_separatorIndex <= m_separator.size());
85 chunk.append(m_separator.data(), m_separatorIndex);
86 m_separatorIndex = 0;
91 m_separatorIndex++;
92 if (m_separatorIndex == m_separator.size()) {
95 m_separatorIndex = 0
    [all...]
SharedBufferChunkReader.h 67 size_t m_separatorIndex;

Completed in 217 milliseconds