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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
OptionalDataException.java 36 public boolean eof; field in class:OptionalDataException
  /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;
  /libcore/luni/src/main/java/java/util/zip/
InflaterInputStream.java 61 boolean eof; field in class:InflaterInputStream
146 if (eof) {
154 // Invariant: if reading returns -1 or throws, eof must be true.
158 eof = inf.finished();
161 } else if (eof) {
164 eof = true;
167 eof = true;
172 eof = true;
238 if (eof) {
255 eof = true
    [all...]
  /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/astl/tests/
test_char_traits.cpp 41 // which is eof().
43 EXPECT_TRUE(char_traits<char>::to_int_type('\xff') != char_traits<char>::eof());
  /external/stlport/test/unit/
iostream_test.cpp 51 CPPUNIT_ASSERT( istr.eof() );
56 CPPUNIT_ASSERT( istr.eof() );
70 CPPUNIT_ASSERT( !istr.eof() );
75 CPPUNIT_ASSERT( istr.eof() );
  /ndk/tests/device/test-gnustl-full/unit/
iostream_test.cpp 51 CPPUNIT_ASSERT( istr.eof() );
56 CPPUNIT_ASSERT( istr.eof() );
70 CPPUNIT_ASSERT( !istr.eof() );
75 CPPUNIT_ASSERT( istr.eof() );
  /ndk/tests/device/test-stlport/unit/
iostream_test.cpp 51 CPPUNIT_ASSERT( istr.eof() );
56 CPPUNIT_ASSERT( istr.eof() );
70 CPPUNIT_ASSERT( !istr.eof() );
75 CPPUNIT_ASSERT( istr.eof() );
  /external/stlport/src/
stdio_streambuf.cpp 163 if (c != EOF) {
168 return traits_type::eof();
177 return c != EOF ? c : traits_type::eof();
181 if (c != traits_type::eof()) {
183 return result != EOF ? result : traits_type::eof();
191 return traits_type::eof();
205 if (c == traits_type::eof()) {
214 return traits_type::eof();
    [all...]
stdio_streambuf.h 82 virtual int_type pbackfail(int_type c = traits_type::eof());
92 int_type overflow(int_type c = traits_type::eof());
  /ndk/sources/cxx-stl/stlport/src/
stdio_streambuf.cpp 163 if (c != EOF) {
168 return traits_type::eof();
177 return c != EOF ? c : traits_type::eof();
181 if (c != traits_type::eof()) {
183 return result != EOF ? result : traits_type::eof();
191 return traits_type::eof();
205 if (c == traits_type::eof()) {
214 return traits_type::eof();
    [all...]
stdio_streambuf.h 82 virtual int_type pbackfail(int_type c = traits_type::eof());
92 int_type overflow(int_type c = traits_type::eof());
  /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/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;
  /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;
  /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...]
  /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
  /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...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
stdio_sync_filebuf.h 68 : _M_file(__f), _M_unget_buf(traits_type::eof())
107 pbackfail(int_type __c = traits_type::eof())
110 const int_type __eof = traits_type::eof();
132 overflow(int_type __c = traits_type::eof())
135 if (traits_type::eq_int_type(__c, traits_type::eof()))
138 __ret = traits_type::eof();
206 _M_unget_buf = traits_type::eof();
236 const int_type __eof = traits_type::eof();
249 _M_unget_buf = traits_type::eof();
259 const int_type __eof = traits_type::eof();
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
stdio_sync_filebuf.h 68 : _M_file(__f), _M_unget_buf(traits_type::eof())
107 pbackfail(int_type __c = traits_type::eof())
110 const int_type __eof = traits_type::eof();
132 overflow(int_type __c = traits_type::eof())
135 if (traits_type::eq_int_type(__c, traits_type::eof()))
138 __ret = traits_type::eof();
206 _M_unget_buf = traits_type::eof();
236 const int_type __eof = traits_type::eof();
249 _M_unget_buf = traits_type::eof();
259 const int_type __eof = traits_type::eof();
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
stdio_sync_filebuf.h 68 : _M_file(__f), _M_unget_buf(traits_type::eof())
107 pbackfail(int_type __c = traits_type::eof())
110 const int_type __eof = traits_type::eof();
132 overflow(int_type __c = traits_type::eof())
135 if (traits_type::eq_int_type(__c, traits_type::eof()))
138 __ret = traits_type::eof();
206 _M_unget_buf = traits_type::eof();
236 const int_type __eof = traits_type::eof();
249 _M_unget_buf = traits_type::eof();
259 const int_type __eof = traits_type::eof();
    [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/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;
  /sdk/emulator/qtools/
q2g.cpp 62 bool eof = false; local
63 while (!eof) {
95 eof = GetNextValidEvent(trace, &event, &ignored, &sym);

Completed in 1812 milliseconds

1 2 3 4 5 6 7 8 91011>>