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.java798 Counter<Choice> problemCounter = new Counter<Choice>(); field in VettingViewer.FileInfo
804 problemCounter.addAll(other.problemCounter); in addAll()
883 problemCounter.increment(Choice.changedOldValue); in getFileInfo()
891 problemCounter.increment(Choice.missingCoverage); in getFileInfo()
905 problemCounter.increment(Choice.englishChanged); in getFileInfo()
917 problemCounter.increment(choice); in getFileInfo()
926 problemCounter.increment(choice); in getFileInfo()
936 problemCounter.increment(Choice.weLost); in getFileInfo()
947 problemCounter.increment(Choice.hasDispute); in getFileInfo()
953 problemCounter.increment(Choice.notApproved); in getFileInfo()
[all …]
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestUtilities.java200 Counter<Choice> problemCounter = new Counter<Choice>(); in TestUntimedCounter() local
201 problemCounter.increment(Choice.error); in TestUntimedCounter()
202 problemCounter.increment(Choice.error); in TestUntimedCounter()
203 problemCounter.increment(Choice.warning); in TestUntimedCounter()
205 assertEquals("problemCounter error", 2, problemCounter.get(Choice.error)); in TestUntimedCounter()
206 assertEquals("problemCounter warning", 1, problemCounter.get(Choice.warning)); in TestUntimedCounter()
207 assertEquals("problemCounter weLost", 0, problemCounter.get(Choice.weLost)); in TestUntimedCounter()
210 otherCounter.addAll(problemCounter); in TestUntimedCounter()