Searched refs:eof (Results 1 - 25 of 222) sorted by relevance

123456789

/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Dinteractive.rb32 @initialized = @eof = false
39 unless @eof
46 @eof = true
68 @initialized = @eof = false
75 unless @eof
80 @eof = true
92 unless @eof
124 @eof and return
126 else readline until ( @data.size > @position or @eof )
131 @eof an
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRStreamEnumerator.h38 id eof; variable
46 @property (retain) id eof; variable
H A DLookaheadStream.m41 /** Set to buffer index of eof when nextElement returns eof */
45 public T eof = null;
53 public LookaheadStream(T eof) {
54 this.eof = eof;
63 * lookahead buffer. Return eof upon end of the stream we're pulling from.
95 if ( o==eof ) {
96 data.add(eof);
117 return eof;
[all...]
H A DLookaheadStream.h41 /** Set to buffer index of eof when nextElement returns eof */
45 public T eof = null; member in class:FastQueue
53 public LookaheadStream(T eof) { argument
54 this.eof = eof;
63 * lookahead buffer. Return eof upon end of the stream we're pulling from.
95 if ( o==eof ) {
96 data.add(eof);
117 return eof;
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeIterator.cs53 public object eof; field in class:Antlr.Runtime.Tree.TreeIterator
73 eof = adaptor.Create( TokenTypes.EndOfFile, "EOF" );
105 nodes.Enqueue( eof );
121 Current = eof;
149 nodes.Enqueue( eof ); // add to queue, might have UP nodes in there
166 bool result = Current != eof || !reachedEof;
167 reachedEof = Current == eof;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeIterator.cs50 public object eof; field in class:Antlr.Runtime.Tree.TreeIterator
68 eof = adaptor.Create(TokenTypes.EndOfFile, "EOF");
95 nodes.Enqueue(eof);
105 Current = eof;
126 nodes.Enqueue(eof); // add to queue, might have UP nodes in there
141 return Current != eof;
/external/apache-http/src/org/apache/http/impl/io/
H A DChunkedInputStream.java88 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;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRStreamEnumerator.h38 id eof; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRStreamEnumerator.h38 id eof; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRStreamEnumerator.h38 id eof; variable
/external/astl/tests/
H A Dtest_char_traits.cpp41 // which is eof().
43 EXPECT_TRUE(char_traits<char>::to_int_type('\xff') != char_traits<char>::eof());
/external/stlport/test/unit/
H A Diostream_test.cpp51 CPPUNIT_ASSERT( istr.eof() );
56 CPPUNIT_ASSERT( istr.eof() );
70 CPPUNIT_ASSERT( !istr.eof() );
75 CPPUNIT_ASSERT( istr.eof() );
/external/stlport/src/
H A Dstdio_streambuf.cpp168 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();
229 return result != EOF ? result : traits_type::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/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/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] );
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DDFA.java43 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]];
138 System.err.println("eof["+s+"]="+eof[s]);
/external/qemu/android/utils/
H A Dlineinput.c22 int eof; member in struct:LineInput
103 if (input->eof) {
118 input->eof = 1;
140 return (input->eof != 0);
201 * as an eof, or bad things usually happen after that. */
202 input->eof = 1;
238 input->eof = 1;
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestdfa.py33 eof=[],
/external/astl/include/
H A Dstreambuf78 * 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(); }
/external/chromium/net/base/
H A Dupload_data_stream_unittest.cc44 EXPECT_TRUE(stream->eof());
52 while (!stream->eof()) {
75 EXPECT_FALSE(stream->eof());
77 while (!stream->eof()) {
/external/flac/include/FLAC/
H A Dcallback.h174 FLAC__IOCallback_Eof eof; member in struct:__anon4859
/external/stlport/stlport/stl/
H A D_streambuf.c56 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(); }

Completed in 1067 milliseconds

123456789