Searched refs:xmlFile (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Settings/src/com/android/settings/
H A DLicenseHtmlGeneratorFromXml.java115 for (File xmlFile : mXmlFiles) {
116 parse(xmlFile);
142 private void parse(File xmlFile) { argument
143 if (xmlFile == null || !xmlFile.exists() || xmlFile.length() == 0) {
149 if (xmlFile.getName().endsWith(".gz")) {
150 in = new InputStreamReader(new GZIPInputStream(new FileInputStream(xmlFile)));
152 in = new FileReader(xmlFile);
159 Log.e(TAG, "Failed to parse " + xmlFile,
[all...]
/packages/apps/Settings/src/com/android/settings/dashboard/conditional/
H A DConditionManager.java81 private void readFromXml(File xmlFile, ArrayList<Condition> conditions) { argument
82 if (DEBUG) Log.d(TAG, "Reading from " + xmlFile.toString());
85 FileReader in = new FileReader(xmlFile);

Completed in 81 milliseconds