Home
last modified time | relevance | path

Searched refs:inputFile (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DAutomaticActivity.java153 File inputFile = new File(Environment.getExternalStorageDirectory(), in beginTest() local
155 if (inputFile.exists() && inputFile.canRead() && inputFile.length() > 0) { in beginTest()
157 FileInputStream inputStream = new FileInputStream(inputFile); in beginTest()
159 StringBuffer content = new StringBuffer((int)inputFile.length()); in beginTest()
/frameworks/base/core/tests/coretests/src/android/os/storage/
DStorageManagerBaseTest.java107 DataInputStream inputFile = openFileOnMountedObb(mOfficialObbFilePath, in run() local
109 assertTrue("Failed to open file!", inputFile != null); in run()
124 inputFile.close(); in run()
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
DLayoutFileParser.java71 public ResourceBundle.LayoutFileBundle parseXml(final File inputFile, final File outputFile, in parseXml() argument
75 File originalFileFor = originalFileLookup.getOriginalFileFor(inputFile); in parseXml()
84 final String encoding = findEncoding(inputFile); in parseXml()
85 stripFile(inputFile, outputFile, encoding, originalFileLookup); in parseXml()
/frameworks/base/services/core/java/com/android/server/net/
DNetworkStatsCollection.java393 final AtomicFile inputFile = new AtomicFile(file); in readLegacyNetwork() local
397 in = new DataInputStream(new BufferedInputStream(inputFile.openRead())); in readLegacyNetwork()
432 final AtomicFile inputFile = new AtomicFile(file); in readLegacyUid() local
436 in = new DataInputStream(new BufferedInputStream(inputFile.openRead())); in readLegacyUid()
/frameworks/data-binding/
DsupportBundle.gradle122 def getSha1(File inputFile) {
124 … HashCode hashCode = hashFunction.hashString(inputFile.getAbsolutePath(), Charset.forName("UTF-8"))
/frameworks/multidex/
Dbuild.gradle120 def getSha1(File inputFile) {
122 HashCode hashCode = hashFunction.hashString(inputFile.getAbsolutePath())
/frameworks/support/
Dbuild.gradle133 def getSha1(File inputFile) {
135 … HashCode hashCode = hashFunction.hashString(inputFile.getAbsolutePath(), Charset.forName("UTF-8"))
/frameworks/base/tools/aapt/
DCommand.cpp2737 std::string inputFile, outputFile; in runInDaemonMode() local
2738 std::getline(std::cin, inputFile); in runInDaemonMode()
2740 bundle->setSingleCrunchInputFile(inputFile.c_str()); in runInDaemonMode()
2742 std::cout << "Crunching " << inputFile << std::endl; in runInDaemonMode()