Home
last modified time | relevance | path

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

/build/make/tools/product_config/src/com/android/build/config/
DKatiImpl.java31 private final Errors mErrors; field in KatiImpl
53 mErrors = errors; in KatiImpl()
65 mErrors.ERROR_KATI.add("Unable to create directory: " + workDir); in loadProductConfig()
75 mErrors.ERROR_KATI.add( in loadProductConfig()
81 mErrors.ERROR_KATI.add("Error running kati:\n" + ex.getStderr()); in loadProductConfig()
86 mErrors.ERROR_KATI.add("Kati ran but did not create " + csvPath); in loadProductConfig()
91 Map<String, MakeConfig> makeConfigs = DumpConfigParser.parse(mErrors, csvPath, reader); in loadProductConfig()
100 mErrors.ERROR_KATI.add(new Position(csvPath, ex.getLine()), in loadProductConfig()
105 mErrors.ERROR_KATI.add("Unable to read " + csvPath + ": " + ex.getMessage()); in loadProductConfig()
DMain.java25 private final Errors mErrors; field in Main
29 mErrors = errors; in Main()
37 Kati kati = new KatiImpl(mErrors, mOptions); in run()
39 if (makeConfigs == null || mErrors.hadError()) { in run()
52 ConvertMakeToGenericConfig m2g = new ConvertMakeToGenericConfig(mErrors); in run()
62 FlatConfig flat = FlattenConfig.flatten(mErrors, generic); in run()
71 checker.reportErrors(mErrors); in run()
DDumpConfigParser.java49 private final Errors mErrors; field in DumpConfigParser
61 mErrors = errors; in DumpConfigParser()
99 mErrors.WARNING_DUMPCONFIG.add( in parseImpl()
109 mErrors.ERROR_DUMPCONFIG.fatal( in parseImpl()
138 mErrors.WARNING_DUMPCONFIG.add( in parseImpl()
161 mErrors.WARNING_DUMPCONFIG.add( in parseImpl()
170 mErrors.WARNING_DUMPCONFIG.add( in parseImpl()
185 mErrors.WARNING_DUMPCONFIG.add( in parseImpl()
204 mErrors.WARNING_DUMPCONFIG.add( in parseImpl()
211 mErrors.WARNING_DUMPCONFIG.add( in parseImpl()
[all …]
DOptions.java96 private Errors mErrors; field in Options.Parser
104 mErrors = errors; in Parser()
124 if (!mErrors.hadError()) { in parse()
137 mErrors.ERROR_COMMAND_LINE.add(ex.getMessage()); in parse()
172 mErrors.ERROR_COMMAND_LINE.add("Required command line argument missing: " in addMissingArgError()
177 mErrors.ERROR_COMMAND_LINE.add("Required environment variable missing: " in addMissingEnvError()
214 final Errors.Category category = mErrors.getCategories().get(code); in handleErrorCode()
216 mErrors.WARNING_UNKNOWN_COMMAND_LINE_ERROR.add("Unknown error code: " + code); in handleErrorCode()
220 mErrors.ERROR_COMMAND_LINE.add("Can't set level for error " + code); in handleErrorCode()
DConvertMakeToGenericConfig.java28 private final Errors mErrors; field in ConvertMakeToGenericConfig
31 mErrors = errors; in ConvertMakeToGenericConfig()
39 mErrors.ERROR_DUMPCONFIG.add("Could not find PRODUCTS phase in dumpconfig output."); in convert()
115 mErrors.ERROR_DUMPCONFIG.add("Could not find PRODUCT-EXPAND phase in dumpconfig" in convert()
185 mErrors.ERROR_IMPROPER_PRODUCT_VAR_MARKER.add(varVal.getPosition(), in convertInheritedVar()
204 mErrors.WARNING_VARIABLE_RECURSION.add(varVal.getPosition(), in convertInheritedVar()
DKatiCommandImpl.java26 final Errors mErrors; field in KatiCommandImpl
52 mErrors.ERROR_KATI.add("Error reading from kati: " + ex.getMessage()); in run()
64 mErrors = errors; in KatiCommandImpl()
DFlattenConfig.java33 private final Errors mErrors; field in FlattenConfig
47 mErrors = errors; in FlattenConfig()
71 mErrors.ERROR_DUMPCONFIG.add("No root nodes in PRODUCTS phase."); in flattenImpl()
80 mErrors.WARNING_DUMPCONFIG.add(msg.toString()); in flattenImpl()
120 mErrors.ERROR_INFINITE_RECURSION.add(filename.getPosition(), in forEachStatement()
130 mErrors.ERROR_MISSING_CONFIG_FILE.add(filename.getPosition(), in forEachStatement()