HomeSort by relevance Sort by last modified time
    Searched refs:eof (Results 126 - 150 of 876) sorted by null

1 2 3 4 56 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/
unsigned_long_long.pass.cpp 58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
unsigned_short.pass.cpp 58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
pbackfail.pass.cpp 14 // int_type pbackfail(int_type c = traits::eof());
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
48 assert(f.pbackfail(L'a') == test_buf::traits_type::eof());
55 assert(f.pbackfail(L'a') == test_buf::traits_type::eof());
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/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/antlr/antlr-3.4/runtime/Python/antlr3/
dfa.py 33 from antlr3.constants import EOF
49 eot, eof, min, max, accept, special, transition
56 self.eof = eof
94 #print "LA = %d (%r)" % (c, unichr(c) if c >= 0 else 'EOF')
135 # EOF Transition to accept state?
136 if c == EOF and self.eof[s] >= 0:
137 #print "EOF Transition to accept state %d" \
138 # % self.accept[self.eof[s]
    [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,
67 size_t* sizep; /* pointer to eof */
70 size_t eof; /* furthest point we've written to */ member in struct:__anon74323
80 * that we maintain just past EOF.
117 * If we previously seeked beyond EOF, zero-fill the gap.
128 /* seeked past EOF earlier? */
129 if (stream->eof < stream->offset) {
131 stream->eof, stream->offset-1));
132 memset(*stream->bufp + stream->eof, '\0'
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
stdio_sync_filebuf.h 77 : _M_file(__f), _M_unget_buf(traits_type::eof())
116 pbackfail(int_type __c = traits_type::eof())
119 const int_type __eof = traits_type::eof();
141 overflow(int_type __c = traits_type::eof())
144 if (traits_type::eq_int_type(__c, traits_type::eof()))
147 __ret = traits_type::eof();
215 _M_unget_buf = traits_type::eof();
245 const int_type __eof = traits_type::eof();
258 _M_unget_buf = traits_type::eof();
268 const int_type __eof = traits_type::eof();
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
stdio_sync_filebuf.h 77 : _M_file(__f), _M_unget_buf(traits_type::eof())
116 pbackfail(int_type __c = traits_type::eof())
119 const int_type __eof = traits_type::eof();
141 overflow(int_type __c = traits_type::eof())
144 if (traits_type::eq_int_type(__c, traits_type::eof()))
147 __ret = traits_type::eof();
215 _M_unget_buf = traits_type::eof();
245 const int_type __eof = traits_type::eof();
258 _M_unget_buf = traits_type::eof();
268 const int_type __eof = traits_type::eof();
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
stdio_sync_filebuf.h 77 : _M_file(__f), _M_unget_buf(traits_type::eof())
116 pbackfail(int_type __c = traits_type::eof())
119 const int_type __eof = traits_type::eof();
141 overflow(int_type __c = traits_type::eof())
144 if (traits_type::eq_int_type(__c, traits_type::eof()))
147 __ret = traits_type::eof();
215 _M_unget_buf = traits_type::eof();
245 const int_type __eof = traits_type::eof();
258 _M_unget_buf = traits_type::eof();
268 const int_type __eof = traits_type::eof();
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
stdio_sync_filebuf.h 77 : _M_file(__f), _M_unget_buf(traits_type::eof())
116 pbackfail(int_type __c = traits_type::eof())
119 const int_type __eof = traits_type::eof();
141 overflow(int_type __c = traits_type::eof())
144 if (traits_type::eq_int_type(__c, traits_type::eof()))
147 __ret = traits_type::eof();
215 _M_unget_buf = traits_type::eof();
245 const int_type __eof = traits_type::eof();
258 _M_unget_buf = traits_type::eof();
268 const int_type __eof = traits_type::eof();
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/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/opencv3/3rdparty/libjasper/
jpc_mqdec.c 164 mqdec->eof = 0;
167 if ((c = jas_stream_getc(mqdec->in)) == EOF) {
168 /* We have encountered an I/O error or EOF. */
170 mqdec->eof = 1;
242 mqdec->eof, mqdec->inbuffer);
253 mqdec->eof, mqdec->inbuffer);
267 if (!mqdec->eof) {
268 if ((c = jas_stream_getc(mqdec->in)) == EOF) {
269 mqdec->eof = 1;
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testdfa.py 33 eof=[],
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
dynamodb_load 29 eof = False
30 while not eof:
37 eof = True
45 if eof and buffer.strip():
  /external/flac/include/FLAC/
callback.h 141 /** Signature for the EOF callback.
158 * \c 0 on success, \c EOF on error.
175 FLAC__IOCallback_Eof eof; member in struct:__anon11173
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.cons/
ccp.pass.cpp 33 assert(in.eof());
ccp_size.pass.cpp 33 assert(in.eof());
cp.pass.cpp 33 assert(in.eof());
cp_size.pass.cpp 33 assert(in.eof());
  /external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
get_streambuf.pass.cpp 41 overflow(typename base::int_type __c = base::traits_type::eof())
43 if (__c != base::traits_type::eof())
69 assert(is.eof());
84 assert(is.eof());
get_streambuf_chart.pass.cpp 42 overflow(typename base::int_type __c = base::traits_type::eof())
44 if (__c != base::traits_type::eof())
70 assert(is.eof());
85 assert(is.eof());
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/
sputbackc.pass.cpp 35 int_type pbackfail(int_type c = traits_type::eof())
sungetc.pass.cpp 35 int_type pbackfail(int_type c = traits_type::eof())
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/
get_line_delim.pass.cpp 38 assert(in.eof());
54 assert(in.eof());
72 assert(in.eof());
89 assert(in.eof());
  /external/xmlrpcpp/src/
XmlRpcSocket.h 31 static bool nbRead(int socket, std::string& s, bool *eof);

Completed in 240 milliseconds

1 2 3 4 56 7 8 91011>>