Searched refs:isAtEnd (Results 1 - 25 of 29) sorted by relevance

12

/external/skia/src/utils/
H A DSkFrontBufferedStream.cpp21 bool isAtEnd() const override;
84 bool FrontBufferedStream::isAtEnd() const { function in class:FrontBufferedStream
91 return fStream->isAtEnd();
195 if (size > 0 && fBufferedSoFar < fBufferSize && !fStream->isAtEnd()) {
207 if (size > 0 && !fStream->isAtEnd()) {
/external/llvm/tools/opt/
H A DPrintSCC.cpp77 for (scc_iterator<Function*> SCCI = scc_begin(&F); !SCCI.isAtEnd(); ++SCCI) {
97 for (scc_iterator<CallGraph*> SCCI = scc_begin(&CG); !SCCI.isAtEnd();
/external/skia/tests/
H A DFrontBufferedStreamTest.cpp22 REPORTER_ASSERT(reporter, bytesRead == bytesToRead || bufferedStream->isAtEnd());
125 // A custom class whose isAtEnd behaves the way Android's stream does - since it is an adaptor to a
142 bool isAtEnd() const override {
190 bool isAtEnd() const override {
232 REPORTER_ASSERT(reporter, !bufferedStream->isAtEnd());
238 REPORTER_ASSERT(reporter, bufferedStream->isAtEnd());
276 bool isAtEnd() const override {
H A DStreamTest.cpp37 // isAtEnd might not return true until after the first failing read.
38 REPORTER_ASSERT(reporter, stream->isAtEnd());
105 REPORTER_ASSERT(reporter, stream3->isAtEnd());
217 REPORTER_ASSERT(reporter, bytesRead == bytesToPeek || stream->isAtEnd());
228 for (size_t i = 1; !stream->isAtEnd(); i++) {
/external/skia/src/utils/win/
H A DSkDWriteFontFileStream.h29 bool isAtEnd() const override;
H A DSkDWriteFontFileStream.cpp78 bool SkDWriteFontFileStream::isAtEnd() const { function in class:SkDWriteFontFileStream
/external/clang/include/clang/Lex/
H A DTokenLexer.h156 /// isAtEnd - Return true if the next lex call will pop this macro off the
158 bool isAtEnd() const { function in class:clang::TokenLexer
/external/llvm/include/llvm/Support/
H A DYAMLParser.h523 if (isAtEnd() || Other.isAtEnd())
524 return isAtEnd() && Other.isAtEnd();
546 bool isAtEnd() const { return !Doc || !*Doc; } function in class:llvm::yaml::document_iterator
/external/clang/lib/Lex/
H A DTokenLexer.cpp421 if (isAtEnd()) {
447 if (!isAtEnd() && Macro &&
533 assert(!isAtEnd() && "No token on the RHS of a paste operator!");
660 } while (!isAtEnd() && Tokens[CurToken].is(tok::hashhash));
699 if (isAtEnd())
707 return Tokens[NumTokens-1].is(tok::eod) && !isAtEnd();
/external/skia/include/core/
H A DSkStream.h84 virtual bool isAtEnd() const = 0;
263 bool isAtEnd() const override;
334 bool isAtEnd() const override;
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DCodedInputByteBufferNano.java71 if (isAtEnd()) {
534 public boolean isAtEnd() { method in class:CodedInputByteBufferNano
H A DExtension.java415 while (!buffer.isAtEnd()) {
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DCodedInputStreamTest.java96 assertTrue(input.isAtEnd());
241 assertTrue(input.isAtEnd());
248 assertTrue(input.isAtEnd());
260 assertTrue(input.isAtEnd());
267 assertTrue(input.isAtEnd());
384 assertTrue(input.isAtEnd());
H A DLiteralByteStringTest.java383 assertTrue(classUnderTest + " CodedInputStream must now be exhausted", cis.isAtEnd());
/external/skia/src/core/
H A DSkStream.cpp216 bool SkFILEStream::isAtEnd() const { function in class:SkFILEStream
384 bool SkMemoryStream::isAtEnd() const { function in class:SkMemoryStream
723 bool isAtEnd() const override {
880 } while (!stream->isAtEnd());
901 } while (!stream->isAtEnd());
928 } while (!stream->isAtEnd());
H A DSkRWBuffer.cpp304 bool isAtEnd() const override {
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DCodedInputStreamMicro.java79 if (isAtEnd()) {
591 public boolean isAtEnd() throws IOException { method in class:CodedInputStreamMicro
/external/llvm/include/llvm/ADT/
H A DSCCIterator.h107 bool isAtEnd() const { function in class:llvm::scc_iterator
/external/skia/src/images/
H A DSkImageDecoder_libwebp.cpp62 SkASSERT(stream->isAtEnd());
68 } while (!stream->isAtEnd() && bytesToRead > 0);
/external/llvm/lib/Analysis/IPA/
H A DCallGraphSCCPass.cpp446 while (!CGI.isAtEnd()) {
H A DGlobalsModRef.cpp362 for (scc_iterator<CallGraph*> I = scc_begin(&CG); !I.isAtEnd(); ++I) {
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DCodedInputStream.java149 if (isAtEnd()) {
1040 public boolean isAtEnd() throws IOException { method in class:CodedInputStream
/external/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp700 for (auto I = scc_begin(G); !I.isAtEnd(); ++I) {
/external/skia/src/ports/
H A DSkFontConfigParser_android.cpp613 done = file.isAtEnd();
/external/llvm/lib/Target/R600/
H A DAMDILCFGStructurizer.cpp937 for (scc_iterator<MachineFunction *> It = scc_begin(MF); !It.isAtEnd();

Completed in 3168 milliseconds

12