Home
last modified time | relevance | path

Searched refs:m_currentLength (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/storage/
DStorageMap.cpp42 , m_currentLength(0) in StorageMap()
50 newMap->m_currentLength = m_currentLength; in copy()
116 unsigned newLength = m_currentLength; in setItem()
134 m_currentLength = newLength; in setItem()
158 ASSERT(m_currentLength - key.length() <= m_currentLength); in removeItem()
159 m_currentLength -= key.length(); in removeItem()
161 ASSERT(m_currentLength - oldValue.length() <= m_currentLength); in removeItem()
162 m_currentLength -= oldValue.length(); in removeItem()
179 ASSERT(m_currentLength + key.length() >= m_currentLength); in importItem()
180 m_currentLength += key.length(); in importItem()
[all …]
DStorageMap.h69 unsigned m_currentLength; // Measured in UChars. variable
/external/webkit/Source/WebCore/html/parser/
DHTMLEntitySearch.cpp43 : m_currentLength(0) in HTMLEntitySearch()
53 if (entry->length < m_currentLength + 1) in compare()
55 UChar entryNextCharacter = entry->entity[m_currentLength]; in compare()
114 if (!m_currentLength) { in advance()
125 ++m_currentLength; in advance()
126 if (m_first->length != m_currentLength) { in advance()
DHTMLEntitySearch.h43 int currentLength() const { return m_currentLength; } in currentLength()
65 int m_currentLength; variable