Home
last modified time | relevance | path

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

/aosp12/build/make/tools/product_config/src/com/android/build/config/
H A DDumpConfigParser.java95 if (matchLineType(line, "dumpconfig_version", 1)) { in parseImpl()
128 if (matchLineType(line, "phase", 2)) { in parseImpl()
151 } else if (matchLineType(line, "var", 2)) { in parseImpl()
158 } else if (matchLineType(line, "import", 1)) { in parseImpl()
181 } else if (matchLineType(line, "inherit", 2)) { in parseImpl()
201 } else if (matchLineType(line, "imported", 1)) { in parseImpl()
226 } else if (matchLineType(line, "val", 5)) { in parseImpl()
282 private boolean matchLineType(CsvParser.Line line, String lineType, int fieldCount) { in matchLineType() method in DumpConfigParser