Home
last modified time | relevance | path

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

/development/vndk/tools/image-diff-tool/
Dcompare_images_and_print.sh8 cat <<EOF heredoc
17 EOF
59 cat >&2 <<EOF heredoc
64 EOF
/development/vndk/snapshot/
Dbuild.sh24 cat <<EOF heredoc
31 EOF
/development/tools/
Dmake_key21 cat <<EOF heredoc
26 EOF
/development/gsi/
Dgsi-pubsign-release.sh20 cat <<EOF heredoc
37 EOF
/development/vndk/tools/elfcheck/
Dfix_android_bp_prebuilt.sh28 cat <<EOF heredoc
39 EOF
/development/scripts/
Drunahat27 EOF
/development/vndk/tools/sourcedr/ninja/
Dninja.py232 EOF = 0 variable in TK
354 return Token(TK.EOF, self._line, self._line_pos + 1, '')
588 if token.kind == TK.EOF:
639 self._lexer.lex_match({TK.NEWLINE, TK.EOF})
712 {TK.PIPE, TK.PIPE2, TK.NEWLINE, TK.EOF})
718 implicit_ins = self._parse_path_list({TK.PIPE2, TK.NEWLINE, TK.EOF})
726 prerequisites = self._parse_path_list({TK.NEWLINE, TK.EOF})
730 self._lexer.lex_match({TK.NEWLINE, TK.EOF})
768 self._lexer.lex_match({TK.NEWLINE, TK.EOF})
786 outs = self._parse_path_list({TK.NEWLINE, TK.EOF})
[all …]
/development/tools/repo_diff/service/repodiff/persistence/filesystem/
Dcsv.go30 if err == io.EOF {
/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/blueprint/
Dblueprint.py96 EOF = 0 variable in Token
177 self.token = Token.EOF
588 while lexer.token != Token.EOF:
600 lexer.consume(Token.EOF)
/development/vndk/tools/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/ninja/tests/
Dtest_ninja.py139 self.assertEqual(ninja.TK.EOF, tok.kind)