Searched refs:pastEnd (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | markup.cpp | 136 Node* serializeNodes(Node* startNode, Node* pastEnd); 152 Node* traverseNodesForSerialization(Node* startNode, Node* pastEnd, NodeTraversalMode); 346 Node* StyledMarkupAccumulator::serializeNodes(Node* startNode, Node* pastEnd) in serializeNodes() argument 349 Node* lastClosed = traverseNodesForSerialization(startNode, pastEnd, DoNotEmitString); in serializeNodes() 362 return traverseNodesForSerialization(startNode, pastEnd, EmitString); in serializeNodes() 365 Node* StyledMarkupAccumulator::traverseNodesForSerialization(Node* startNode, Node* pastEnd, NodeTr… in traverseNodesForSerialization() argument 371 for (Node* n = startNode; n != pastEnd; n = next) { in traverseNodesForSerialization() 383 if (isBlock(n) && canHaveChildrenForEditing(n) && next == pastEnd) in traverseNodesForSerialization() 390 if (pastEnd && pastEnd->isDescendantOf(n)) in traverseNodesForSerialization() 391 next = pastEnd; in traverseNodesForSerialization() [all …]
|
D | TextIterator.cpp | 494 bool pastEnd = NodeTraversal::next(*m_node) == m_pastEndNode; in advance() local 497 … if ((pastEnd && parentNode == m_endContainer) || m_endContainer->isDescendantOf(parentNode)) in advance()
|
/external/clang/test/CodeGenCXX/ |
D | const-init.cpp | 78 int &pastEnd = arr[2]; variable
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | InlineTextBox.cpp | 1213 int pastEnd = m_start + m_len; in containsCaretOffset() local 1216 if (offset < pastEnd) in containsCaretOffset() 1220 if (offset > pastEnd) in containsCaretOffset()
|