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

1 2

  /external/chromium_org/third_party/skia/src/images/
SkStreamHelpers.cpp 35 } while (!stream->isAtEnd());
  /external/chromium_org/third_party/skia/src/utils/
SkFrontBufferedStream.cpp 19 virtual bool isAtEnd() const SK_OVERRIDE;
78 bool FrontBufferedStream::isAtEnd() const {
85 return fStream->isAtEnd();
194 if (size > 0 && !fStream->isAtEnd()) {
  /external/skia/src/images/
SkStreamHelpers.cpp 35 } while (!stream->isAtEnd());
  /external/skia/src/utils/
SkFrontBufferedStream.cpp 19 virtual bool isAtEnd() const SK_OVERRIDE;
82 bool FrontBufferedStream::isAtEnd() const {
89 return fStream->isAtEnd();
190 if (size > 0 && !fStream->isAtEnd()) {
  /frameworks/base/core/jni/android/graphics/
Utils.h 52 virtual bool isAtEnd() const;
Utils.cpp 50 bool AssetStreamAdaptor::isAtEnd() const {
  /external/chromium_org/third_party/skia/src/utils/win/
SkDWriteFontFileStream.h 28 virtual bool isAtEnd() const SK_OVERRIDE;
  /external/clang/include/clang/Lex/
TokenLexer.h 148 /// isAtEnd - Return true if the next lex call will pop this macro off the
150 bool isAtEnd() const {
  /external/skia/src/utils/win/
SkDWriteFontFileStream.h 28 virtual bool isAtEnd() const SK_OVERRIDE;
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java 98 assertTrue(input.isAtEnd());
109 assertTrue(input.isAtEnd());
202 assertTrue(input.isAtEnd());
209 assertTrue(input.isAtEnd());
221 assertTrue(input.isAtEnd());
228 assertTrue(input.isAtEnd());
344 assertTrue(input.isAtEnd());
  /external/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java 98 assertTrue(input.isAtEnd());
109 assertTrue(input.isAtEnd());
202 assertTrue(input.isAtEnd());
209 assertTrue(input.isAtEnd());
221 assertTrue(input.isAtEnd());
228 assertTrue(input.isAtEnd());
347 assertTrue(input.isAtEnd());
  /external/llvm/include/llvm/Support/
YAMLParser.h 319 assert((C.IsAtBeginning || C.IsAtEnd) && "Cannot skip mid parse!");
345 , IsAtEnd(false)
371 bool IsAtEnd;
404 , IsAtEnd(false)
433 bool IsAtEnd;
516 if (isAtEnd() || Other.isAtEnd())
517 return isAtEnd() && Other.isAtEnd();
545 bool isAtEnd() const
    [all...]
  /external/skia/tests/
FrontBufferedStreamTest.cpp 21 REPORTER_ASSERT(reporter, bytesRead == bytesToRead || bufferedStream->isAtEnd());
104 // A custom class whose isAtEnd behaves the way Android's stream does - since it is an adaptor to a
121 bool isAtEnd() const SK_OVERRIDE {
StreamTest.cpp 36 // isAtEnd might not return true until after the first failing read.
37 REPORTER_ASSERT(reporter, stream->isAtEnd());
106 REPORTER_ASSERT(reporter, stream3->isAtEnd());
  /external/chromium_org/third_party/skia/include/core/
SkStream.h 70 virtual bool isAtEnd() const = 0;
260 virtual bool isAtEnd() const SK_OVERRIDE;
332 virtual bool isAtEnd() const SK_OVERRIDE;
  /external/skia/include/core/
SkStream.h 70 virtual bool isAtEnd() const = 0;
260 virtual bool isAtEnd() const SK_OVERRIDE;
332 virtual bool isAtEnd() const SK_OVERRIDE;
  /external/clang/lib/Lex/
TokenLexer.cpp 423 if (isAtEnd()) {
452 if (!isAtEnd() && Tokens[CurToken].is(tok::hashhash) && Macro) {
523 assert(!isAtEnd() && "No token on the RHS of a paste operator!");
650 } while (!isAtEnd() && Tokens[CurToken].is(tok::hashhash));
689 if (isAtEnd())
697 return Tokens[NumTokens-1].is(tok::eod) && !isAtEnd();
    [all...]
  /external/chromium_org/third_party/mozilla/
NSString+Utils.mm 111 while (![cleanerScanner isAtEnd]) {
130 while (![cleanerScanner isAtEnd])
  /external/llvm/include/llvm/ADT/
SCCIterator.h 144 // Direct loop termination test: I.isAtEnd() is more efficient than I == end()
145 inline bool isAtEnd() const {
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
CodedInputByteBufferNano.java 71 if (isAtEnd()) {
532 public boolean isAtEnd() {
  /external/chromium_org/third_party/skia/src/core/
SkStream.cpp 226 bool SkFILEStream::isAtEnd() const {
380 bool SkMemoryStream::isAtEnd() const {
709 virtual bool isAtEnd() const SK_OVERRIDE {
  /external/skia/src/core/
SkStream.cpp 226 bool SkFILEStream::isAtEnd() const {
380 bool SkMemoryStream::isAtEnd() const {
709 virtual bool isAtEnd() const SK_OVERRIDE {
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 99 if (isAtEnd()) {
700 public boolean isAtEnd() throws IOException {
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 81 if (isAtEnd()) {
645 public boolean isAtEnd() throws IOException {
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 79 if (isAtEnd()) {
589 public boolean isAtEnd() throws IOException {

Completed in 710 milliseconds

1 2