Home
last modified time | relevance | path

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

/build/make/tools/product_config/src/com/android/build/config/
DErrors.java39 public final Category ERROR_COMMAND_LINE = new Category(1, false, Level.ERROR,
42 public final Category WARNING_UNKNOWN_COMMAND_LINE_ERROR = new Category(2, true, Level.HIDDEN,
46 public final Category ERROR_KATI = new Category(3, false, Level.ERROR,
49 public final Category WARNING_DUMPCONFIG = new Category(4, true, Level.WARNING,
52 public final Category ERROR_DUMPCONFIG = new Category(5, false, Level.ERROR,
55 public final Category WARNING_VARIABLE_RECURSION = new Category(6, true, Level.WARNING,
60 public final Category ERROR_IMPROPER_PRODUCT_VAR_MARKER = new Category(7, true, Level.ERROR,
63 public final Category ERROR_MISSING_CONFIG_FILE = new Category(8, true, Level.ERROR,
66 public final Category ERROR_INFINITE_RECURSION = new Category(9, true, Level.ERROR,
71 public final Category WARNING_DIFFERENT_FROM_KATI = new Category(1000, true, Level.WARNING,
DErrorReporter.java40 private Map<Integer, Category> mCategories;
84 public class Category { class in ErrorReporter
93 public Category(int code, boolean isLevelSettable, Level level, String help) { in Category() method in ErrorReporter.Category
175 private final Category mCategory;
179 Entry(Category category, Position position, String message) { in Entry()
185 public Category getCategory() { in getCategory()
207 HashMap<Integer, Category> categories = new HashMap(); in initLocked()
209 if (Category.class.isAssignableFrom(field.getType())) { in initLocked()
210 Category category = null; in initLocked()
212 category = (Category)field.get(this); in initLocked()
[all …]
DOptions.java79 TreeMap<Integer,Errors.Category> sorted = new TreeMap((new Errors()).getCategories()); in printHelp()
81 for (final Errors.Category category: sorted.values()) { in printHelp()
214 final Errors.Category category = mErrors.getCategories().get(code); in handleErrorCode()
/build/make/tools/product_config/test/com/android/build/config/
DTestErrors.java31 public final Category ERROR = new Category(ERROR_CODE, true, Level.ERROR,
36 public final Category WARNING = new Category(WARNING_CODE, true, Level.WARNING,
41 public final Category HIDDEN = new Category(HIDDEN_CODE, true, Level.HIDDEN,
46 public final Category ERROR_FIXED = new Category(ERROR_FIXED_CODE, false, Level.ERROR,
49 public void assertHasEntry(Errors.Category category) { in assertHasEntry()
57 public static void assertHasEntry(Errors.Category category, ErrorReporter errors) { in assertHasEntry()