Searched refs:EOF (Results 1 – 6 of 6) sorted by relevance
/development/tools/ |
D | make_key | 21 cat <<EOF heredoc 26 EOF
|
/development/vndk/tools/sourcedr/sourcedr/ |
D | ninja.py | 235 EOF = 0 variable in TK 357 return Token(TK.EOF, self._line, self._line_pos + 1, '') 591 if token.kind == TK.EOF: 642 self._lexer.lex_match({TK.NEWLINE, TK.EOF}) 715 {TK.PIPE, TK.PIPE2, TK.NEWLINE, TK.EOF}) 721 implicit_ins = self._parse_path_list({TK.PIPE2, TK.NEWLINE, TK.EOF}) 729 prerequisites = self._parse_path_list({TK.NEWLINE, TK.EOF}) 733 self._lexer.lex_match({TK.NEWLINE, TK.EOF}) 771 self._lexer.lex_match({TK.NEWLINE, TK.EOF}) 789 outs = self._parse_path_list({TK.NEWLINE, TK.EOF}) [all …]
|
/development/tools/etc1tool/ |
D | etc1tool.cpp | 110 if (fputc(0xff & (data >> 8), pOut) == EOF) { in fwrite_big_endian_uint16() 113 if (fputc(0xff & data, pOut) == EOF) { in fwrite_big_endian_uint16() 122 if ((a = fgetc(pIn)) == EOF) { in fread_big_endian_uint16() 125 if ((b = fgetc(pIn)) == EOF) { in fread_big_endian_uint16()
|
/development/vndk/tools/sourcedr/sourcedr/blueprint/ |
D | blueprint.py | 96 EOF = 0 variable in Token 176 self.token = Token.EOF 587 while lexer.token != Token.EOF: 599 lexer.consume(Token.EOF)
|
/development/vndk/tools/sourcedr/sourcedr/blueprint/tests/ |
D | test_lexer.py | 577 self.assertEqual(lexer.token, Token.EOF) 594 self.assertEqual(lexer.token, Token.EOF) 596 lexer.consume(Token.EOF)
|
/development/vndk/tools/sourcedr/sourcedr/tests/ |
D | test_ninja.py | 139 self.assertEqual(ninja.TK.EOF, tok.kind)
|