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

1234

/external/swiftshader/third_party/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/spirv-llvm/lib/SPIRV/
H A DSPIRVMDWalker.h63 bool atEnd() const { return !(NMD && I < E);} function in struct:SPIRV::SPIRVMDWalker::NamedMDWrapper
93 bool atEnd() const { return !(M && I < E);} function in struct:SPIRV::SPIRVMDWalker::NamedMDWrapper
99 if (atEnd())
109 if (atEnd())
124 if (atEnd())
131 if (atEnd())
/external/v8/tools/
H A Dconsarray.js64 ConsArray.prototype.atEnd = function() {
H A Dprofile_view.js139 while (!nodesToTraverse.atEnd()) {
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderElementIterator.java112 if (this.cursor == null || this.cursor.atEnd()) {
119 while (!this.cursor.atEnd()) {
128 if (this.cursor.atEnd()) {
H A DParserCursor.java91 public boolean atEnd() { method in class:ParserCursor
H A DBasicHeaderValueParser.java129 while (!cursor.atEnd()) {
181 if (!cursor.atEnd()) {
257 if (cursor.atEnd()) {
262 while (!cursor.atEnd()) {
/external/apache-http/src/org/apache/http/impl/cookie/
H A DNetscapeDraftHeaderParser.java75 while (!cursor.atEnd()) {
/external/icu/icu4c/source/common/
H A Druleiter.h109 UBool atEnd() const;
H A Druleiter.cpp34 UBool RuleCharacterIterator::atEnd() const { function in class:RuleCharacterIterator
/external/swiftshader/third_party/subzero/src/
H A DIceInstrumentation.cpp40 while (!Context.atEnd()) {
60 assert(!Context.atEnd());
/external/llvm/include/llvm/IR/
H A DCFG.h39 while (!It.atEnd() && !isa<TerminatorInst>(*It))
57 assert(!It.atEnd() && "pred_iterator out of range!");
63 assert(!It.atEnd() && "pred_iterator out of range!");
H A DInstIterator.h104 inline bool atEnd() const { return BB == BBs->end(); } function in class:llvm::InstIterator
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DAnyTransliterator.java81 if (isIncremental && it.atEnd()) {
122 public boolean atEnd(); method in interface:AnyTransliterator.RunIterator
222 public boolean atEnd() { method in class:AnyTransliterator.ScriptRunIterator
/external/swiftshader/third_party/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/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h229 bool atEnd() const { return Data == DataEnd; } function in class:llvm::RawInstrProfReader
235 assert(atEnd());
314 virtual bool atEnd() const = 0;
343 bool atEnd() const override {
/external/protobuf/js/binary/
H A Ddecoder.js180 jspb.BinaryIterator.prototype.atEnd = function() {
193 if (this.decoder_.atEnd()) {
418 jspb.BinaryDecoder.prototype.atEnd = function() {
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DRuleCharacterIterator.java119 public boolean atEnd() { method in class:RuleCharacterIterator
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DRuleCharacterIterator.java118 public boolean atEnd() { method in class:RuleCharacterIterator
/external/swiftshader/third_party/LLVM/include/llvm/
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/swiftshader/third_party/LLVM/lib/Target/Blackfin/
H A DBlackfinISelDAGToDAG.cpp150 for (SDNode::use_iterator UI = NI->use_begin(); !UI.atEnd(); ++UI) {
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DTextTrieMapTest.java263 "In middle of parse sequence, but atEnd() is true: '" + text + "' offset " + charOffset,
264 state.atEnd());
266 // Note: it possible for atEnd() to be either true or false at expecteds.length - 1;
270 "At end of parse sequence, but atEnd() is false: '" + text + "' offset " + charOffset,
271 state.atEnd());
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTextTrieMapTest.java260 "In middle of parse sequence, but atEnd() is true: '" + text + "' offset " + charOffset,
261 state.atEnd());
263 // Note: it possible for atEnd() to be either true or false at expecteds.length - 1;
267 "At end of parse sequence, but atEnd() is false: '" + text + "' offset " + charOffset,
268 state.atEnd());
/external/skia/tools/shape/
H A DSkShaper_harfbuzz.cpp91 virtual bool atEnd() const = 0;
154 bool atEnd() const override {
208 bool atEnd() const override {
284 bool atEnd() const override {
314 if (leastRun->atEnd()) { function
338 if (!fRunIterators.at(i)->atEnd()) {

Completed in 781 milliseconds

1234