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

1 2 3 4

  /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/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/webkit/Source/WebCore/editing/
TextIterator.h 94 bool atEnd() const;
204 bool atEnd() const;
271 bool atEnd() const { return m_textIterator.atEnd(); }
295 bool atEnd() const { return m_textIterator.atEnd(); }
316 bool atEnd() const { return !m_didLookAhead && m_textIterator.atEnd(); }
TextIterator.cpp 362 bool TextIterator::atEnd() const
    [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/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 107 UBool atEnd() const;
ruleiter.cpp 32 UBool RuleCharacterIterator::atEnd() const {
  /external/webkit/Source/WebKit/android/nav/
SelectText.cpp 82 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); }
84 WTF::Unicode::Direction direction() const { return atEnd() ? WTF::Unicode::OtherNeutral : WTF::Unicode::direction(current()); }
  /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/IR/
Use.h 188 /// atEnd - return true if this iterator is equal to use_end() on the value.
189 bool atEnd() const { return U == 0; }
  /frameworks/base/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/CodeGen/
MachineRegisterInfo.cpp 248 assert((I.atEnd() || llvm::next(I) == def_end()) &&
250 return !I.atEnd() ? &*I : 0;
  /external/webkit/Source/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 280 QVERIFY(!load.atEnd());
295 QVERIFY(load.atEnd());

Completed in 857 milliseconds

1 2 3 4