Home | History | Annotate | Download | only in hwuicompare

Lines Matching refs:TestResult

121     private static class TestResult {
122 TestResult(String label, float error) {
141 final HashMap<String, TestResult> mModifierResults = new HashMap<String, TestResult>();
142 final HashMap<String, TestResult> mIndividualResults = new HashMap<String, TestResult>();
143 final HashMap<String, TestResult> mModifierDiffResults = new HashMap<String, TestResult>();
144 final HashMap<String, TestResult> mIndividualDiffResults = new HashMap<String, TestResult>();
177 private static void logTestResultHash(String label, HashMap<String, TestResult> map) {
181 TreeSet<TestResult> set = new TreeSet<TestResult>(new Comparator<TestResult>() {
183 public int compare(TestResult lhs, TestResult rhs) {
194 for (TestResult t : map.values()) {
198 for (TestResult t : set.descendingSet()) {
246 * Inserts the error value into all TestResult objects, associated with each of its modifiers
249 HashMap<String, TestResult> modifierResults) {
251 TestResult r = modifierResults.get(fullName);
253 modifierResults.put(modifierName, new TestResult(modifierName, error));
276 mIndividualDiffResults.put(fullName, new TestResult(fullName, deltaError));
280 mIndividualResults.put(fullName, new TestResult(fullName, error));