Searched refs:eof (Results 201 - 225 of 326) sorted by relevance

1234567891011>>

/external/clang/lib/Lex/
H A DPPLexerChange.cpp368 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
428 CurLexer->FormTokenWithChars(Result, EndPos, tok::eof);
584 while (Tok.isNot(tok::eod) && Tok.isNot(tok::eof))
/external/clang/unittests/Basic/
H A DSourceManagerTest.cpp95 if (tok.is(tok::eof))
212 if (tok.is(tok::eof))
314 if (tok.is(tok::eof))
/external/llvm/lib/ProfileData/
H A DInstrProfReader.cpp108 return error(instrprof_error::eof);
205 return instrprof_error::eof;
385 return error(instrprof_error::eof);
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dgzlib.c80 state->eof = 0; /* not at end of file */
400 state->eof = 0;
563 state->eof = 0;
/external/zlib/src/
H A Dgzlib.c80 state->eof = 0; /* not at end of file */
400 state->eof = 0;
563 state->eof = 0;
/external/clang/lib/Frontend/
H A DCacheTokens.cpp311 if ((Tok.isAtStartOfLine() || Tok.is(tok::eof)) &&
411 while (Tok.isNot(tok::eof) && !Tok.isAtStartOfLine());
438 while (Tok.isNot(tok::eof));
593 do { PP.Lex(Tok); } while (Tok.isNot(tok::eof));
H A DFrontendActions.cpp581 while (RawTok.isNot(tok::eof)) {
597 } while (Tok.isNot(tok::eof));
620 } while (Tok.isNot(tok::eof));
/external/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp287 } while (!DirectiveToken.is(tok::eod) && DirectiveToken.isNot(tok::eof));
419 while (RawToken.isNot(tok::eof)) {
538 } while (RawToken.isNot(tok::eod) && RawToken.isNot(tok::eof));
583 } while (Tok.isNot(tok::eof));
/external/clang/unittests/Lex/
H A DPPConditionalDirectiveRecordTest.cpp113 if (tok.is(tok::eof))
H A DPPCallbacksTest.cpp183 if (Tok.is(tok::eof))
228 if (Tok.is(tok::eof))
/external/google-breakpad/src/processor/
H A Dsimple_symbol_supplier.cc92 string::traits_type::eof()));
/external/iputils/Modules/
H A Dpg3.c461 int len, int *eof, void *data)
467 *eof = 1;
473 int len, int *eof, void *data)
489 *eof = 1;
460 proc_pg_busy_read(char *buf , char **start, off_t offset, int len, int *eof, void *data) argument
472 proc_pg_read(char *buf , char **start, off_t offset, int len, int *eof, void *data) argument
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream_sentry/
H A Dctor.pass.cpp115 assert(is.eof());
/external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/
H A Doverflow.pass.cpp15 // int_type overflow(int_type c = traits::eof());
32 overflow(typename base::int_type c = base::type_traits::eof())
/external/libmtp/src/
H A Dplaylist-spl.c343 int eof = 0; local
348 while(!eof) {
365 eof = 1;
368 IF_DEBUG() printf("read buff= {%dB new, %dB old/left-over}%s\n",(int)rdcnt, (int)(iw-w), eof?", EOF":"");
427 // otherwise we need to save our partial work, if we're not quiting (eof).
/external/skia/src/core/
H A DSkBuffer.h56 bool eof() const { return fPos >= fStop; } function in class:SkRBuffer
H A DSkReader32.h38 bool eof() const { return fCurr >= fStop; } function in class:SkReader32
/external/skia/tests/
H A DReader32Test.cpp12 REPORTER_ASSERT(reporter, reader.eof());
H A DWriter32Test.cpp131 REPORTER_ASSERT(reporter, !reader.eof());
142 REPORTER_ASSERT(reporter, reader.eof());
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliFlexLexer.java3290 boolean eof = zzRefill();
3294 if (eof)
3321 boolean eof = zzRefill();
3327 if (eof) {
/external/zlib/src/contrib/iostream3/
H A Dzfstream.h125 overflow(int_type c = traits_type::eof());
152 // virtual int_type pbackfail(int_type c = traits_type::eof());
/external/protobuf/src/google/protobuf/
H A Dmessage.cc132 return ParseFromZeroCopyStream(&zero_copy_input) && input->eof();
137 return ParsePartialFromZeroCopyStream(&zero_copy_input) && input->eof();
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDFA.java210 public Vector eof; field in class:DFA
325 public List getJavaCompressedEOF() { return getRunLengthEncoding(eof); }
407 eof = new Vector(this.getNumberOfStates()); // Vector<int>
408 eof.setSize(this.getNumberOfStates());
463 System.out.println("eof="+eof);
602 // eof[s] points to accept state
603 eof.set(s.stateNumber, Utils.integer(edge.target.stateNumber));
615 eof.set(s.stateNumber, Utils.integer(edge.target.stateNumber));
/external/clang/lib/AST/
H A DCommentParser.cpp560 case tok::eof:
602 if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
611 if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
744 case tok::eof:
765 while (Tok.isNot(tok::eof)) {
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
H A DLexer.java18 private boolean eof; field in class:Lexer
1051 if(this.eof)
1060 this.eof = true;
1071 this.eof = false;
1084 this.eof = false;

Completed in 826 milliseconds

1234567891011>>