HomeSort by relevance Sort by last modified time
    Searched defs:EOF (Results 51 - 75 of 338) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/ken/
rob2.go 77 const EOF int = -1
142 c = EOF
161 case EOF:
162 token = EOF
171 if c == EOF {
200 // Parse a non-parenthesized list up to a closing paren or EOF
213 if token == ')' || token == EOF { // empty cdr
248 if token == EOF || token == ')' {
259 case EOF:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_memoryio.py 29 self.assertEqual(self.EOF, bytesIo.read())
36 self.assertEqual(self.EOF, bytesIo.read())
145 self.assertEqual(memio.getvalue(), self.EOF)
155 self.assertEqual(memio.read(0), self.EOF)
160 self.assertEqual(memio.read(), self.EOF)
163 self.assertEqual(memio.read(), self.EOF)
181 self.assertEqual(memio.readline(0), self.EOF)
184 self.assertEqual(memio.readline(), self.EOF)
193 self.assertEqual(memio.readline(0), self.EOF)
200 self.assertEqual(memio.readline(), self.EOF)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 31 public const int EOF=-1;
ProfileTreeGrammar.cs 31 public const int EOF=-1;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCParser.h 35 #ifdef EOF
36 #undef EOF
38 #define EOF -1
SimpleCLexer.java 23 public static final int EOF=-1;
717 this.eof = DFA4_eof;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCParser.h 33 #define EOF -1
SimpleCLexer.java 23 public static final int EOF=-1;
717 this.eof = DFA4_eof;
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
treewizard.py 57 EOF = -1
95 while self.c != EOF:
149 return EOF
151 return EOF
157 self.c = EOF
177 if self.ttype == EOF:
streams.py 36 from antlr3.constants import DEFAULT_CHANNEL, EOF
68 yield -1, invalid char / EOF.
166 value includes a single EOF.
193 EOF = -1
396 # happend when we reached EOF and self.data[self.p] fails
412 return EOF
426 return EOF
687 while t is not None and t.type != EOF:
987 if self.stream.tokens[self.index].type != EOF:
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Label.java 55 /** End of Token is like EOF for lexer rules. It implies that no more
73 public static final int EOF = -1;
100 * need this. EOF is another candidate for a run time token type for
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSpelunker.java 155 public static final int EOF = -1;
171 while ( c!=EOF ) {
193 while ( c!=EOF && isID_LETTER() ) { buf.append((char)c); consume(); }
199 while ( c!=EOF && isDIGIT() ) { buf.append((char)c); consume(); }
206 while ( c!=EOF && c!='\'' ) {
230 while ( c!=EOF && c!='*' ) consume();
235 while ( c!=EOF && c!='\n' ) consume();
  /external/autotest/client/common_lib/
pexpect.py 89 __all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'run', 'which',
127 class EOF(ExceptionPexpect):
129 """Raised when EOF is read from a child. This usually means the child has exited."""
226 patterns=None # We assume that EOF or TIMEOUT will save us.
235 else: # child.after may have been a TIMEOUT or EOF, so don't cat those.
252 except EOF, e:
291 child.expect(pexpect.EOF)
300 child.expect(pexpect.EOF)
398 self.delimiter = EOF
495 # EOF immediately then it means that the child is already dead
1037 def eof (self): member in class:spawn
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
StreamService.java 86 static final StreamItem EOF_ITEM = new StreamItem(Kind.EOF, null);
294 EOF,
  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
LZWEncoder.java 12 private static final int EOF = -1;
88 // code: A n_bits-bit integer. If == -1, then EOF. This assumes
181 while ((c = nextPixel()) != EOF) {
246 return EOF;
287 // At EOF, write the rest of the buffer.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdio.h 134 #ifndef EOF
135 # define EOF (-1)
656 null terminator), or -1 on error or EOF.
822 /* Clear the error and EOF indicators for STREAM. */
824 /* Return the EOF indicator for STREAM. */
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
parse.go 115 case scanner.EOF:
153 if tok == scanner.EOF {
154 p.errorf("unexpected EOF")
292 if p.peek() == scanner.EOF {
353 if tok.ScanToken == scanner.EOF {
673 if p.peek() == scanner.EOF {
837 case scanner.EOF:
1101 // EOF represents the end of input.
1102 var EOF = lex.Make(scanner.EOF, "EOF"
    [all...]
  /prebuilts/go/darwin-x86/src/io/
io.go 33 // EOF is the error returned by Read when no more input is available.
34 // Functions should return EOF only to signal a graceful end of input.
35 // If the EOF occurs unexpectedly in a structured data stream,
38 var EOF = errors.New("EOF")
40 // ErrUnexpectedEOF means that EOF was encountered in the
42 var ErrUnexpectedEOF = errors.New("unexpected EOF")
63 // return either err == EOF or err == nil. The next Read should
64 // return 0, EOF.
69 // allowed EOF behaviors
    [all...]
  /prebuilts/go/darwin-x86/src/text/scanner/
scanner.go 75 EOF = -(iota + 1)
87 EOF: "EOF",
198 s.ch = -2 // no char read yet, not EOF
231 // (an io.Reader must return io.EOF when it reaches
241 if err != io.EOF {
246 // previous character was not EOF
250 return EOF
252 // If err == EOF, we won't be getting more
295 // It returns EOF at the end of the source. It report
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
parse.go 115 case scanner.EOF:
153 if tok == scanner.EOF {
154 p.errorf("unexpected EOF")
292 if p.peek() == scanner.EOF {
353 if tok.ScanToken == scanner.EOF {
673 if p.peek() == scanner.EOF {
837 case scanner.EOF:
1101 // EOF represents the end of input.
1102 var EOF = lex.Make(scanner.EOF, "EOF"
    [all...]
  /prebuilts/go/linux-x86/src/io/
io.go 33 // EOF is the error returned by Read when no more input is available.
34 // Functions should return EOF only to signal a graceful end of input.
35 // If the EOF occurs unexpectedly in a structured data stream,
38 var EOF = errors.New("EOF")
40 // ErrUnexpectedEOF means that EOF was encountered in the
42 var ErrUnexpectedEOF = errors.New("unexpected EOF")
63 // return either err == EOF or err == nil. The next Read should
64 // return 0, EOF.
69 // allowed EOF behaviors
    [all...]
  /prebuilts/go/linux-x86/src/text/scanner/
scanner.go 75 EOF = -(iota + 1)
87 EOF: "EOF",
198 s.ch = -2 // no char read yet, not EOF
231 // (an io.Reader must return io.EOF when it reaches
241 if err != io.EOF {
246 // previous character was not EOF
250 return EOF
252 // If err == EOF, we won't be getting more
295 // It returns EOF at the end of the source. It report
    [all...]
  /cts/tools/dasm/src/dasm/
sym.java 55 static final int EOF = 0;
  /external/guice/lib/build/
munge.jar 
  /external/python/cpython2/Lib/test/
test_memoryio.py 29 self.assertEqual(self.EOF, bytesIo.read())
36 self.assertEqual(self.EOF, bytesIo.read())
145 self.assertEqual(memio.getvalue(), self.EOF)
155 self.assertEqual(memio.read(0), self.EOF)
160 self.assertEqual(memio.read(), self.EOF)
163 self.assertEqual(memio.read(), self.EOF)
181 self.assertEqual(memio.readline(0), self.EOF)
184 self.assertEqual(memio.readline(), self.EOF)
193 self.assertEqual(memio.readline(0), self.EOF)
200 self.assertEqual(memio.readline(), self.EOF)
    [all...]

Completed in 568 milliseconds

1 23 4 5 6 7 8 91011>>