Searched refs:atEnd (Results 1 - 25 of 62) sorted by relevance

123

/external/v8/test/mjsunit/tools/
H A Dconsarray.js33 assertTrue(arr1.atEnd());
36 assertTrue(arr1.atEnd());
39 assertFalse(arr1.atEnd());
41 assertTrue(arr1.atEnd());
48 assertFalse(arr1.atEnd());
50 assertFalse(arr1.atEnd());
52 assertFalse(arr1.atEnd());
54 assertFalse(arr1.atEnd());
56 assertFalse(arr1.atEnd());
58 assertFalse(arr1.atEnd());
[all...]
/external/llvm/include/llvm/Analysis/
H A DConstantsScanner.h33 assert(!InstI.atEnd() && OpIdx < InstI->getNumOperands() &&
71 } while (!InstI.atEnd());
80 inline bool atEnd() const { return InstI.atEnd(); } function in class:llvm::constant_iterator
/external/v8/tools/
H A Dconsarray.js64 ConsArray.prototype.atEnd = function() {
H A Dprofile_view.js139 while (!nodesToTraverse.atEnd()) {
/external/webkit/Source/WebCore/dom/
H A DPositionIterator.h62 bool atEnd() const;
H A DPositionIterator.cpp120 bool PositionIterator::atEnd() const function in class:WebCore::PositionIterator
/external/webkit/Source/WebKit/mac/WebView/
H A DWebTextIterator.h54 @method atEnd
57 - (BOOL)atEnd;
H A DWebTextIterator.mm83 - (BOOL)atEnd
85 return _private->_textIterator->atEnd();
/external/webkit/Source/WebCore/editing/
H A DTextIterator.h94 bool atEnd() const;
204 bool atEnd() const;
271 bool atEnd() const { return m_textIterator.atEnd(); } function in class:WebCore::CharacterIterator
295 bool atEnd() const { return m_textIterator.atEnd(); } function in class:WebCore::BackwardsCharacterIterator
316 bool atEnd() const { return !m_didLookAhead && m_textIterator.atEnd(); } function in class:WebCore::WordAwareIterator
H A DTextIterator.cpp362 bool TextIterator::atEnd() const function in class:WebCore::TextIterator
1148 bool SimplifiedBackwardsTextIterator::atEnd() const function in class:WebCore::SimplifiedBackwardsTextIterator
1342 while (!atEnd() && m_textIterator.length() == 0)
1349 if (!m_textIterator.atEnd()) {
1387 for (m_textIterator.advance(); !atEnd(); m_textIterator.advance()) {
1414 while (numChars > 0 && !atEnd()) {
1450 while (!atEnd() && !m_textIterator.length())
1457 if (!m_textIterator.atEnd()) {
1492 for (m_textIterator.advance(); !atEnd(); m_textIterator.advance()) {
1548 ASSERT(!m_textIterator.atEnd());
[all...]
H A DApplyBlockElementCommand.cpp114 bool atEnd = false; local
116 while (endOfCurrentParagraph != endAfterSelection && !atEnd) {
118 atEnd = true;
H A DSpellChecker.cpp123 while (!iterator.atEnd()) {
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderElementIterator.java107 if (this.cursor == null || this.cursor.atEnd()) {
114 while (!this.cursor.atEnd()) {
123 if (this.cursor.atEnd()) {
H A DParserCursor.java86 public boolean atEnd() { method in class:ParserCursor
H A DBasicHeaderValueParser.java124 while (!cursor.atEnd()) {
176 if (!cursor.atEnd()) {
252 if (cursor.atEnd()) {
257 while (!cursor.atEnd()) {
/external/webkit/Source/WebKit/android/nav/
H A DSelectText.cpp82 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); } function in class:WebCore::TextRunIterator
84 WTF::Unicode::Direction direction() const { return atEnd() ? WTF::Unicode::OtherNeutral : WTF::Unicode::direction(current()); }
/external/apache-http/src/org/apache/http/impl/cookie/
H A DNetscapeDraftHeaderParser.java69 while (!cursor.atEnd()) {
/external/icu4c/common/
H A Druleiter.h107 UBool atEnd() const;
H A Druleiter.cpp32 UBool RuleCharacterIterator::atEnd() const { function in class:RuleCharacterIterator
/external/webkit/Source/WebCore/rendering/
H A DInlineIterator.h69 bool atEnd() const;
230 inline bool InlineIterator::atEnd() const function in class:WebCore::InlineIterator
267 if (!m_emptyRun && !m_eor.atEnd()) {
/external/llvm/include/llvm/Support/
H A DCFG.h37 while (!It.atEnd() && !isa<TerminatorInst>(*It))
54 assert(!It.atEnd() && "pred_iterator out of range!");
60 assert(!It.atEnd() && "pred_iterator out of range!");
H A DInstIterator.h105 inline bool atEnd() const { return BB == BBs->end(); } function in class:llvm::InstIterator
/external/webkit/Source/WebCore/platform/text/
H A DBidiResolver.h232 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/include/llvm/IR/
H A DUse.h188 /// atEnd - return true if this iterator is equal to use_end() on the value.
189 bool atEnd() const { return U == 0; } function in class:llvm::value_use_iterator
/external/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp248 assert((I.atEnd() || llvm::next(I) == def_end()) &&
250 return !I.atEnd() ? &*I : 0;

Completed in 509 milliseconds

123