Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/util/
DVettingViewer.java538 Counter<Choice> problemCounter = new Counter<>(); field in VettingViewer.FileInfo
544 problemCounter.addAll(other.problemCounter); in addAll()
647 problemCounter.increment(Choice.changedOldValue); in getFileInfo()
658 problemCounter.increment(Choice.missingCoverage); in getFileInfo()
662 problemCounter.increment(Choice.englishChanged); in getFileInfo()
668 problemCounter.increment(Choice.englishChanged); in getFileInfo()
681 problemCounter.increment(choice); in getFileInfo()
690 problemCounter.increment(choice); in getFileInfo()
700 problemCounter.increment(Choice.weLost); in getFileInfo()
711 problemCounter.increment(Choice.hasDispute); in getFileInfo()
[all …]
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestUtilities.java212 Counter<Choice> problemCounter = new Counter<Choice>(); in TestUntimedCounter() local
213 problemCounter.increment(Choice.error); in TestUntimedCounter()
214 problemCounter.increment(Choice.error); in TestUntimedCounter()
215 problemCounter.increment(Choice.warning); in TestUntimedCounter()
217 assertEquals("problemCounter error", 2, problemCounter.get(Choice.error)); in TestUntimedCounter()
218 assertEquals("problemCounter warning", 1, problemCounter.get(Choice.warning)); in TestUntimedCounter()
219 assertEquals("problemCounter weLost", 0, problemCounter.get(Choice.weLost)); in TestUntimedCounter()
222 otherCounter.addAll(problemCounter); in TestUntimedCounter()