Searched defs:eof (Results 76 - 100 of 139) sorted by relevance

123456

/external/chromium_org/third_party/pexpect/
H A Dpexpect.py1052 It is the responsibility of the caller to ensure the eof is sent at the
1090 def eof(self): member in class:spawn
/external/chromium_org/third_party/skia/src/core/
H A DSkReadBuffer.h89 bool eof() { return fReader.eof(); } function in class:SkReadBuffer
/external/clang/include/clang/AST/
H A DCommentLexer.h35 eof, enumerator in enum:clang::comments::tok::TokenKind
/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/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/lldb/test/pexpect-2.4/
H A Dpexpect.py1004 It is the responsibility of the caller to ensure the eof is sent at the
1042 def eof (self): member in class:spawn
/external/skia/include/core/
H A DSkReadBuffer.h86 bool eof() { return fReader.eof(); } function in class:SkReadBuffer
/external/srec/portable/src/
H A DPFileWrap.c363 ESR_BOOL eof; local
365 PFileIsEOF ( stream, &eof );
367 if ( ! eof )
/external/chromium_org/net/spdy/
H A Dspdy_stream.cc177 bool eof = (buffer == NULL); local
186 if (eof) {
/external/chromium_org/third_party/icu/source/test/perf/ubrkperf/
H A Dubrkperfold.cpp473 UBool eof() {return fEof;}; function in class:UCharFile
574 int ch = fgetc(fFile); // Note: c and ch are separate cause eof test doesn't work on UChar type.
709 if(f.eof()) {
/external/icu/icu4c/source/test/perf/ubrkperf/
H A Dubrkperfold.cpp473 UBool eof() {return fEof;}; function in class:UCharFile
574 int ch = fgetc(fFile); // Note: c and ch are separate cause eof test doesn't work on UChar type.
709 if(f.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;
/external/nanopb-c/
H A Dpb_decode.c246 bool checkreturn pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof) argument
249 *eof = false;
256 *eof = true;
263 *eof = true; /* Special feature: allow 0-terminated messages. */
809 bool eof; local
811 if (!pb_decode_tag(stream, &wire_type, &tag, &eof))
813 if (eof)
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_imelody.c333 EAS_BOOL eof; local
375 eof = EAS_FALSE;
376 while (!eof)
449 eof = EAS_TRUE;
464 eof = EAS_TRUE;
483 eof = EAS_TRUE;
489 eof = EAS_TRUE;
495 eof = EAS_TRUE;
503 eof = EAS_TRUE;
510 eof
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_imelody.c333 EAS_BOOL eof; local
375 eof = EAS_FALSE;
376 while (!eof)
449 eof = EAS_TRUE;
464 eof = EAS_TRUE;
483 eof = EAS_TRUE;
489 eof = EAS_TRUE;
495 eof = EAS_TRUE;
503 eof = EAS_TRUE;
510 eof
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_imelody.c333 EAS_BOOL eof; local
379 eof = EAS_FALSE;
380 while (!eof)
458 eof = EAS_TRUE;
473 eof = EAS_TRUE;
492 eof = EAS_TRUE;
498 eof = EAS_TRUE;
504 eof = EAS_TRUE;
512 eof = EAS_TRUE;
519 eof
[all...]
/external/stlport/stlport/stl/
H A D_ios_base.h173 bool eof() const { return (_M_iostate & eofbit) != 0; } function in class:ios_base
/external/valgrind/main/exp-sgcheck/
H A Dpc_common.c741 Bool eof; local
743 eof = VG_(get_line) ( fd, bufpp, nBufp, lineno );
744 if (eof) return False;
/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/chromium_org/net/disk_cache/blockfile/
H A Dentry_impl_v3.cc65 // actual file has |eof| bytes stored. Note that the number of bytes to read
68 bool PreRead(int eof, int offset, int* len);
156 bool EntryImplV3::UserBuffer::PreRead(int eof, int offset, int* len) { argument
162 if (offset >= eof)
168 *len = std::min(*len, eof - offset);
801 int eof = address.is_initialized() ? entry_size : 0; local
803 user_buffers_[index]->PreRead(eof, offset, &buf_len)) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
H A DJavaScriptFormatter.js985 "eof": FormatterWorker.JavaScriptTokens.EOS,
/external/clang/lib/Format/
H A DUnwrappedLineParser.cpp79 // \c getNextToken() after it has encountered the first eof token.
80 assert(!eof());
82 if (eof())
95 bool eof() { return Token && Token->HasUnescapedNewline; } function in class:clang::format::__anon17900::ScopedMacroState
102 FormatTok.Tok.setKind(tok::eof);
236 // Create line with eof token.
305 } while (!eof());
310 // a closing brace or eof - note that getNextToken() will
386 } while (Tok->Tok.isNot(tok::eof) && !LBraceStack.empty());
585 } while (!eof());
1496 bool UnwrappedLineParser::eof() const { return FormatTok->Tok.is(tok::eof); } function in class:clang::format::UnwrappedLineParser
[all...]
/external/mksh/src/
H A Dlex.c1129 const char *eof, *eofp; local
1143 eof = iop->flag & IONDELIM ? "<<" : evalstr(iop->delim, 0);
1152 eofp = eof;
1193 yyerror("%s '%s' unclosed\n", "here document", eof);
1445 /* Note: if input is all nulls, this is not eof */
1655 * if eof or newline was found.
/external/qemu/hw/android/goldfish/
H A Dnand.c391 int eof = 0; local
400 eof = 1;
404 if(!eof) {
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DParser.java632 public void eof(char[] buff, int offset, int length) throws SAXException { method in class:Parser

Completed in 6486 milliseconds

123456