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

  /external/clang/test/CodeGenCXX/
const-init.cpp 77 // CHECK: @pastEnd = constant i32* bitcast (i8* getelementptr (i8* bitcast ([2 x i32]* @arr to i8*), i64 8) to i32*)
78 int &pastEnd = arr[2];
  /external/chromium_org/third_party/WebKit/Source/core/editing/
markup.cpp 131 Node* serializeNodes(Node* startNode, Node* pastEnd);
147 Node* traverseNodesForSerialization(Node* startNode, Node* pastEnd, NodeTraversalMode);
339 Node* StyledMarkupAccumulator::serializeNodes(Node* startNode, Node* pastEnd)
342 Node* lastClosed = traverseNodesForSerialization(startNode, pastEnd, DoNotEmitString);
349 return traverseNodesForSerialization(startNode, pastEnd, EmitString);
352 Node* StyledMarkupAccumulator::traverseNodesForSerialization(Node* startNode, Node* pastEnd, NodeTraversalMode traversalMode)
358 for (Node* n = startNode; n != pastEnd; n = next) {
360 // past pastEnd and become null here. This shouldn't be possible.
370 if (isBlock(n) && canHaveChildrenForEditing(n) && next == pastEnd)
376 // Don't skip over pastEnd
    [all...]
TextIterator.cpp 480 bool pastEnd = NodeTraversal::next(*m_node) == m_pastEndNode;
483 if ((pastEnd && parentNode == m_endContainer) || m_endContainer->isDescendantOf(parentNode))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.cpp     [all...]

Completed in 67 milliseconds