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

  /external/webkit/WebCore/history/
BackForwardList.cpp 48 , m_current(NoCurrentItemIndex)
67 if (m_current != NoCurrentItemIndex) {
68 unsigned targetSize = m_current + 1;
79 if (m_entries.size() == m_capacity && (m_current != 0 || m_capacity == 1)) {
84 m_current--;
89 m_entries.insert(m_current + 1, prpItem);
90 m_current++;
96 ASSERT(m_current > 0);
97 if (m_current > 0) {
98 m_current--
    [all...]
BackForwardList.h 117 unsigned m_current; member in class:WebCore::BackForwardList
  /external/webkit/WebCore/dom/
TreeWalker.h 44 Node* currentNode() const { return m_current.get(); }
57 Node* parentNode() { return parentNode(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
58 Node* firstChild() { return firstChild(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
59 Node* lastChild() { return lastChild(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
60 Node* previousSibling() { return previousSibling(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
61 Node* nextSibling() { return nextSibling(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
62 Node* previousNode() { return previousNode(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
63 Node* nextNode() { return nextNode(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
70 RefPtr<Node> m_current; member in class:WebCore::TreeWalker
TreeWalker.cpp 38 , m_current(root())
48 m_current = node;
53 m_current = node;
54 return m_current.get();
59 RefPtr<Node> node = m_current;
75 for (RefPtr<Node> node = m_current->firstChild(); node; ) {
81 m_current = node.release();
82 return m_current.get();
98 if (!parent || parent == root() || parent == m_current)
108 for (RefPtr<Node> node = m_current->lastChild(); node; )
    [all...]
  /external/webkit/WebCore/platform/text/
SegmentedString.h 32 SegmentedSubstring() : m_length(0), m_current(0), m_doNotExcludeLineNumbers(true) {}
35 , m_current(str.isEmpty() ? 0 : str.characters())
41 SegmentedSubstring(const UChar* str, int length) : m_length(length), m_current(length == 0 ? 0 : str), m_doNotExcludeLineNumbers(true) {}
43 void clear() { m_length = 0; m_current = 0; }
52 if (m_string.characters() == m_current) {
58 str.append(String(m_current, m_length));
64 const UChar* m_current; member in class:WebCore::SegmentedSubstring
76 , m_currentString(str, length), m_currentChar(m_currentString.m_current), m_composite(false) {}
79 , m_currentChar(m_currentString.m_current), m_composite(false) {}
96 m_currentChar = m_pushedChar1 ? &m_pushedChar1 : m_currentString.m_current;
    [all...]
SegmentedString.cpp 128 m_currentChar = m_pushedChar1 ? &m_pushedChar1 : m_currentString.m_current;
142 m_currentChar = m_pushedChar1 ? &m_pushedChar1 : m_currentString.m_current;
180 } else if (m_currentString.m_current) {
181 ++m_currentString.m_current;
185 m_currentChar = m_pushedChar1 ? &m_pushedChar1 : m_currentString.m_current;
193 } else if (m_currentString.m_current) {
194 if (*m_currentString.m_current++ == '\n' && m_currentString.doNotExcludeLineNumbers())
199 m_currentChar = m_pushedChar1 ? &m_pushedChar1 : m_currentString.m_current;
  /external/webkit/WebCore/html/
HTMLViewSourceDocument.cpp 92 m_current = m_tbody;
97 if (!m_current)
104 if (!m_current)
111 m_current = addSpanWithClassName("webkit-html-comment");
117 m_current = addSpanWithClassName(classNameStr);
152 m_current = addSpanWithClassName("webkit-html-attribute-name");
154 if (m_current != m_tbody)
155 m_current = static_cast<Element*>(m_current->parent());
171 m_current = addLink(value, equalIgnoringCase(token->tagName, "a"))
    [all...]
HTMLParser.cpp 131 , m_current(doc)
150 , m_current(frag)
173 m_current->deref();
206 m_current->deref();
207 m_current = newCurrent;
236 else if (m_current->localName() == t->tagName)
257 if (t->tagName == textAtom && t->text && m_current->localName() != scriptTag) {
258 if (m_inBody && !skipMode() && m_current->localName() != styleTag &&
259 m_current->localName() != titleTag && !t->text->containsOnlyWhitespace())
324 if (m_document->doctype() || m_isParsingFragment || m_current != m_document
    [all...]
HTMLViewSourceDocument.h 62 RefPtr<Element> m_current; member in class:WebCore::HTMLViewSourceDocument
HTMLParser.h 163 Node* m_current; member in class:WebCore::HTMLParser
  /external/webkit/WebCore/bindings/v8/
DOMDataStore.h 56 ChunkedTable() : m_chunks(0), m_current(0), m_last(0) { }
60 if (m_current == m_last) {
62 m_current = m_chunks->m_entries;
63 m_last = m_current + CHUNK_SIZE;
65 ASSERT((m_chunks->m_entries <= m_current) && (m_current < m_last));
66 T* p = m_current++;
74 ASSERT(m_current > m_chunks->m_entries);
75 m_current--;
76 if (element != m_current)
138 T* m_current; member in class:WebCore::ChunkedTable
    [all...]
V8Utilities.h 68 m_previous = m_current;
69 m_current = true;
74 m_current = m_previous;
77 static bool m_current; member in class:WebCore::AllowAllocation
V8Proxy.cpp 164 bool AllowAllocation::m_current = false; member in class:WebCore::AllowAllocation
751 if (!AllowAllocation::m_current)
  /external/webkit/WebCore/css/
CSSParserValues.h 66 : m_current(0)
76 CSSParserValue* current() { return m_current < m_values.size() ? &m_values[m_current] : 0; }
77 CSSParserValue* next() { ++m_current; return current(); }
87 unsigned m_current; member in class:WebCore::CSSParserValueList
CSSMutableStyleDeclaration.h 42 const CSSProperty& operator*() const { return *m_current; }
43 const CSSProperty* operator->() const { return m_current; }
45 bool operator!=(const CSSMutableStyleDeclarationConstIterator& o) { ASSERT(m_decl == o.m_decl); return m_current != o.m_current; }
46 bool operator==(const CSSMutableStyleDeclarationConstIterator& o) { ASSERT(m_decl == o.m_decl); return m_current == o.m_current; }
55 CSSProperty* m_current; member in class:WebCore::CSSMutableStyleDeclarationConstIterator
174 , m_current(current)
183 , m_current(o.m_current)
    [all...]
  /external/webkit/WebCore/platform/graphics/
PathTraversalState.cpp 138 traversalState.m_current = curve.end;
162 float distance = distanceLine(m_current, m_start);
163 m_start = m_control1 = m_control2 = m_current;
169 m_current = m_start = m_control1 = m_control2 = point;
175 float distance = distanceLine(m_current, point);
176 m_current = m_control1 = m_control2 = point;
182 float distance = curveLength<QuadraticBezier>(*this, QuadraticBezier(m_current, newControl, newEnd));
188 m_current = newEnd;
195 float distance = curveLength<CubicBezier>(*this, CubicBezier(m_current, newControl1, newControl2, newEnd));
201 m_current = newEnd
    [all...]
PathTraversalState.h 57 FloatPoint m_current; member in class:WebCore::PathTraversalState
Path.cpp 47 traversalState.m_previous = traversalState.m_current;
71 FloatSize change = traversalState.m_current - traversalState.m_previous;
76 traversalState.m_current.move(offset * cosf(slope), offset * sinf(slope));
99 return traversalState.m_current;
  /external/webkit/JavaScriptCore/parser/
Lexer.cpp 76 m_current = m_next1;
89 m_current = m_next2;
104 m_current = m_next3;
121 m_current = m_code[0];
126 m_current = m_code < m_codeEnd ? m_code[0] : -1;
189 ASSERT(isLineTerminator(m_current));
192 if (m_current + m_next1 == '\n' + '\r')
282 while (isWhiteSpace(m_current))
287 if (m_current == -1) {
297 switch (m_current) {
    [all...]
Lexer.h 105 int m_current; member in class:JSC::Lexer
  /external/webkit/WebCore/platform/win/
WCDataObject.cpp 53 size_t m_current; member in class:WebCore::WCEnumFormatEtc
60 , m_current(0)
68 , m_current(0)
106 if(celt <= 0 || lpFormatEtc == 0 || m_current >= m_formats.size())
112 while (m_current < m_formats.size() && cReturn > 0) {
113 *lpFormatEtc++ = m_formats[m_current++];
124 if((m_current + int(celt)) >= m_formats.size())
126 m_current += celt;
132 m_current = 0;
146 newEnum->m_current = m_current
    [all...]

Completed in 264 milliseconds