/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/mediacodec/ |
D | AsynchronousMediaCodecAdapter.java | 40 @Nullable private IllegalStateException internalException; field in AsynchronousMediaCodecAdapter 130 internalException = e; in onCompleteFlush() 132 internalException = new IllegalStateException(e); in onCompleteFlush() 147 if (internalException != null) { in maybeThrowInternalException() 148 IllegalStateException e = internalException; in maybeThrowInternalException() 149 internalException = null; in maybeThrowInternalException() 157 internalException = null; in clearPendingFlushState()
|
D | DedicatedThreadAsyncMediaCodecAdapter.java | 63 @Nullable private IllegalStateException internalException; field in DedicatedThreadAsyncMediaCodecAdapter 228 internalException = new IllegalStateException(); in onFlushCompleted() 236 internalException = e; in onFlushCompleted() 238 internalException = new IllegalStateException(e); in onFlushCompleted() 252 if (internalException != null) { in maybeThrowInternalException() 253 IllegalStateException e = internalException; in maybeThrowInternalException() 254 internalException = null; in maybeThrowInternalException()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestDisplayAndInputProcessor.java | 35 Exception[] internalException = new Exception[1]; in TestAExemplars() local 46 internalException[0] = null; in TestAExemplars() 47 String input = daip.processInput(path, display, internalException); in TestAExemplars() 52 input = daip.processInput(path, display, internalException); // for debugging in TestAExemplars() 313 Exception[] internalException = new Exception[1]; in showCldrFile() local 320 internalException[0] = null; in showCldrFile() 321 String input = daip.processInput(path, display, internalException); in showCldrFile() 333 + (internalException[0] != null ? ">\n\texcep<" in showCldrFile() 334 + internalException[0] : "") in showCldrFile() 337 daip.processInput(path, value, internalException); // for in showCldrFile() [all …]
|
D | TestBasic.java | 139 private final Exception[] internalException = new Exception[1]; field in TestBasic 603 value, internalException); in TestPaths() 604 if (internalException[0] != null) { in TestPaths() 608 internalException[0].printStackTrace(System.out); in TestPaths() 612 internalException); // for in TestPaths()
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | QuickCheck.java | 65 private static Exception[] internalException = new Exception[1]; field in QuickCheck 220 … String inputValue = displayAndInputProcessor.processInput(path, value, internalException); in checkPaths() 221 if (internalException[0] != null) { in checkPaths() 224 internalException[0].printStackTrace(System.out); in checkPaths() 227 … displayAndInputProcessor.processInput(path, value, internalException); // for debugging in checkPaths()
|
D | DisplayAndInputProcessor.java | 315 …public synchronized String processInput(String path, String value, Exception[] internalException) { in processInput() argument 319 if (internalException != null) { in processInput() 320 internalException[0] = null; in processInput() 470 if (internalException != null) { in processInput() 471 internalException[0] = e; in processInput()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateDerivedAnnotations.java | 139 Exception[] internalException = new Exception[1]; in main() local 177 String newValue = DAIP.processInput(path, value, internalException); in main() 183 String shortName2 = DAIP.processInput(path, shortName, internalException); in main()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | WikiSubdivisionLanguages.java | 132 Exception[] internalException = { null }; 146 internalException); 151 if (internalException[0] != null) { 152 … throw new IllegalArgumentException(lang + "\t" + subdivision + "\t" + name, internalException[0]);
|