HomeSort by relevance Sort by last modified time
    Searched refs:pastEnd (Results 1 - 7 of 7) 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/webkit/Source/WebCore/editing/
markup.cpp 126 Node* serializeNodes(Node* startNode, Node* pastEnd);
320 Node* StyledMarkupAccumulator::serializeNodes(Node* startNode, Node* pastEnd)
325 for (Node* n = startNode; n != pastEnd; n = next) {
327 // past pastEnd and become null here. This shouldn't be possible.
337 if (isBlock(n) && canHaveChildrenForEditing(n) && next == pastEnd)
343 // Don't skip over pastEnd.
344 if (pastEnd && pastEnd->isDescendantOf(n))
345 next = pastEnd;
362 if (!openedTag && (!n->nextSibling() || next == pastEnd)) {
    [all...]
TextIterator.cpp 450 bool pastEnd = m_node->traverseNextNode() == m_pastEndNode;
453 if ((pastEnd && parentNode == m_endContainer) || m_endContainer->isDescendantOf(parentNode))
    [all...]
Editor.cpp 541 Node* pastEnd = range->pastLastNode();
542 // In the loop below, n should eventually match pastEnd and not become nil, but we've seen at least one
544 for (Node* n = startNode; n && n != pastEnd; n = n->traverseNextNode()) {
    [all...]
  /external/webkit/Source/WebCore/platform/text/
BidiResolver.h 502 bool pastEnd = false;
507 if (pastEnd && (hardLineBreak || m_current.atEnd())) {
789 if (pastEnd && m_eor == m_current) {
829 if (committed && pastEnd) {
843 if (!pastEnd && (m_current == end || m_current.atEnd())) {
854 pastEnd = true;
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp     [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
MethodAnalyzer.java     [all...]

Completed in 180 milliseconds