/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/testutils/ |
D | TestUtils.java | 188 FileInputStream fis = null; in readFile() local 190 fis = new FileInputStream(file); in readFile() 192 length -= fis.read(b, b.length - length, length); in readFile() 196 fis.close(); in readFile()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/sfnttool/ |
D | SfntTool.java | 120 FileInputStream fis = null; in subsetFontFile() local 122 fis = new FileInputStream(fontFile); in subsetFontFile() 124 fis.read(fontBytes); in subsetFontFile() 183 if (fis != null) { in subsetFontFile() 184 fis.close(); in subsetFontFile()
|
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/issue_tests/ |
D | Issue28Tests.java | 26 FileInputStream fis = new FileInputStream(file); in readToByteArray() local 29 fis.read(data); in readToByteArray() 31 fis.close(); in readToByteArray()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sflint/ |
D | SFLint.java | 83 FileInputStream fis = null; in lintFontFile() local 85 fis = new FileInputStream(fontFile); in lintFontFile() 86 Font[] fontArray = fontFactory.loadFonts(fis); in lintFontFile() 91 if (fis != null) { in lintFontFile() 92 fis.close(); in lintFontFile()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/ |
D | CompatibilityTest.java | 149 FileInputStream fis = new FileInputStream(file); in getFileList() local 152 fileBytes = SerializableTestUtility.copyStreamBytes(fis); in getFileList() 154 fis.close(); in getFileList()
|
D | SerializableTestUtility.java | 874 FileInputStream fis = new FileInputStream(testFile); in getSerializedObjects() local 875 ObjectInputStream ois = new ObjectInputStream(fis); in getSerializedObjects() 877 fis.close(); in getSerializedObjects()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
D | CompatibilityTest.java | 146 FileInputStream fis = new FileInputStream(file); in getFileList() local 149 fileBytes = SerializableTestUtility.copyStreamBytes(fis); in getFileList() 151 fis.close(); in getFileList()
|
D | SerializableTestUtility.java | 911 FileInputStream fis = new FileInputStream(testFile); in getSerializedObjects() local 912 ObjectInputStream ois = new ObjectInputStream(fis); in getSerializedObjects() 914 fis.close(); in getSerializedObjects()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfntdump/ |
D | SfntDump.java | 359 FileInputStream fis = null; in dumpFont() local 362 fis = new FileInputStream(fontFile); in dumpFont() 363 Font[] fontArray = fontFactory.loadFonts(fis); in dumpFont() 464 if (fis != null) { in dumpFont() 465 fis.close(); in dumpFont()
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
D | RBTMXImporter.java | 60 FileInputStream fis = new FileInputStream(tmx_file); in beginImport() local 61 InputSource is = new InputSource(fis); in beginImport() 64 fis.close(); in beginImport()
|
D | RBPropertiesImporter.java | 104 FileInputStream fis = new FileInputStream(new File(baseDir, baseName + in beginImport() local 107 p.load(fis); in beginImport()
|
D | Preferences.java | 162 FileInputStream fis = new FileInputStream("preferences.properties"); in init() local 163 prop.load(fis); in init()
|
D | RBxliffImporter.java | 56 FileInputStream fis = new FileInputStream(xlf_file); in beginImport() local 57 InputSource is = new InputSource(fis); in beginImport() 60 fis.close(); in beginImport()
|
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
D | CollationPerformanceTest.java | 1073 FileInputStream fis = null; in readDataLines() local 1077 fis = new FileInputStream(opt_fName); in readDataLines() 1078 isr = new InputStreamReader(fis, "UTF-8"); in readDataLines() 1122 FileInputStream fis = null; in getCollationRules() local 1126 fis = new FileInputStream(opt_rules); in getCollationRules() 1127 isr = new InputStreamReader(fis,"ISO-8859-1"); in getCollationRules()
|
D | PerfTest.java | 777 FileInputStream fis = null; in readLines() local 781 fis = new FileInputStream(filename); in readLines() 782 isr = new InputStreamReader(fis, srcEncoding); in readLines()
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | ICUJDKCompare.java | 164 FileInputStream fis = new FileInputStream(f); in setup() local 165 InputStreamReader isr = new InputStreamReader(fis); in setup() 198 FileInputStream fis = new FileInputStream(f); in setup() local 199 InputStreamReader isr = new InputStreamReader(fis); in setup()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | MessageSchema.java | 626 FieldInfo[] fis = messageInfo.getFields(); in newSchemaForMessageInfo() local 629 if (fis.length == 0) { in newSchemaForMessageInfo() 633 minFieldNumber = fis[0].getFieldNumber(); in newSchemaForMessageInfo() 634 maxFieldNumber = fis[fis.length - 1].getFieldNumber(); in newSchemaForMessageInfo() 637 final int numEntries = fis.length; in newSchemaForMessageInfo() 644 for (FieldInfo fi : fis) { in newSchemaForMessageInfo() 665 for (int bufferIndex = 0; fieldIndex < fis.length; bufferIndex += INTS_PER_FIELD) { in newSchemaForMessageInfo() 666 final FieldInfo fi = fis[fieldIndex]; in newSchemaForMessageInfo()
|
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/ |
D | StableAPI.java | 1020 FileInputStream fis = new FileInputStream(file); in getDocument() local 1021 InputSource inputSource = new InputSource(fis); in getDocument()
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
D | Demo.java | 452 FileInputStream fis = new FileInputStream(f); in actionPerformed() local 453 InputStreamReader isr = new InputStreamReader(fis, "UTF8"); in actionPerformed()
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | cy.txt | 1533 two{"{0} fis yn ôl"} 1554 two{"{0} fis yn ôl"}
|
/third_party/icu/icu4c/source/data/locales/ |
D | cy.txt | 1668 two{"{0} fis yn ôl"} 1689 two{"{0} fis yn ôl"}
|
/third_party/skia/third_party/externals/icu/source/data/unit/ |
D | cy.txt | 564 two{"{0} fis"} 3173 two{"{0} fis"}
|
/third_party/icu/icu4c/source/data/unit/ |
D | cy.txt | 573 two{"{0} fis"} 3491 two{"{0} fis"}
|
/third_party/python/Lib/test/ |
D | mime.types | 539 application/vnd.motorola.flexsuite.fis
|
/third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/ |
D | hdr-rgb-eveningroad.hdr | 1082 …p�}��as��o\rYXojnunle��ϯ[_ml{t���gnjxd�}o�x�{ra�y���rbr�l�k��m|l���auooiy�ջfis]�x�q}��xr���ď�����ȣ…
|