Home
last modified time | relevance | path

Searched refs:internalException (Results 1 – 5 of 5) sorted by relevance

/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestDisplayAndInputProcessor.java35 Exception[] internalException = new Exception[1]; in TestAExemplars() local
43 internalException[0] = null; in TestAExemplars()
44 String input = daip.processInput(path, display, internalException); in TestAExemplars()
49 input = daip.processInput(path, display, internalException); // for debugging in TestAExemplars()
278 Exception[] internalException = new Exception[1]; in showCldrFile() local
285 internalException[0] = null; in showCldrFile()
286 String input = daip.processInput(path, display, internalException); in showCldrFile()
298 + (internalException[0] != null ? ">\n\texcep<" in showCldrFile()
299 + internalException[0] : "") in showCldrFile()
302 daip.processInput(path, value, internalException); // for in showCldrFile()
[all …]
DTestBasic.java133 private final Exception[] internalException = new Exception[1]; field in TestBasic
600 value, internalException); in TestPaths()
601 if (internalException[0] != null) { in TestPaths()
605 internalException[0].printStackTrace(System.out); in TestPaths()
609 internalException); // for in TestPaths()
/external/cldr/tools/java/org/unicode/cldr/test/
DQuickCheck.java64 private static Exception[] internalException = new Exception[1]; field in QuickCheck
217 … String inputValue = displayAndInputProcessor.processInput(path, value, internalException); in checkPaths()
218 if (internalException[0] != null) { in checkPaths()
221 internalException[0].printStackTrace(System.out); in checkPaths()
224 … displayAndInputProcessor.processInput(path, value, internalException); // for debugging in checkPaths()
DDisplayAndInputProcessor.java310 …public synchronized String processInput(String path, String value, Exception[] internalException) { in processInput() argument
313 if (internalException != null) { in processInput()
314 internalException[0] = null; in processInput()
453 if (internalException != null) { in processInput()
454 internalException[0] = e; in processInput()
/external/cldr/tools/java/org/unicode/cldr/util/
DWikiSubdivisionLanguages.java132 Exception[] internalException = { null };
146 internalException);
151 if (internalException[0] != null) {
152 … throw new IllegalArgumentException(lang + "\t" + subdivision + "\t" + name, internalException[0]);