Searched defs:eof (Results 26 - 50 of 139) sorted by relevance

123456

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBufferedTreeNodeStream.h65 id<ANTLRTree> eof; variable
86 @property (retain, getter=getEof, setter=setEof:) id<ANTLRTree> 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;
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/chromium_org/third_party/cython/src/Cython/Plex/
H A DScanners.py120 self.eof()
328 def eof(self): member in class:Scanner
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dscanner.h9 unsigned char *bot, *tok, *ptr, *cur, *pos, *lim, *top, *eof; member in struct:Scanner
/external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
H A DDecoder.java31 boolean eof; field in class:Decoder
146 eof = true;
229 eof = true;
239 // if (eof)
/external/llvm/include/llvm/ProfileData/
H A DInstrProf.h26 eof, member in class:llvm::instrprof_error
/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/apache-http/src/org/apache/http/conn/
H A DEofSensorInputStream.java232 * @param eof the result of the calling read operation.
238 protected void checkEOF(int eof) throws IOException { argument
240 if ((wrappedStream != null) && (eof < 0)) {
/external/apache-http/src/org/apache/http/impl/io/
H A DChunkedInputStream.java93 private boolean eof = false; field in class:ChunkedInputStream
126 if (this.eof) {
131 if (this.eof) {
156 if (eof) {
161 if (eof) {
195 eof = true;
266 if (!eof) {
270 eof = true;
/external/chromium_org/third_party/opus/src/src/
H A Drepacketizer_demo.c60 int i, eof=0; local
114 while (!eof)
129 eof = 1;
143 eof = 1;
155 if (eof)
/external/libopus/src/
H A Drepacketizer_demo.c60 int i, eof=0; local
114 while (!eof)
129 eof = 1;
143 eof = 1;
155 if (eof)
/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/srec/portable/include/
H A Dpstream.h46 int eof; member in struct:PORT_FILE_HANDLE
/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/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/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/chromium_org/content/browser/gpu/
H A Dcompositor_util.cc44 const GpuFeatureInfo GetGpuFeatureInfo(size_t index, bool* eof) { argument
160 *eof = (index == arraysize(kGpuFeatureInfo) - 1);
288 bool eof = false; local
289 for (size_t i = 0; !eof; ++i) {
290 const GpuFeatureInfo gpu_feature_info = GetGpuFeatureInfo(i, &eof);
358 bool eof = false; local
359 for (size_t i = 0; !eof; ++i) {
360 const GpuFeatureInfo gpu_feature_info = GetGpuFeatureInfo(i, &eof);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-buffer-deserialize-text.hh337 const char *eof = pe, *tok = NULL; local
488 if ( p == eof )
H A Dhb-ot-shape-complex-indic-machine.hh1549 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
1565 pe = eof = buffer->len;
1718 if ( p == eof )
H A Dhb-ot-shape-complex-myanmar-machine.hh284 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
300 pe = eof = buffer->len;
384 if ( p == eof )
H A Dhb-ot-shape-complex-sea-machine.hh112 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
128 pe = eof = buffer->len;
208 if ( p == eof )
/external/chromium_org/third_party/skia/src/core/
H A DSkBuffer.h56 bool eof() const { return fPos >= fStop; } function in class:SkRBuffer
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dfile.h45 unsigned char *eof; /**< End of file */ member in struct:yasm_scanner

Completed in 646 milliseconds

123456