Home
last modified time | relevance | path

Searched refs:EOF (Results 1 – 6 of 6) sorted by relevance

/development/tools/
Dmake_key21 cat <<EOF heredoc
26 EOF
/development/vndk/tools/sourcedr/sourcedr/
Dninja.py235 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/
Detc1tool.cpp110 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/
Dblueprint.py96 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/
Dtest_lexer.py577 self.assertEqual(lexer.token, Token.EOF)
594 self.assertEqual(lexer.token, Token.EOF)
596 lexer.consume(Token.EOF)
/development/vndk/tools/sourcedr/sourcedr/tests/
Dtest_ninja.py139 self.assertEqual(ninja.TK.EOF, tok.kind)