Searched defs:pastEnd (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Dconst-init.cpp77 // CHECK: @pastEnd = constant i32* bitcast (i8* getelementptr (i8* bitcast ([2 x i32]* @arr to i8*), i64 8) to i32*)
78 int &pastEnd = arr[2]; variable
/external/webkit/Source/WebCore/platform/text/
H A DBidiResolver.h502 bool pastEnd = false; local
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/editing/
H A Dmarkup.cpp126 Node* serializeNodes(Node* startNode, Node* pastEnd);
320 Node* StyledMarkupAccumulator::serializeNodes(Node* startNode, Node* pastEnd) argument
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)) {
559 Node* pastEnd = updatedRange->pastLastNode(); local
[all...]
H A DTextIterator.cpp450 bool pastEnd = m_node->traverseNextNode() == m_pastEndNode; local
453 if ((pastEnd && parentNode == m_endContainer) || m_endContainer->isDescendantOf(parentNode))
H A DEditor.cpp541 Node* pastEnd = range->pastLastNode(); local
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()) {
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DMethodAnalyzer.java3251 while (!registers.pastEnd()) {
3801 boolean pastEnd(); method in interface:MethodAnalyzer.RegisterIterator
3822 return !pastEnd();
3829 public boolean pastEnd() { method in class:MethodAnalyzer.Format35cRegisterIterator
3850 return !pastEnd();
3857 public boolean pastEnd() { method in class:MethodAnalyzer.Format3rcRegisterIterator
/external/webkit/Source/WebCore/rendering/
H A DInlineTextBox.cpp1282 int pastEnd = m_start + m_len; local
1285 if (offset < pastEnd)
1289 if (offset > pastEnd)

Completed in 487 milliseconds