HomeSort by relevance Sort by last modified time
    Searched defs:eof (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /libcore/luni/src/main/java/java/io/
OptionalDataException.java 36 public boolean eof; field in class:OptionalDataException
  /external/flac/include/FLAC/
callback.h 140 /** Signature for the EOF callback.
157 * \c 0 on success, \c EOF on error.
174 FLAC__IOCallback_Eof eof; member in struct:__anon5808
  /external/astl/include/
char_traits.h 34 #include <cstdio> // For EOF
40 * char_traits defines the basic types and constants (eof) used in
90 static int_type eof() { return static_cast<int_type>(EOF); } function in struct:std::char_traits
93 { return (c == eof()) ? 0 : c; }
  /sdk/emulator/qtools/
q2g.cpp 62 bool eof = false; local
63 while (!eof) {
95 eof = GetNextValidEvent(trace, &event, &ignored, &sym);
  /system/core/libcutils/
open_memstream.c 32 * The spec says the null byte is written when a write() advances EOF,
33 * but it looks like glibc ensures the null byte is always found at EOF,
69 size_t* sizep; /* pointer to eof */
72 size_t eof; /* furthest point we've written to */ member in struct:__anon25999
82 * that we maintain just past EOF.
119 * If we previously seeked beyond EOF, zero-fill the gap.
130 /* seeked past EOF earlier? */
131 if (stream->eof < stream->offset) {
133 stream->eof, stream->offset-1));
134 memset(*stream->bufp + stream->eof, '\0'
    [all...]
  /external/antlr/src/org/antlr/runtime/tree/
TreeIterator.java 39 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
50 public Object eof; field in class:TreeIterator
68 eof = adaptor.create(Token.EOF, "EOF");
89 nodes.add(eof);
98 if ( tree==null ) return eof;
119 nodes.add(eof); // add to queue, might have UP nodes in there
  /external/chromium/base/
string16.h 66 // addition, the distinct value of eof().
110 return eq_int_type(c, eof()) ? 0 : c;
125 static int_type eof() { function in struct:base::string16_char_traits
126 return static_cast<int_type>(EOF);
  /external/chromium/googleurl/base/
string16.h 123 return eq_int_type(c, eof()) ? 0 : c;
138 static int_type eof() { function in struct:base::string16_char_traits
139 return static_cast<int_type>(EOF);
  /external/chromium/net/base/
upload_data_stream.h 61 bool eof() const { return eof_; } function in class:net::UploadDataStream
65 // placed in the IOBuffer returned by buf(), in contrast to eof() which
  /external/qemu/android/utils/
lineinput.c 22 int eof; member in struct:LineInput
103 if (input->eof) {
118 input->eof = 1;
140 return (input->eof != 0);
145 * Note: EOF corresponds to 0 here.
201 * as an eof, or bad things usually happen after that. */
202 input->eof = 1;
238 input->eof = 1;
  /external/skia/include/core/
SkBuffer.h 61 bool eof() const { return fPos >= fStop; } function in class:SkRBuffer
SkReader32.h 43 bool eof() const { return fCurr >= fStop; } function in class:SkReader32
  /external/srec/portable/include/
pstream.h 46 int eof; member in struct:PORT_FILE_HANDLE
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ScanHandler.java 61 Reports EOF.
64 public void eof(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
  /frameworks/base/core/java/android/util/
Base64InputStream.java 33 private boolean eof; field in class:Base64InputStream
63 eof = false;
138 if (eof) return;
142 eof = true;
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/input/
NullInputStream.java 69 private boolean eof; field in class:NullInputStream
141 eof = false;
181 if (eof) {
220 if (eof) {
257 eof = false;
272 if (eof) {
322 eof = true;
NullReader.java 69 private boolean eof; field in class:NullReader
125 eof = false;
165 if (eof) {
204 if (eof) {
241 eof = false;
256 if (eof) {
306 eof = true;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/
MimeBoundaryInputStream.java 42 private boolean eof = false; field in class:MimeBoundaryInputStream
93 * Determines if the parent stream has reached EOF
95 * @return <code>true</code> if EOF has been reached for the parent stream,
104 * this stream will have reached EOF.
117 if (eof) {
142 eof = parenteof;
180 eof = true;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
char_traits.h 46 # include <cstdio> // For EOF
47 # define _CHAR_TRAITS_EOF EOF
79 * right, but the int_type and state_type typedefs, and the eof()
141 eof() function in struct:char_traits
146 { return !eq_int_type(__c, eof()) ? __c : to_int_type(char_type()); }
285 // To keep both the byte 0xff and the eof symbol 0xffffffff
296 eof() function in struct:char_traits
301 { return (__c == eof()) ? 0 : __c; }
365 eof() function in struct:char_traits
370 { return eq_int_type(__c, eof()) ? 0 : __c;
468 eof() function in struct:char_traits
561 eof() function in struct:char_traits
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
char_traits.h 46 # include <cstdio> // For EOF
47 # define _CHAR_TRAITS_EOF EOF
79 * right, but the int_type and state_type typedefs, and the eof()
141 eof() function in struct:char_traits
146 { return !eq_int_type(__c, eof()) ? __c : to_int_type(char_type()); }
285 // To keep both the byte 0xff and the eof symbol 0xffffffff
296 eof() function in struct:char_traits
301 { return (__c == eof()) ? 0 : __c; }
365 eof() function in struct:char_traits
370 { return eq_int_type(__c, eof()) ? 0 : __c;
468 eof() function in struct:char_traits
561 eof() function in struct:char_traits
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
char_traits.h 46 # include <cstdio> // For EOF
47 # define _CHAR_TRAITS_EOF EOF
79 * right, but the int_type and state_type typedefs, and the eof()
141 eof() function in struct:char_traits
146 { return !eq_int_type(__c, eof()) ? __c : to_int_type(char_type()); }
285 // To keep both the byte 0xff and the eof symbol 0xffffffff
296 eof() function in struct:char_traits
301 { return (__c == eof()) ? 0 : __c; }
365 eof() function in struct:char_traits
370 { return eq_int_type(__c, eof()) ? 0 : __c;
468 eof() function in struct:char_traits
561 eof() function in struct:char_traits
    [all...]
  /external/antlr/src/org/antlr/runtime/
DFA.java 43 protected short[] eof; field in class:DFA
129 if ( c==(char)Token.EOF && eof[s]>=0 ) { // EOF Transition to accept state?
130 if ( debug ) System.err.println("accept via EOF; predict "+accept[eof[s]]+" from "+eof[s]);
131 return accept[eof[s]];
133 // not in range and not EOF/EOT, must be invalid symbol
138 System.err.println("eof["+s+"]="+eof[s])
    [all...]
  /external/antlr/src/org/antlr/runtime/misc/
LookaheadStream.java 52 public T eof = null; field in class:LookaheadStream
68 * lookahead buffer. Return eof upon end of the stream we're pulling from.
88 /** Make sure we have at least one element to remove, even if EOF */
108 if ( isEOF(o) ) eof = o;
123 if ( (p+k-1) > data.size() ) return eof;
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 88 private boolean eof = false; field in class:ChunkedInputStream
121 if (this.eof) {
126 if (this.eof) {
151 if (eof) {
156 if (eof) {
190 eof = true;
261 if (!eof) {
265 eof = true;
276 * Exhaust an input stream, reading until EOF has been encountered.
  /external/chromium/chrome/browser/resources/file_manager/js/
exif_reader.js 67 if (mark == exif.MARK_SOS || br.eof()) {
206 eof: function() {

Completed in 718 milliseconds

1 2 3 4 5