Home
last modified time | relevance | path

Searched refs:Line (Results 1 – 10 of 10) sorted by relevance

/build/make/tools/product_config/test/com/android/build/config/
DCsvParserTest.java37 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/
Dprinter.go56 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++
Dsort.go136 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++
Dparser.go49 Line: 1,
161 if len(comments) > 0 && p.scanner.Position.Line > comments[len(comments)-1].End().Line+1 {
Dparser_test.go29 Line: line,
1269 endLine := nextPos[i].Line - 1
Dast.go433 pos.Line += len(c.Comment) - 1
/build/make/tools/product_config/src/com/android/build/config/
DCsvParser.java66 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()
DDumpConfigParser.java80 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/
Dandroidmk.go81 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/
Dparser.go93 Line: line + 1,