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

1 2 3 4 5 6 7 8

  /libcore/luni/src/main/java/java/io/
OptionalDataException.java 36 public boolean eof; field in class:OptionalDataException
  /packages/apps/Email/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 60 boolean eof; field in class:InflaterInputStream
166 if (eof) {
180 // Invariant: if reading returns -1 or throws, eof must be true.
184 eof = inf.finished();
187 } else if (eof) {
190 eof = true;
193 eof = true;
198 eof = true;
262 if (eof) {
279 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() );
full_streambuf.h 33 return traits_type::eof();
  /ndk/sources/android/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() );
full_streambuf.h 33 return traits_type::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/android/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/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;
  /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/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:__anon15942
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...]
  /sdk/emulator/qtools/
q2g.cpp 62 bool eof = false; local
63 while (!eof) {
95 eof = GetNextValidEvent(trace, &event, &ignored, &sym);
  /external/astl/include/
streambuf 78 * would return traits_type::eof().
134 * @return traits::eof() in case of error, anything else otherwise.
136 virtual int_type overflow(int_type /* c */ = traits_type::eof())
137 { return traits_type::eof(); }
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; }
  /external/stlport/stlport/stl/
_streambuf.c 56 const int_type __eof = _Traits::eof();
87 const int_type __eof = _Traits::eof();
115 const int_type __eof = _Traits::eof();
139 int_type __eof = _Traits::eof();
151 return _Traits::eof();
157 return _Traits::eof();
163 return ( _Traits::eq_int_type(this->underflow(),_Traits::eof()) ?
164 _Traits::eof() :
171 { return _Traits::eof(); }
  /ndk/sources/android/stlport/stlport/stl/
_streambuf.c 56 const int_type __eof = _Traits::eof();
87 const int_type __eof = _Traits::eof();
115 const int_type __eof = _Traits::eof();
139 int_type __eof = _Traits::eof();
151 return _Traits::eof();
157 return _Traits::eof();
163 return ( _Traits::eq_int_type(this->underflow(),_Traits::eof()) ?
164 _Traits::eof() :
171 { return _Traits::eof(); }
  /external/zlib/contrib/iostream3/
zfstream.cc 193 return traits_type::eof();
198 // Indicates error or EOF
203 return traits_type::eof();
221 return traits_type::eof();
222 // Add extra character to buffer if not EOF
223 if (!traits_type::eq_int_type(c, traits_type::eof()))
235 return traits_type::eof();
238 return traits_type::eof();
243 // Write extra character to file if not EOF
244 else if (!traits_type::eq_int_type(c, traits_type::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...]

Completed in 504 milliseconds

1 2 3 4 5 6 7 8