Searched refs:lineno (Results 1 – 10 of 10) sorted by relevance
/build/make/tools/compliance/cmd/shippedlibs/ |
D | shippedlibs_test.go | 223 lineno := 0 229 if len(tt.expectedOut) <= lineno { 230 …: unexpected output at line %d: got %q, want nothing (wanted %d lines)", lineno+1, line, len(tt.ex… 231 } else if tt.expectedOut[lineno] != line { 232 …hippedLibs: unexpected output at line %d: got %q, want %q", lineno+1, line, tt.expectedOut[lineno]) 234 lineno++ 236 for ; lineno < len(tt.expectedOut); lineno++ { 237 …rorf("shippedLibs: missing output line %d: ended early, want %q", lineno+1, tt.expectedOut[lineno])
|
/build/make/tools/compliance/cmd/bom/ |
D | bom_test.go | 304 lineno := 0 310 if len(tt.expectedOut) <= lineno { 311 …t.Errorf("bom: unexpected output at line %d: got %q, want nothing (wanted %d lines)", lineno+1, li… 312 } else if tt.expectedOut[lineno] != line { 313 …rrorf("bom: unexpected output at line %d: got %q, want %q", lineno+1, line, tt.expectedOut[lineno]) 315 lineno++ 317 for ; lineno < len(tt.expectedOut); lineno++ { 318 t.Errorf("bom: missing output line %d: ended early, want %q", lineno+1, tt.expectedOut[lineno])
|
/build/make/tools/compliance/cmd/textnotice/ |
D | textnotice_test.go | 712 lineno := 0 718 if len(tt.expectedOut) <= lineno { 719 …t.Errorf("unexpected output at line %d: got %q, want nothing (wanted %d lines)", lineno+1, line, l… 720 } else if !tt.expectedOut[lineno].isMatch(line) { 721 …t.Errorf("unexpected output at line %d: got %q, want %q", lineno+1, line, tt.expectedOut[lineno].S… 723 lineno++ 725 for ; lineno < len(tt.expectedOut); lineno++ { 726 …("textnotice: missing output line %d: ended early, want %q", lineno+1, tt.expectedOut[lineno].Stri…
|
/build/make/tools/compliance/cmd/htmlnotice/ |
D | htmlnotice_test.go | 828 lineno := 0 857 if len(tt.expectedOut) <= lineno { 858 …: unexpected output at line %d: got %q, want nothing (wanted %d lines)", lineno+1, line, len(tt.ex… 859 } else if !tt.expectedOut[lineno].isMatch(line) { 860 …mlnotice: unexpected output at line %d: got %q, want %q", lineno+1, line, tt.expectedOut[lineno].S… 862 lineno++ 868 for ; lineno < len(tt.expectedOut); lineno++ { 869 …("htmlnotice: missing output line %d: ended early, want %q", lineno+1, tt.expectedOut[lineno].Stri…
|
/build/make/tools/product_config/test/com/android/build/config/ |
D | CsvParserTest.java | 37 public void assertLineEquals(CsvParser.Line actual, int lineno, String... fields) { in assertLineEquals() argument 38 if (actual.getLine() != lineno) { in assertLineEquals() 39 throw new RuntimeException("lineno mismatch: expected=" + lineno in assertLineEquals()
|
/build/make/tools/ |
D | build-runfiles.cc | 112 int lineno = 0; in ReadManifest() local 122 ++lineno; in ReadManifest() 125 if (use_metadata && lineno % 2 == 0) continue; in ReadManifest() 131 errx(2, "%s:%d: paths must not be absolute", input_filename, lineno); in ReadManifest() 139 errx(2, "%s:%d: link or target filename contains space", input_filename, lineno); in ReadManifest() 141 errx(2, "%s:%d: expected absolute path", input_filename, lineno); in ReadManifest()
|
D | mk2bp_catalog.py | 924 "new LineMatch(%d, %s)" % (lineno, json.dumps(text)) 925 for lineno, text in analysis.line_matches]),
|
/build/make/tools/product_config/src/com/android/build/config/ |
D | CsvParser.java | 70 Line(int lineno, List<String> fields) { in Line() argument 71 mLineNumber = lineno; in Line()
|
/build/soong/bin/ |
D | soongdbg | 109 def format_source_pos(file, lineno): argument 111 if lineno:
|
/build/make/tools/fs_config/ |
D | fs_config_generator.py | 353 for lineno, line in enumerate(aid_file): 359 msg, self._aid_header, str(lineno))
|