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

1 2 3 4 56 7 8 91011>>

  /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:__anon2790
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...]
  /external/python/cpython3/Tools/msi/
build.bat 30 if errorlevel 1 goto :eof
32 if errorlevel 1 goto :eof
36 if errorlevel 1 goto :eof
38 if errorlevel 1 goto :eof
43 if errorlevel 1 goto :eof
62 if errorlevel 1 goto :eof
66 if errorlevel 1 goto :eof
  /external/pcre/dist2/
RunTest.bat 42 goto :eof
220 goto :eof
266 goto :eof
301 goto :eof
305 goto :eof
309 goto :eof
314 goto :eof
319 goto :eof
324 goto :eof
329 goto :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...]
  /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/antlr/antlr-3.4/runtime/Python/unittests/
testdfa.py 33 eof=[],
  /external/curl/tests/libtest/
lib654.c 52 int eof = !*pooh->readptr; local
57 eof = pooh->sizeleft <= 0;
58 if(!eof)
61 if(!eof) {
  /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:__anon20561
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.cons/
ccp.pass.cpp 34 assert(in.eof());
ccp_size.pass.cpp 34 assert(in.eof());
cp.pass.cpp 34 assert(in.eof());
cp_size.pass.cpp 34 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 ch = base::traits_type::eof())
43 if (ch != base::traits_type::eof())
69 assert(is.eof());
84 assert(is.eof());
get_streambuf_chart.pass.cpp 42 overflow(typename base::int_type ch = base::traits_type::eof())
44 if (ch != 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 = traits_type::eof())
sungetc.pass.cpp 35 int_type pbackfail(int_type = 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/python/cpython3/Lib/
_sitebuiltins.py 14 def __init__(self, name, eof):
16 self.eof = eof
18 return 'Use %s() or %s to exit' % (self.name, self.eof)
  /external/xmlrpcpp/src/
XmlRpcSocket.h 31 static bool nbRead(int socket, std::string& s, bool *eof);
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidItem.cpp 68 while (!is.eof()) {
89 if (!is.eof()) {
106 if (is.eof()) {
112 h.valid = !is.eof();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.cons/
ccp.pass.cpp 34 assert(in.eof());
ccp_size.pass.cpp 34 assert(in.eof());

Completed in 541 milliseconds

1 2 3 4 56 7 8 91011>>