Searched refs:eof (Results 176 - 200 of 476) sorted by relevance

1234567891011>>

/external/python/cpython3/Lib/
H A Dshlex.py33 self.eof = None
35 self.eof = ''
115 while raw == self.eof:
117 return self.eof
123 if raw != self.eof:
296 if token == self.eof:
/external/xmlrpcpp/src/
H A DXmlRpcServerConnection.cpp71 bool eof; local
72 if ( ! XmlRpcSocket::nbRead(this->getfd(), _header, &eof)) {
100 if (eof) {
149 bool eof; local
150 if ( ! XmlRpcSocket::nbRead(this->getfd(), _request, &eof)) {
157 if (eof) {
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3cyclicdfa.c175 if ( c == ANTLR3_TOKEN_EOF && cdfa->eof[s] >= 0)
178 return cdfa->accept[cdfa->eof[s]];
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DDFA.js80 if ( c==org.antlr.runtime.Token.EOF && this.eof[s]>=0 ) { // EOF Transition to accept state?
81 return this.accept[this.eof[s]];
/external/libcups/cups/
H A Dfile.c469 return (fp ? fp->eof : 1);
653 DEBUG_printf(("5cupsFileGetChar: fp->eof=%d, fp->ptr=%p, fp->end=%p", fp->eof, (void *)fp->ptr, (void *)fp->end));
1692 fp->eof = 0;
1722 fp->eof = 0;
1775 fp->eof = 0;
1797 fp->eof = 0;
2162 DEBUG_printf(("9cups_fill: fp->ptr=%p, fp->end=%p, fp->buf=%p, fp->bufpos=" CUPS_LLFMT ", fp->eof=%d", (void *)fp->ptr, (void *)fp->end, (void *)fp->buf, CUPS_LLCAST fp->bufpos, fp->eof));
2199 fp->eof
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DLexer.cs119 IToken eof = new CommonToken((ICharStream)input, CharStreamConstants.EndOfFile, TokenChannels.Default, input.Index, input.Index);
120 eof.Line = Line;
121 eof.CharPositionInLine = CharPositionInLine;
122 return eof;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLexer.cs140 IToken eof = new CommonToken((ICharStream)input, CharStreamConstants.EndOfFile, TokenChannels.Default, input.Index, input.Index);
141 eof.Line = Line;
142 eof.CharPositionInLine = CharPositionInLine;
143 return eof;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DLexer.java81 Token eof = new CommonToken((CharStream)input,Token.EOF,
84 eof.setLine(getLine());
85 eof.setCharPositionInLine(getCharPositionInLine());
86 return eof;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRDFA.h35 const int *eof; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRDFA.h35 const int *eof; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRDFA.h35 const int *eof; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRBufferedTreeNodeStream.h66 id eof; variable
87 @property (retain, getter=eof, setter=setEof:) id eof; variable
154 - (id) eof;
/external/curl/tests/libtest/
H A Dlib643.c52 int eof = !*pooh->readptr;
58 eof = pooh->sizeleft <= 0;
59 if(!eof)
63 if(!eof) {
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-indic-machine.rl112 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED;
121 pe = eof = buffer->len;
H A Dhb-ot-shape-complex-myanmar-machine.rl109 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED;
118 pe = eof = buffer->len;
/external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
H A Dpbackfail.pass.cpp12 // int_type pbackfail(int_type c = traits::eof());
33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
/external/ltp/testcases/kdump/lib/crasher/
H A Dcrasher.c43 int *eof, void *data)
42 crasher_read(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
/external/mesa3d/bin/
H A Dperf-annotate-jit83 def eof(self): member in class:LineParser
142 if self.eof() or not self.lookahead().startswith('#'):
149 while not self.eof():
174 if self.eof():
/external/nanopb-c/
H A Dpb_decode.h119 * field tag. At end of the message, returns false and sets eof to true. */
120 bool pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof);
/external/python/cpython2/Demo/rpc/
H A Dnfsclient.py68 eof = self.unpack_bool()
69 rest = (entries, eof)
168 entries, eof = rest
173 if eof or last_cookie is None:
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DScanHandler.java64 public void eof(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as59 protected var eof:Object;
106 eof = this.adaptor.createFromType(TokenConstants.EOF, "EOF");
121 stream.eof = parent.eof;
215 return eof;
/external/clang/lib/Format/
H A DUnwrappedLineParser.cpp79 // \c getNextToken() after it has encountered the first eof token.
80 assert(!eof());
82 if (eof())
95 bool eof() { return Token && Token->HasUnescapedNewline; } function in class:clang::format::__anon1676::ScopedMacroState
102 FormatTok.Tok.setKind(tok::eof);
230 // Create line with eof token.
308 } while (!eof());
313 // a closing brace or eof - note that getNextToken() will
401 } while (Tok->Tok.isNot(tok::eof) && !LBraceStack.empty());
433 if (eof())
2014 bool UnwrappedLineParser::eof() const { return FormatTok->Tok.is(tok::eof); } function in class:clang::format::UnwrappedLineParser
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddfa.rb104 attr_reader :recognizer, :decision_number, :eot, :eof, :min, :max,
108 attr_reader :decision, :eot, :eof, :min, :max,
145 eot = nil, eof = nil, min = nil, max = nil,
151 @eof = eof || self.class::EOF #.eof
219 ( c == EOF && @eof[ state ] >= 0 ) and return @accept[ @eof[ state ] ]
283 ( c == EOF && @eof[ state ] >= 0 ) and return @accept[ @eof[ stat
[all...]
/external/python/cpython2/Modules/zlib/
H A Dgzread.c17 state->fd, and update state->eof, state->err, and state->msg as appropriate.
40 state->eof = 1;
44 /* Load up input buffer and set eof flag if last data loaded -- return -1 on
45 error, 0 otherwise. Note that the eof flag is set when the end of the input
59 if (state->eof == 0) {
148 state->eof = 1;
251 } while (state->x.have == 0 && (!state->eof || strm->avail_in));
275 else if (state->eof && state->strm.avail_in == 0)
338 else if (state->eof && strm->avail_in == 0) {

Completed in 3982 milliseconds

1234567891011>>