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

12

/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTScannerTest.cpp46 EXPECT_FALSE(scanner8.isAtEnd());
52 EXPECT_FALSE(scanner16.isAtEnd());
55 EXPECT_TRUE(scannerEmpty.isAtEnd());
61 EXPECT_FALSE(scanner.isAtEnd());
75 EXPECT_TRUE(scanner.isAtEnd());
100 EXPECT_FALSE(scanner.isAtEnd());
104 EXPECT_FALSE(scanner.isAtEnd());
109 EXPECT_TRUE(scanner.isAtEnd());
126 EXPECT_FALSE(scanner.isAtEnd());
142 EXPECT_FALSE(scanner.isAtEnd());
[all...]
H A DVTTScanner.h76 bool isAtEnd() const { return position() == end(); } function in class:WebCore::VTTScanner
78 bool match(char c) const { return !isAtEnd() && currentChar() == c; }
H A DVTTRegion.cpp196 while (!input.isAtEnd()) {
199 if (input.isAtEnd())
/external/chromium_org/third_party/skia/src/images/
H A DSkStreamHelpers.cpp36 } while (!stream->isAtEnd());
65 } while (!stream->isAtEnd());
/external/skia/src/images/
H A DSkStreamHelpers.cpp36 } while (!stream->isAtEnd());
65 } while (!stream->isAtEnd());
/external/skia/src/utils/
H A DSkFrontBufferedStream.cpp19 virtual bool isAtEnd() const SK_OVERRIDE;
82 bool FrontBufferedStream::isAtEnd() const { function in class:FrontBufferedStream
89 return fStream->isAtEnd();
178 if (size > 0 && fBufferedSoFar < fBufferSize && !fStream->isAtEnd()) {
190 if (size > 0 && !fStream->isAtEnd()) {
/external/chromium_org/third_party/skia/src/utils/
H A DSkFrontBufferedStream.cpp19 virtual bool isAtEnd() const SK_OVERRIDE;
82 bool FrontBufferedStream::isAtEnd() const { function in class:FrontBufferedStream
89 return fStream->isAtEnd();
190 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/chromium_org/third_party/skia/tests/
H A DFrontBufferedStreamTest.cpp20 REPORTER_ASSERT(reporter, bytesRead == bytesToRead || bufferedStream->isAtEnd());
120 // A custom class whose isAtEnd behaves the way Android's stream does - since it is an adaptor to a
137 bool isAtEnd() const SK_OVERRIDE {
185 virtual bool isAtEnd() const SK_OVERRIDE {
227 REPORTER_ASSERT(reporter, !bufferedStream->isAtEnd());
233 REPORTER_ASSERT(reporter, bufferedStream->isAtEnd());
H A DStreamTest.cpp35 // isAtEnd might not return true until after the first failing read.
36 REPORTER_ASSERT(reporter, stream->isAtEnd());
103 REPORTER_ASSERT(reporter, stream3->isAtEnd());
/external/skia/tests/
H A DFrontBufferedStreamTest.cpp20 REPORTER_ASSERT(reporter, bytesRead == bytesToRead || bufferedStream->isAtEnd());
120 // A custom class whose isAtEnd behaves the way Android's stream does - since it is an adaptor to a
137 bool isAtEnd() const SK_OVERRIDE {
185 virtual bool isAtEnd() const SK_OVERRIDE {
227 REPORTER_ASSERT(reporter, !bufferedStream->isAtEnd());
233 REPORTER_ASSERT(reporter, bufferedStream->isAtEnd());
H A DStreamTest.cpp35 // isAtEnd might not return true until after the first failing read.
36 REPORTER_ASSERT(reporter, stream->isAtEnd());
103 REPORTER_ASSERT(reporter, stream3->isAtEnd());
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
H A DCodedInputStreamTest.java98 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/
H A DCodedInputStreamTest.java98 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/chromium_org/third_party/skia/src/utils/win/
H A DSkDWriteFontFileStream.h28 virtual bool isAtEnd() const SK_OVERRIDE;
/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/skia/src/utils/win/
H A DSkDWriteFontFileStream.h28 virtual bool isAtEnd() const SK_OVERRIDE;
/external/llvm/include/llvm/Support/
H A DYAMLParser.h525 if (isAtEnd() || Other.isAtEnd())
526 return isAtEnd() && Other.isAtEnd();
548 bool isAtEnd() const { return !Doc || !*Doc; } function in class:llvm::yaml::document_iterator
/external/clang/lib/Lex/
H A DTokenLexer.cpp412 if (isAtEnd()) {
438 if (!isAtEnd() && Tokens[CurToken].is(tok::hashhash) && Macro) {
517 assert(!isAtEnd() && "No token on the RHS of a paste operator!");
643 } while (!isAtEnd() && Tokens[CurToken].is(tok::hashhash));
682 if (isAtEnd())
690 return Tokens[NumTokens-1].is(tok::eod) && !isAtEnd();
/external/chromium_org/third_party/skia/include/core/
H A DSkStream.h70 virtual bool isAtEnd() const = 0;
268 virtual bool isAtEnd() const SK_OVERRIDE;
340 virtual bool isAtEnd() const SK_OVERRIDE;
/external/skia/include/core/
H A DSkStream.h70 virtual bool isAtEnd() const = 0;
268 virtual bool isAtEnd() const SK_OVERRIDE;
340 virtual bool isAtEnd() const SK_OVERRIDE;
/external/chromium_org/third_party/mozilla/
H A DNSString+Utils.mm111 while (![cleanerScanner isAtEnd]) {
130 while (![cleanerScanner isAtEnd])
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DCodedInputByteBufferNano.java71 if (isAtEnd()) {
532 public boolean isAtEnd() { method in class:CodedInputByteBufferNano
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DCodedInputStream.java99 if (isAtEnd()) {
700 public boolean isAtEnd() throws IOException { method in class:CodedInputStream
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DCodedInputStream.java81 if (isAtEnd()) {
645 public boolean isAtEnd() throws IOException { method in class:CodedInputStream

Completed in 966 milliseconds

12