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

/libcore/luni/src/main/java/java/util/prefs/
H A DXMLParser.java441 * Returns the preferences from {@code xmlFile}. Returns empty properties if
444 static Properties readXmlPreferences(File xmlFile) { argument
446 if (!xmlFile.exists()) {
447 xmlFile.getParentFile().mkdirs();
448 } else if (xmlFile.canRead()) {
451 reader = new InputStreamReader(new FileInputStream(xmlFile), "UTF-8");
468 xmlFile.delete();
474 * Writes the preferences to {@code xmlFile}.
476 static void writeXmlPreferences(File xmlFile, Properties properties) throws IOException { argument
477 File parent = xmlFile
[all...]
/libcore/benchmarks/src/benchmarks/
H A DXmlParseBenchmark.java42 @Param String xmlFile; field in class:XmlParseBenchmark
74 FileInputStream fileIn = new FileInputStream(xmlFile);

Completed in 74 milliseconds