Searched refs:eof (Results 51 - 75 of 476) sorted by relevance

1234567891011>>

/external/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/
H A Dget_line.pass.cpp35 assert(in.eof());
48 assert(in.eof());
63 assert(in.eof());
77 assert(in.eof());
/external/python/cpython3/Lib/
H A D_sitebuiltins.py14 def __init__(self, name, eof):
16 self.eof = eof
18 return 'Use %s() or %s to exit' % (self.name, self.eof)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java52 public T eof = null; field in class:LookaheadStream
68 * lookahead buffer. Return eof upon end of the stream we're pulling from.
108 if ( isEOF(o) ) eof = o;
123 if ( (p+k-1) > data.size() ) return eof;
/external/autotest/client/tests/aio_dio_bugs/src/
H A DMakefile5 TESTS=aio-dio-invalidate-failure aio-dio-subblock-eof-read \
14 aio-dio-subblock-eof-read: aio-dio-subblock-eof-read.c
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/
H A Dbool.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Ddouble.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Dfloat.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Dint.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Dlong.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Dlong_double.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Dlong_long.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Dshort.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Dunsigned_int.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Dunsigned_long.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Dunsigned_long_long.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
H A Dunsigned_short.pass.cpp58 assert( is.eof());
67 assert(!is.eof());
76 assert(!is.eof());
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
H A Dget_pointer_size_chart.pass.cpp58 assert(!is.eof());
63 assert(!is.eof());
70 assert(!is.eof());
76 assert( is.eof());
82 assert( is.eof());
101 assert( is.eof());
112 assert(!is.eof());
117 assert(!is.eof());
124 assert(!is.eof());
130 assert( is.eof());
[all...]
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Dpbackfail.pass.cpp14 // 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/syslinux/com32/menu/
H A Dprintmsg.c41 int eof = 0; local
52 while (!eof && (ch = getc(f)) != EOF) {
66 eof = 1;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeIterator.java50 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/
H A Ddfa.py49 eot, eof, min, max, accept, special, transition
56 self.eof = eof
136 if c == EOF and self.eof[s] >= 0:
138 # % self.accept[self.eof[s]]
139 return self.accept[self.eof[s]]
/external/python/cpython3/Tools/msi/
H A Dbuild.bat30 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/
H A DRunTest.bat42 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...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DDFA.cs62 protected short[] eof; field in class:Antlr.Runtime.DFA
152 if (c == unchecked((char)TokenTypes.EndOfFile) && eof[s] >= 0) { // EOF Transition to accept state?
154 Console.Error.WriteLine("accept via EOF; predict " + accept[eof[s]] + " from " + eof[s]);
155 return accept[eof[s]];
162 Console.Error.WriteLine("eof[" + s + "]=" + eof[s]);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DDFA.cs57 protected short[] eof; field in class:Antlr.Runtime.DFA
178 if ( c == unchecked( (char)TokenTypes.EndOfFile ) && eof[s] >= 0 )
181 Console.Error.WriteLine( "accept via EOF; predict " + accept[eof[s]] + " from " + eof[s] );
182 return accept[eof[s]];
190 Console.Error.WriteLine( "eof[" + s + "]=" + eof[s] );

Completed in 1991 milliseconds

1234567891011>>