HomeSort by relevance Sort by last modified time
    Searched refs:atEnd (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/llvm/include/llvm/Analysis/
ConstantsScanner.h 33 assert(!InstI.atEnd() && OpIdx < InstI->getNumOperands() &&
71 } while (!InstI.atEnd());
80 inline bool atEnd() const { return InstI.atEnd(); }
  /external/webkit/Source/WebCore/editing/
TextIterator.h 91 bool atEnd() const { return !m_positionNode; }
195 bool atEnd() const { return !m_positionNode; }
255 bool atEnd() const { return m_textIterator.atEnd(); }
279 bool atEnd() const { return m_textIterator.atEnd(); }
300 bool atEnd() const { return !m_didLookAhead && m_textIterator.atEnd(); }
TextIterator.cpp     [all...]
ApplyBlockElementCommand.cpp 114 bool atEnd = false;
116 while (endOfCurrentParagraph != endAfterSelection && !atEnd) {
118 atEnd = true;
SpellChecker.cpp 123 while (!iterator.atEnd()) {
InsertParagraphSeparatorCommand.cpp 321 bool atEnd = (unsigned)insertionPosition.deprecatedEditingOffset() >= textNode->length();
322 if (insertionPosition.deprecatedEditingOffset() > 0 && !atEnd) {
  /external/webkit/Source/WebKit/mac/WebView/
WebTextIterator.h 54 @method atEnd
57 - (BOOL)atEnd;
WebTextIterator.mm 83 - (BOOL)atEnd
85 return _private->_textIterator->atEnd();
  /external/webkit/Source/WebCore/dom/
PositionIterator.h 62 bool atEnd() const;
PositionIterator.cpp 120 bool PositionIterator::atEnd() const
  /external/apache-http/src/org/apache/http/message/
BasicHeaderElementIterator.java 107 if (this.cursor == null || this.cursor.atEnd()) {
114 while (!this.cursor.atEnd()) {
123 if (this.cursor.atEnd()) {
ParserCursor.java 86 public boolean atEnd() {
BasicHeaderValueParser.java 124 while (!cursor.atEnd()) {
176 if (!cursor.atEnd()) {
252 if (cursor.atEnd()) {
257 while (!cursor.atEnd()) {
  /external/icu4c/common/
ruleiter.h 108 UBool atEnd() const;
ruleiter.cpp 31 UBool RuleCharacterIterator::atEnd() const {
  /external/collada/include/1.4/dom/
domAnimation_clip.h 116 * @param atEnd The new value for the end attribute.
118 void setEnd( xsDouble atEnd ) { attrEnd = atEnd; _validAttributeArray[3] = true; }
  /external/apache-http/src/org/apache/http/impl/cookie/
NetscapeDraftHeaderParser.java 69 while (!cursor.atEnd()) {
  /external/llvm/include/llvm/Support/
CFG.h 37 while (!It.atEnd() && !isa<TerminatorInst>(*It))
54 assert(!It.atEnd() && "pred_iterator out of range!");
60 assert(!It.atEnd() && "pred_iterator out of range!");
InstIterator.h 105 inline bool atEnd() const { return BB == BBs->end(); }
  /external/webkit/Source/WebCore/rendering/
InlineIterator.h 69 bool atEnd() const;
230 inline bool InlineIterator::atEnd() const
267 if (!m_emptyRun && !m_eor.atEnd()) {
  /external/llvm/include/llvm/
Use.h 188 /// atEnd - return true if this iterator is equal to use_end() on the value.
189 bool atEnd() const { return U == 0; }
  /system/media/mca/filterfw/java/android/filterfw/io/
PatternScanner.java 101 public boolean atEnd() {
  /external/webkit/Source/WebCore/platform/text/
BidiResolver.h 232 if (!m_emptyRun && !m_eor.atEnd()) {
236 if (!endOfLine.atEnd() && endOffset >= endOfLine.offset()) {
266 ASSERT(m_status.eor != OtherNeutral || m_eor.atEnd());
485 while (m_current != end && !m_current.atEnd()) {
507 if (pastEnd && (hardLineBreak || m_current.atEnd())) {
538 ASSERT(m_status.eor != OtherNeutral || m_eor.atEnd());
843 if (!pastEnd && (m_current == end || m_current.atEnd())) {
  /external/llvm/lib/Target/Blackfin/
BlackfinISelDAGToDAG.cpp 150 for (SDNode::use_iterator UI = NI->use_begin(); !UI.atEnd(); ++UI) {
  /external/webkit/Source/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 280 QVERIFY(!load.atEnd());
295 QVERIFY(load.atEnd());

Completed in 269 milliseconds

1 2 3