/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/node/ |
D | EmptyContentAsTreeTest.java | 28 try (JsonParser p = MAPPER.createParser(EMPTY0)) { in testNullFromEOFWithParserAndMapper() method 31 try (JsonParser p = MAPPER.createParser(EMPTY1)) { in testNullFromEOFWithParserAndMapper() method 34 try (JsonParser p = MAPPER.createParser(new StringReader(EMPTY0))) { in testNullFromEOFWithParserAndMapper() method 37 try (JsonParser p = MAPPER.createParser(new StringReader(EMPTY1))) { in testNullFromEOFWithParserAndMapper() method 41 try (JsonParser p = MAPPER.createParser(EMPTY0_BYTES)) { in testNullFromEOFWithParserAndMapper() method 44 try (JsonParser p = MAPPER.createParser(EMPTY1_BYTES)) { in testNullFromEOFWithParserAndMapper() method 47 try (JsonParser p = MAPPER.createParser(EMPTY1_BYTES, 0, EMPTY1_BYTES.length)) { in testNullFromEOFWithParserAndMapper() method 50 try (JsonParser p = MAPPER.createParser(new ByteArrayInputStream(EMPTY0_BYTES))) { in testNullFromEOFWithParserAndMapper() method 53 try (JsonParser p = MAPPER.createParser(new ByteArrayInputStream(EMPTY1_BYTES))) { in testNullFromEOFWithParserAndMapper() method 61 try (JsonParser p = MAPPER.createParser(EMPTY0)) { in testNullFromEOFWithParserAndReader() method [all …]
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/lz4/ |
D | FramedLZ4CompressorInputStreamTest.java | 45 try (FileInputStream in = new FileInputStream(input)) { in testMatches() method 55 …try (InputStream a = new FramedLZ4CompressorInputStream(new FileInputStream(getFile("bla.tar.lz4")… in readBlaLz4() method 65 try (InputStream a = new CompressorStreamFactory() in readBlaLz4ViaFactory() method 77 try (InputStream a = new CompressorStreamFactory() in readBlaLz4ViaFactoryAutoDetection() method 88 …try (InputStream a = new FramedLZ4CompressorInputStream(new FileInputStream(getFile("bla.tar.lz4")… in readBlaLz4WithDecompressConcatenated() method 128 try (InputStream a = new CompressorStreamFactory() in readBlaLz4ViaFactoryWithDecompressConcatenated() method 174 …try (InputStream a = new FramedLZ4CompressorInputStream(new FileInputStream(getFile("bla.dump.lz4"… in readBlaDumpLz4() method 184 …try (InputStream a = new FramedLZ4CompressorInputStream(new FileInputStream(getFile("bla.tar")))) { in rejectsNonLZ4Stream() method 195 … try (InputStream a = new FramedLZ4CompressorInputStream(new ByteArrayInputStream(input))) { in rejectsFileWithoutFrameDescriptor() method 210 … try (InputStream a = new FramedLZ4CompressorInputStream(new ByteArrayInputStream(input))) { in rejectsFileWithoutBlockSizeByte() method [all …]
|
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/ |
D | TensorTest.java | 54 try (Tensor<String> t = Tensors.create(strings)) { in createWithByteBuffer() method 62 try (Tensor<Boolean> t = Tensor.create(Boolean.class, bools_shape, ByteBuffer.wrap(bools_))) { in createWithByteBuffer() method 70 try (Tensor<String> t = in createWithByteBuffer() method 80 try (Tensor<Double> t = Tensor.create(Double.class, doubles_shape, buf)) { in createWithByteBuffer() method 87 try (Tensor<Boolean> t = in createWithByteBuffer() method 107 try (Tensor<Double> t = Tensor.create(new long[] {doubles.length}, buf)) { in createFromBufferWithNonNativeByteOrder() method 123 try (Tensor<Double> t = Tensor.create(shape, DoubleBuffer.wrap(doubles))) { in createWithTypedBuffer() method 127 try (Tensor<Float> t = Tensor.create(shape, FloatBuffer.wrap(floats))) { in createWithTypedBuffer() method 131 try (Tensor<Integer> t = Tensor.create(shape, IntBuffer.wrap(ints))) { in createWithTypedBuffer() method 135 try (Tensor<Long> t = Tensor.create(shape, LongBuffer.wrap(longs))) { in createWithTypedBuffer() method [all …]
|
D | SessionTest.java | 33 try (Graph g = new Graph(); in runUsingOperationNames() method 36 try (Tensor<Integer> x = Tensors.create(new int[][] {{5}, {7}}); in runUsingOperationNames() method 48 try (Graph g = new Graph(); in runUsingOperationHandles() method 53 try (Tensor<Integer> x = Tensors.create(new int[][] {{5}, {7}}); in runUsingOperationHandles() method 65 try (Graph g = new Graph(); in runUsingColonSeparatedNames() method 79 try (Tensor<Integer> fetched = in runUsingColonSeparatedNames() method 85 try (Tensor<Integer> fed = Tensors.create(new int[] {4, 3, 2, 1}); in runUsingColonSeparatedNames() method 102 try (Graph g = new Graph(); in runWithMetadata() method 105 try (Tensor<Integer> x = Tensors.create(new int[][] {{5}, {7}})) { in runWithMetadata() method 132 try (Graph g = new Graph(); in runMultipleOutputs() method [all …]
|
D | GraphTest.java | 37 try (Graph g = new Graph()) { in graphDefRoundTrip() method 42 try (Graph g = new Graph()) { in graphDefRoundTrip() method 46 try (Graph g = new Graph()) { in graphDefRoundTrip() method 79 try (Graph g = new Graph()) { in iterateOverOperations() method 107 try (Graph g = new Graph()) { in failImportOnInvalidGraphDefs() method 135 try (Graph g = new Graph(); in addGradientsToGraph() method 155 try (Tensor<Float> c1 = Tensors.create(3.0f); in addGradientsToGraph() method 176 try (Graph g = new Graph(); in addGradientSumsToGraph() method 188 try (Tensor<Float> c = Tensors.create(3.0f); in addGradientSumsToGraph() method 202 try (Graph g = new Graph(); in addGradientsWithInitialValuesToGraph() method [all …]
|
D | GraphOperationTest.java | 38 try (Graph g = new Graph()) { in outputListLengthFailsOnInvalidName() method 58 try (Graph g = new Graph()) { in operationEquality() method 73 try (Graph g = new Graph()) { in operationEquality() method 81 try (Graph g = new Graph()) { in operationCollection() method 98 try (Graph g = new Graph()) { in operationToString() method 106 try (Graph g = new Graph()) { in outputEquality() method 119 try (Graph g = new Graph()) { in outputCollection() method 134 try (Graph g = new Graph()) { in outputToString() method 159 try (Graph g = new Graph()) { in outputList() method 172 try (Graph g = new Graph()) { in outputTensorNotSupported() method [all …]
|
D | GraphOperationBuilderTest.java | 35 try (Graph g1 = new Graph(); in failWhenMixingOperationsOnDifferentGraphs() method 50 try (Graph g = new Graph(); in failOnUseAfterBuild() method 66 try (Graph g = new Graph(); in failOnUseAfterGraphClose() method 86 try (Graph g = new Graph()) { in setAttr() method 88 try (Tensor<Integer> t = Tensors.create(1)) { in setAttr() method 129 try (Graph g = new Graph()) { in setAttrShape() method 167 try (Graph g = new Graph(); in addControlInput() method 193 try (Graph g = new Graph(); in testSetAttrShapeList() method
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/utils/ |
D | BitInputStreamTest.java | 33 try (final BitInputStream bis = new BitInputStream(getStream(), ByteOrder.LITTLE_ENDIAN)) { in shouldNotAllowReadingOfANegativeAmountOfBits() method 40 try (final BitInputStream bis = new BitInputStream(getStream(), ByteOrder.LITTLE_ENDIAN)) { in shouldNotAllowReadingOfMoreThan63BitsAtATime() method 47 try (final BitInputStream bis = new BitInputStream(getStream(), ByteOrder.LITTLE_ENDIAN)) { in testReading24BitsInLittleEndian() method 54 try (final BitInputStream bis = new BitInputStream(getStream(), ByteOrder.BIG_ENDIAN)) { in testReading24BitsInBigEndian() method 61 try (final BitInputStream bis = new BitInputStream(getStream(), ByteOrder.LITTLE_ENDIAN)) { in testReading17BitsInLittleEndian() method 68 try (final BitInputStream bis = new BitInputStream(getStream(), ByteOrder.BIG_ENDIAN)) { in testReading17BitsInBigEndian() method 76 try (final BitInputStream bis = new BitInputStream(getStream(), ByteOrder.LITTLE_ENDIAN)) { in testReading30BitsInLittleEndian() method 83 try (final BitInputStream bis = new BitInputStream(getStream(), ByteOrder.BIG_ENDIAN)) { in testReading30BitsInBigEndian() method 91 try (final BitInputStream bis = new BitInputStream(getStream(), ByteOrder.LITTLE_ENDIAN)) { in testReading31BitsInLittleEndian() method 98 try (final BitInputStream bis = new BitInputStream(getStream(), ByteOrder.BIG_ENDIAN)) { in testReading31BitsInBigEndian() method [all …]
|
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/core/ |
D | ConstantTest.java | 46 try (Graph g = new Graph(); in createInt() method 50 try (Tensor<Integer> result = sess.runner().fetch(op).run().get(0).expect(Integer.class)) { in createInt() method 61 try (Graph g = new Graph(); in createIntBuffer() method 65 try (Tensor<?> result = sess.runner().fetch(op).run().get(0)) { in createIntBuffer() method 76 try (Graph g = new Graph(); in createFloat() method 80 try (Tensor<?> result = sess.runner().fetch(op).run().get(0)) { in createFloat() method 91 try (Graph g = new Graph(); in createFloatBuffer() method 95 try (Tensor<?> result = sess.runner().fetch(op).run().get(0)) { in createFloatBuffer() method 106 try (Graph g = new Graph(); in createDouble() method 110 try (Tensor<?> result = sess.runner().fetch(op).run().get(0)) { in createDouble() method [all …]
|
D | ZerosTest.java | 39 try (Graph g = new Graph(); in createIntZeros() method 44 try (Tensor<?> result = sess.runner().fetch(op).run().get(0)) { in createIntZeros() method 57 try (Graph g = new Graph(); in createFloatZeros() method 62 try (Tensor<?> result = sess.runner().fetch(op.asOutput()).run().get(0)) { in createFloatZeros() method 75 try (Graph g = new Graph(); in createDoubleZeros() method 80 try (Tensor<?> result = sess.runner().fetch(op.asOutput()).run().get(0)) { in createDoubleZeros() method 93 try (Graph g = new Graph(); in createLongZeros() method 98 try (Tensor<?> result = sess.runner().fetch(op.asOutput()).run().get(0)) { in createLongZeros() method 111 try (Graph g = new Graph(); in createBooleanZeros() method 116 try (Tensor<?> result = sess.runner().fetch(op.asOutput()).run().get(0)) { in createBooleanZeros() method [all …]
|
D | GeneratedOperationsTest.java | 36 try (Graph g = new Graph(); in tensorInputTensorOutput() method 40 try (Tensor<Integer> result = sess.runner().fetch(x).run().get(0).expect(Integer.class)) { in tensorInputTensorOutput() method 48 try (Graph g = new Graph(); in testListInputTensorOutput() method 56 try (Tensor<Integer> result = sess.runner().fetch(x).run().get(0).expect(Integer.class)) { in testListInputTensorOutput() method 71 try (Graph g = new Graph(); in testControlDependencies() method 81 try (Tensor<Integer> result = sess.runner().fetch(x).run().get(0).expect(Integer.class); ) { in testControlDependencies() method
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/examples/ |
D | ExpanderTest.java | 75 try (InputStream i = new BufferedInputStream(Files.newInputStream(archive.toPath()))) { in sevenZInputStreamVersion() method 83 try (InputStream i = new BufferedInputStream(Files.newInputStream(archive.toPath()))) { in sevenZInputStreamVersionWithAutoDetection() method 91 try (SeekableByteChannel c = FileChannel.open(archive.toPath(), StandardOpenOption.READ)) { in sevenZChannelVersion() method 100 try (SevenZFile f = new SevenZFile(archive)) { in sevenZFileVersion() method 109 try (ZipFile f = new ZipFile(archive)) { in zipFileVersion() method 118 try (ZipFile f = new ZipFile(archive)) { in fileCantEscapeViaAbsolutePath() method 129 try (ZipFile f = new ZipFile(archive)) { in fileCantEscapeDoubleDotPath() method 146 try (ZipFile f = new ZipFile(archive)) { in fileCantEscapeDoubleDotPathWithSimilarSibling() method 157 try (OutputStream o = Files.newOutputStream(dummy.toPath())) { in setup7z() method 160 try (SevenZOutputFile aos = new SevenZOutputFile(archive)) { in setup7z() method [all …]
|
D | ParameterizedExpanderTest.java | 74 try (OutputStream o = Files.newOutputStream(dummy.toPath())) { in setUp() method 77 try (ArchiveOutputStream aos = new ArchiveStreamFactory() in setUp() method 109 try (InputStream i = new BufferedInputStream(Files.newInputStream(archive.toPath()))) { in inputStreamVersion() method 117 try (InputStream i = new BufferedInputStream(Files.newInputStream(archive.toPath()))) { in inputStreamVersionWithAutoDetection() method 125 try (SeekableByteChannel c = FileChannel.open(archive.toPath(), StandardOpenOption.READ)) { in channelVersion() method 133 try (InputStream i = new BufferedInputStream(Files.newInputStream(archive.toPath())); in archiveInputStreamVersion() method 151 try (InputStream is = Files.newInputStream(new File(resultDir, fileName).toPath())) { in assertHelloWorld() method
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/snappy/ |
D | FramedSnappyCompressorInputStreamTest.java | 44 try (FileInputStream in = new FileInputStream(input)) { in testMatches() method 59 try (FileInputStream isSz = new FileInputStream(getFile("lorem-ipsum.txt.sz"))) { in testLoremIpsum() method 71 try (FileInputStream isGz = new FileInputStream(getFile("lorem-ipsum.txt.gz"))) { in testLoremIpsum() method 85 try (FileInputStream sz = new FileInputStream(outputSz)) { in testLoremIpsum() method 86 try (FileInputStream gz = new FileInputStream(outputGz)) { in testLoremIpsum() method 96 try (FileInputStream isSz = new FileInputStream(getFile("mixed.txt.sz"))) { in testRemainingChunkTypes() method 115 try (FileInputStream isSz = new FileInputStream(getFile("mixed.txt.sz"))) { in testAvailable() method 154 try (ZipFile zip = new ZipFile(getFile("testNumbersNew.numbers"))) { in readIWAFile() method 155 try (InputStream is = zip.getInputStream(zip.getEntry("Index/Document.iwa"))) { in readIWAFile() method 178 try (InputStream is = new FileInputStream(getFile("COMPRESS-358.iwa")); in readIWAFileWithBiggerOffset() method [all …]
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/misc/ |
D | ParsingContext2525Test.java | 31 try (JsonParser p = MAPPER.createParser(MINIMAL_ARRAY_DOC)) { in testAllWithRegularParser() method 34 try (JsonParser p = MAPPER.createParser(MINIMAL_OBJECT_DOC)) { in testAllWithRegularParser() method 37 try (JsonParser p = MAPPER.createParser(FULL_DOC)) { in testAllWithRegularParser() method 50 try (TokenBuffer buf = _readAsTokenBuffer(MINIMAL_ARRAY_DOC)) { in testSimpleArrayWithBuffer() method 57 try (TokenBuffer buf = _readAsTokenBuffer(MINIMAL_OBJECT_DOC)) { in testSimpleObjectWithBuffer() method 64 try (TokenBuffer buf = _readAsTokenBuffer(FULL_DOC)) { in testFullDocWithBuffer() method 71 try (JsonParser p = MAPPER.createParser(doc)) { in _readAsTokenBuffer() method 87 try (JsonParser p = root.traverse(null)) { in testSimpleArrayWithTree() method 95 try (JsonParser p = root.traverse(null)) { in testSimpleObjectWithTree() method 103 try (JsonParser p = root.traverse(null)) { in testFullDocWithTree() method
|
/external/okio/okio/src/jvmTest/java/okio/ |
D | BufferCursorTest.java | 56 try (UnsafeCursor cursor = buffer.readAndWriteUnsafe()) { in apiExample() method 77 try (UnsafeCursor cursor = buffer.readUnsafe()) { in accessSegmentBySegment() method 88 try (UnsafeCursor cursor = buffer.readUnsafe()) { in seekToNegativeOneSeeksBeforeFirstSegment() method 102 try (UnsafeCursor cursor = buffer.readUnsafe()) { in accessByteByByte() method 114 try (UnsafeCursor cursor = buffer.readUnsafe()) { in accessByteByByteReverse() method 126 try (UnsafeCursor cursor = buffer.readUnsafe()) { in accessByteByByteAlwaysResettingToZero() method 162 try (UnsafeCursor cursor = buffer.readUnsafe()) { in seekWithinSegment() method 195 try (UnsafeCursor cursor = buffer.readUnsafe()) { in doubleAcquire() method 229 try (UnsafeCursor cursor = buffer.readAndWriteUnsafe()) { in enlarge() method 249 try (UnsafeCursor cursor = buffer.readAndWriteUnsafe()) { in enlargeByManySegments() method [all …]
|
/external/jacoco/org.jacoco.core.test.validation.java7/src/org/jacoco/core/test/validation/java7/targets/ |
D | TryWithResourcesTarget.java | 38 try ( // assertTry() in test() method 56 try ( // assertTry() in test2() method 73 try ( // assertTry() in returnInBody() method 81 try ( // assertTry() in nested() method 85 try ( // assertTry() in nested() method 101 try ( // assertTry() in nested() method 122 try ( // assertTry() in returnInCatch() method 158 try ( // assertTry() in empty() method 188 try ( // assertNotCovered() in throwInBody() method
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowContextTest.java | 95 try (FileOutputStream fos = new FileOutputStream(cacheTest)) { in shouldWriteToCacheDir() method 111 try (FileOutputStream fos = new FileOutputStream(cacheTest)) { in shouldWriteToExternalCacheDir() method 158 try (Writer fileWriter = Files.newBufferedWriter(file.toPath(), UTF_8)) { in openFileInput_shouldReturnAFileInputStream() method 162 try (FileInputStream fileInputStream = context.openFileInput("__test__")) { in openFileInput_shouldReturnAFileInputStream() method 171 … try (FileInputStream fileInputStream = context.openFileInput("data" + File.separator + "test")) {} in openFileInput_shouldNotAcceptPathsWithSeparatorCharacters() method 178 …try (FileOutputStream fileOutputStream = context.openFileOutput("__test__", Context.MODE_PRIVATE))… in openFileOutput_shouldReturnAFileOutputStream() method 181 …try (FileInputStream fileInputStream = new FileInputStream(new File(context.getFilesDir(), file.ge… in openFileOutput_shouldReturnAFileOutputStream() method 190 …try (FileOutputStream fos = context.openFileOutput(File.separator + "data" + File.separator + "tes… in openFileOutput_shouldNotAcceptPathsWithSeparatorCharacters() method 199 …try (FileOutputStream fileOutputStream = context.openFileOutput("__test__", Context.MODE_APPEND)) { in openFileOutput_shouldAppendData() method 202 …try (FileOutputStream fileOutputStream = context.openFileOutput("__test__", Context.MODE_APPEND)) { in openFileOutput_shouldAppendData() method [all …]
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/ |
D | GZipTestCase.java | 48 try (OutputStream out = new FileOutputStream(output)) { in testGzipCreation() method 49 try (CompressorOutputStream cos = new CompressorStreamFactory() in testGzipCreation() method 60 try (InputStream is = new FileInputStream(input)) { in testGzipUnarchive() method 79 try (InputStream is = new FileInputStream(input)) { in testConcatenatedStreamsReadFirstOnly() method 80 try (CompressorInputStream in = new CompressorStreamFactory() in testConcatenatedStreamsReadFirstOnly() method 91 try (InputStream is = new FileInputStream(input)) { in testConcatenatedStreamsReadFully() method 92 try (CompressorInputStream in = new GzipCompressorInputStream(is, true)) { in testConcatenatedStreamsReadFully() method 145 try (FileInputStream fis = new FileInputStream(getFile("test3.xml"))) { in testInteroperabilityWithGzipCompressorInputStream() method 171 try (FileInputStream fis = new FileInputStream(getFile("test3.xml"))) { in testInteroperabilityWithGZIPInputStream() method 214 try (FileInputStream fis = new FileInputStream(getFile("test3.xml"))) { in testExtraFlags() method [all …]
|
D | LZMATestCase.java | 41 try (OutputStream out = new FileOutputStream(compressed)) { in lzmaRoundtrip() method 42 try (CompressorOutputStream cos = new CompressorStreamFactory() in lzmaRoundtrip() method 48 try (InputStream is = new FileInputStream(input)) { in lzmaRoundtrip() method 52 try (InputStream is = new FileInputStream(compressed); in lzmaRoundtrip() method 63 try (InputStream is = new FileInputStream(input)) { in testLZMAUnarchive() method 73 try (InputStream is = new BufferedInputStream(new FileInputStream(input))) { in testLZMAUnarchiveWithAutodetection() method 83 try (InputStream is = new FileInputStream(input)) { in singleByteReadConsistentlyReturnsMinusOneAtEof() method 97 try (InputStream is = new FileInputStream(input)) { in multiByteReadConsistentlyReturnsMinusOneAtEof() method
|
D | XZTestCase.java | 43 try (OutputStream out = new FileOutputStream(output)) { in testXZCreation() method 44 try (CompressorOutputStream cos = new CompressorStreamFactory() in testXZCreation() method 55 try (InputStream is = new FileInputStream(input)) { in testXZUnarchive() method 74 try (InputStream is = new FileInputStream(input)) { in testConcatenatedStreamsReadFirstOnly() method 75 try (CompressorInputStream in = new CompressorStreamFactory() in testConcatenatedStreamsReadFirstOnly() method 86 try (InputStream is = new FileInputStream(input)) { in testConcatenatedStreamsReadFully() method 87 try (CompressorInputStream in = new XZCompressorInputStream(is, true)) { in testConcatenatedStreamsReadFully() method
|
D | FramedSnappyTestCase.java | 74 try (FileInputStream is = new FileInputStream(input)) { in testUnarchive() method 91 try (FileInputStream written = new FileInputStream(output)) { in testUnarchive() method 92 try (FileInputStream orig = new FileInputStream(original)) { in testUnarchive() method 110 try (FileOutputStream fs = new FileOutputStream(input)) { in testRoundtripWithOneBigWrite() method 117 try (FileInputStream is = new FileInputStream(input); in testRoundtripWithOneBigWrite() method 127 try (FileInputStream is = new FileInputStream(input); in testRoundtripWithOneBigWrite() method 139 try (FileInputStream is = new FileInputStream(input); in testRoundtrip() method 147 try (FileInputStream is = new FileInputStream(input); in testRoundtrip() method
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/deflate64/ |
D | Deflate64CompressorInputStreamTest.java | 92 …try (Deflate64CompressorInputStream input = new Deflate64CompressorInputStream(new ByteArrayInputS… in uncompressedBlock() method 106 try (InputStream input = new CompressorStreamFactory() in uncompressedBlockViaFactory() method 121 …try (Deflate64CompressorInputStream input = new Deflate64CompressorInputStream(new ByteArrayInputS… in uncompressedBlockAvailable() method 135 …try (Deflate64CompressorInputStream input = new Deflate64CompressorInputStream(new ByteArrayInputS… in streamIgnoresExtraBytesAfterDeflatedInput() method 150 …try (Deflate64CompressorInputStream input = new Deflate64CompressorInputStream(new ByteArrayInputS… in throwsEOFExceptionOnTruncatedStreams() method 158 try (final Deflate64CompressorInputStream in = in singleByteReadConsistentlyReturnsMinusOneAtEof() method 170 try (final Deflate64CompressorInputStream in = in multiByteReadConsistentlyReturnsMinusOneAtEof() method
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateSubdivisions.java | 93 …try (PrintWriter pw = FileUtilities.openUTF8Writer(CLDRPaths.GEN_DIRECTORY, "subdivision/" + sourc… in main() method 106 …try (PrintWriter pw = FileUtilities.openUTF8Writer(CLDRPaths.GEN_DIRECTORY, "subdivision/subdivisi… in main() method 109 …try (PrintWriter pw = FileUtilities.openUTF8Writer(CLDRPaths.GEN_DIRECTORY, "subdivision/subdivisi… in main() method 112 …try (PrintWriter pw = FileUtilities.openUTF8Writer(CLDRPaths.GEN_DIRECTORY, "subdivision/en.xml"))… in main() method 115 …try (PrintWriter pw = FileUtilities.openUTF8Writer(CLDRPaths.GEN_DIRECTORY, "subdivision/categorie… in main() method 118 …try (PrintWriter pw = FileUtilities.openUTF8Writer(CLDRPaths.GEN_DIRECTORY, "subdivision/en.txt"))… in main() method 121 …try (PrintWriter pw = FileUtilities.openUTF8Writer(CLDRPaths.GEN_DIRECTORY, "subdivision/en-full.t… in main() method 124 …try (PrintWriter pw = FileUtilities.openUTF8Writer(CLDRPaths.GEN_DIRECTORY, "subdivision/missing-m… in main() method
|
/external/turbine/javatests/com/google/turbine/main/ |
D | MainTest.java | 80 try (JarOutputStream jos = new JarOutputStream(Files.newOutputStream(sourcesa))) { in sourceJarClash() method 85 try (JarOutputStream jos = new JarOutputStream(Files.newOutputStream(sourcesb))) { in sourceJarClash() method 123 try (JarOutputStream jos = new JarOutputStream(Files.newOutputStream(srcjar))) { in packageInfoSrcjar() method 142 try (JarFile jf = new JarFile(output.toFile())) { in readJar() method 160 try (JarOutputStream jos = new JarOutputStream(Files.newOutputStream(srcjar))) { in moduleInfos() method 202 try (JarFile jarFile = new JarFile(output.toFile())) { in testManifest() method 203 try (Stream<JarEntry> entries = jarFile.stream()) { in testManifest() method 222 try (JarFile jarFile = new JarFile(gensrcOutput.toFile())) { in testManifest() method 294 try (JarFile jarFile = new JarFile(gensrc); in noSources() method 314 try (Writer writer = processingEnv.getFiler().createSourceFile("g.Gen").openWriter()) { in process() method [all …]
|