Searched refs:inputFile (Results 1 – 8 of 8) sorted by relevance
/frameworks/support/samples/SupportLeanbackShowcase/ |
D | build-release.py | 9 def replace(inputFile, pattern, newVal, ): argument 10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile) 12 if os.path.exists(inputFile): 13 for line in fileinput.input(inputFile, inplace = 1): 20 file = open(inputFile, "a")
|
D | build-local.py | 9 def replace(inputFile, pattern, newVal, ): argument 10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile) 12 if os.path.exists(inputFile): 13 for line in fileinput.input(inputFile, inplace = 1): 20 file = open(inputFile, "a")
|
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/ |
D | AutomaticActivity.java | 153 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/ |
D | StorageManagerBaseTest.java | 107 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/ |
D | LayoutFileParser.java | 71 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/data-binding/ |
D | supportBundle.gradle | 122 def getSha1(File inputFile) { 124 … HashCode hashCode = hashFunction.hashString(inputFile.getAbsolutePath(), Charset.forName("UTF-8"))
|
/frameworks/base/services/core/java/com/android/server/net/ |
D | NetworkStatsCollection.java | 516 final AtomicFile inputFile = new AtomicFile(file); in readLegacyNetwork() local 520 in = new DataInputStream(new BufferedInputStream(inputFile.openRead())); in readLegacyNetwork() 555 final AtomicFile inputFile = new AtomicFile(file); in readLegacyUid() local 559 in = new DataInputStream(new BufferedInputStream(inputFile.openRead())); in readLegacyUid()
|
/frameworks/base/tools/aapt/ |
D | Command.cpp | 2833 std::string inputFile, outputFile; in runInDaemonMode() local 2834 std::getline(std::cin, inputFile); in runInDaemonMode() 2836 bundle->setSingleCrunchInputFile(inputFile.c_str()); in runInDaemonMode() 2838 std::cout << "Crunching " << inputFile << std::endl; in runInDaemonMode()
|