Searched refs:Line (Results 1 – 10 of 10) sorted by relevance
/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() 59 List<CsvParser.Line> lines = CsvParser.parse(new StringReader( in testEmptyString() 67 List<CsvParser.Line> lines = CsvParser.parse(new StringReader( in testLexerOneCharacter() 76 List<CsvParser.Line> lines = CsvParser.parse(new StringReader( in testLexerTwoFieldsNoNewline() 85 List<CsvParser.Line> lines = CsvParser.parse(new StringReader( in testLexerTwoFieldsNewline() 94 List<CsvParser.Line> lines = CsvParser.parse(new StringReader( in testEndsWithTwoNewlines() 103 List<CsvParser.Line> lines = CsvParser.parse(new StringReader( in testOnlyNewlines() 112 List<CsvParser.Line> lines = CsvParser.parse(new StringReader( in testLexerComplex() 129 List<CsvParser.Line> lines = CsvParser.parse(new StringReader( in testEndInsideQuoted() 140 List<CsvParser.Line> lines = CsvParser.parse(new StringReader( in testCharacterAfterQuotedField()
|
/build/blueprint/parser/ |
D | printer.go | 56 Line: 1, 142 if len(list) > 1 || pos.Line != endPos.Line { 162 if len(m.Properties) > 0 || m.LBracePos.Line != m.RBracePos.Line { 185 if operator.Args[0].End().Line == operator.Args[1].Pos().Line { 260 for p.curComment < len(p.comments) && p.comments[p.curComment].Pos().Line < pos.Line { 271 if pos.Line > p.pos.Line { 273 if pos.Line > p.pos.Line+1 { 298 pos.Line++
|
D | sort.go | 136 line := list.Values[i].Pos().Line 139 if list.Values[j].Pos().Line > line+1 { 142 line = list.Values[j].Pos().Line 157 line := list.Values[i].Pos().Line 160 if list.Values[j].Pos().Line > line+1 { 163 line = list.Values[j].Pos().Line 230 file.Comments[j].Comments[0].Slash.Line = curPos.Line 236 curPos.Line++
|
D | parser.go | 49 Line: 1, 161 if len(comments) > 0 && p.scanner.Position.Line > comments[len(comments)-1].End().Line+1 {
|
D | parser_test.go | 29 Line: line, 1269 endLine := nextPos[i].Line - 1
|
D | ast.go | 433 pos.Line += len(c.Comment) - 1
|
/build/make/tools/product_config/src/com/android/build/config/ |
D | CsvParser.java | 66 public static class Line { class in CsvParser 70 Line(int lineno, List<String> fields) { in Line() method in CsvParser.Line 110 public static List<Line> parse(Reader reader) in parse() 112 ArrayList<Line> result = new ArrayList(); in parse() 227 result.add(new Line(line, fields)); in parse()
|
D | DumpConfigParser.java | 80 final List<CsvParser.Line> lines = CsvParser.parse(mReader); in parseImpl() 92 final CsvParser.Line line = lines.get(index); in parseImpl() 124 final CsvParser.Line line = lines.get(index); in parseImpl() 282 private boolean matchLineType(CsvParser.Line line, String lineType, int fieldCount) { in matchLineType() 308 private MakeConfig.BlockType parseBlockType(CsvParser.Line line, String text) { in parseBlockType()
|
/build/soong/androidmk/androidmk/ |
D | androidmk.go | 81 f.bpPos.Line++ 120 if pos.Line >= f.mkPos.Line { 121 f.bpPos.Line += (pos.Line - f.mkPos.Line) 161 file.bpPos.Line++
|
/build/soong/androidmk/parser/ |
D | parser.go | 93 Line: line + 1,
|