HomeSort by relevance Sort by last modified time
    Searched defs:eof (Results 51 - 75 of 125) sorted by null

1 23 4 5

  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
GenericSignatureParser.java 83 char symbol; // 0: eof; else valid term symbol or first char of identifier.
89 * eof is private to the scan methods
92 private boolean eof; field in class:GenericSignatureParser
105 this.eof = false;
109 this.eof = true;
123 if (!eof) {
149 if (!eof) {
177 if (!eof) {
203 if (!eof) {
442 if (!eof) {
    [all...]
  /system/extras/tests/sdcard/
sysutil.cpp 95 bool eof = false; local
101 while (size > 0 && !error && !eof && attempts < kMaxAttempts)
117 eof = true;
136 if (!eof)
476 bool eof = false; local
482 while (size > 0 && !error && !eof && attempts < kMaxAttempts)
498 eof = true;
529 bool eof = false; local
537 while (size > 0 && !error && !eof && attempts < kMaxAttempts)
553 eof = true
    [all...]
  /system/media/wilhelm/tests/sandbox/
playbq.c 38 SLboolean eof; // whether we have hit EOF on input yet variable
75 if (!eof) {
80 eof = SL_BOOLEAN_TRUE;
316 // loop until EOF or no more buffers
323 eof = SL_BOOLEAN_TRUE;
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 98 private char symbol; // 0: eof; else valid term symbol or first char of
104 * Scanner: eof is private to the scan methods and it's set only when a scan
107 private boolean eof; field in class:GenericSignatureParser
127 this.eof = false;
130 this.eof = true;
195 if (!eof) {
213 if (!eof) {
232 if (!eof) {
252 if (!eof) {
586 if (!eof) {
    [all...]
  /external/antlr/src/org/antlr/runtime/tree/
BufferedTreeNodeStream.java 40 * includes pointers to DOWN and UP and EOF nodes.
73 return eof;
86 protected Object eof; field in class:BufferedTreeNodeStream
89 * This buffer includes pointers to DOWN, UP, and EOF nodes.
136 eof = adaptor.create(Token.EOF, "EOF");
229 return eof;
240 i--; // if at EOF, have to start one back
244 (adaptor.getType(get(i))==Token.EOF ||
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_imelody.c 333 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 = EAS_TRUE
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_imelody.c 333 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 = EAS_TRUE
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_imelody.c 333 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 = EAS_TRUE
    [all...]
  /external/stlport/stlport/stl/
_ios_base.h 173 bool eof() const { return (_M_iostate & eofbit) != 0; } function in class:ios_base
  /external/valgrind/main/exp-ptrcheck/
pc_common.c 739 Bool eof; local
741 eof = VG_(get_line) ( fd, bufpp, nBufp, NULL );
742 if (eof) return False;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 173 bool eof() const { return (_M_iostate & eofbit) != 0; } function in class:ios_base
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 173 bool eof() const { return (_M_iostate & eofbit) != 0; } function in class:ios_base
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 173 bool eof() const { return (_M_iostate & eofbit) != 0; } function in class:ios_base
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_ios_base.h 173 bool eof() const { return (_M_iostate & eofbit) != 0; } function in class:ios_base
  /external/icu4c/test/perf/ubrkperf/
ubrkperfold.cpp 473 UBool eof() {return fEof;}; function in class:UCharFile
548 if (cH == EOF) {
560 if (cL == EOF) {
574 int ch = fgetc(fFile); // Note: c and ch are separate cause eof test doesn't work on UChar type.
575 if (ch == EOF) {
709 if(f.eof()) {
  /external/qemu/hw/
goldfish_nand.c 221 XLOG("%s EOF seek failed: %s\n", __FUNCTION__, strerror(errno));
367 int eof = 0; local
376 eof = 1;
380 if(!eof) {
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 659 long currentPos = getFilePointer(), eof = length(); local
660 int newCount = (int) ((currentPos + count > eof) ? eof - currentPos : count);
  /external/chromium/net/disk_cache/
entry_impl.cc 112 // actual file has |eof| bytes stored. Note that the number of bytes to read
115 bool PreRead(int eof, int offset, int* len);
203 bool EntryImpl::UserBuffer::PreRead(int eof, int offset, int* len) {
209 if (offset >= eof)
215 *len = std::min(*len, eof - offset);
956 int eof = address.is_initialized() ? entry_size : 0; local
958 user_buffers_[index]->PreRead(eof, offset, &buf_len)) {
    [all...]
  /external/icu4c/test/perf/collationperf/
collperf.cpp 1212 UBool eof() {return fEof;}; function in class:UCharFile
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 18 private boolean eof; field in class:Lexer
    [all...]
  /external/mksh/src/
lex.c 1030 /* need here strings at EOF */
1146 /* only here strings at EOF */
1161 char *volatile eof; local
1177 eof = evalstr(iop->delim, 0);
1185 eofp = eof;
1200 /* Allow EOF here so commands with out trailing newlines
1210 yyerror("here document '%s' unclosed\n", eof);
1268 s->str = NULL; /* return 0 for EOF by default */
1335 /* avoid reading eof twice */
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLScanner.java 272 // pushing back EOF.
589 h.eof(theOutputBuffer, 0, 0);
  /external/valgrind/main/coregrind/
m_errormgr.c 1021 0 if eof or < 0 if error. */
1039 return 0; /* eof */
1147 Bool eof; local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
nfs_prot.h 233 bool_t eof; member in struct:dirlist
  /bionic/libc/kernel/common/linux/
nfs_xdr.h 200 int eof; member in struct:nfs_readres
232 int eof; member in struct:nfs_entry

Completed in 4436 milliseconds

1 23 4 5