Home
last modified time | relevance | path

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

/tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
DPackageManagerOTATestUtils.java112 public boolean expectExists(File xmlFile, String xPathString) { in expectExists() argument
113 Node n = getNodeForXPath(xmlFile, xPathString); in expectExists()
130 public boolean expectStartsWith(File xmlFile, String xPathString, String value) { in expectStartsWith() argument
131 Node n = getNodeForXPath(xmlFile, xPathString); in expectStartsWith()
149 public boolean expectEquals(File xmlFile, String xPathString, String value) { in expectEquals() argument
150 Node n = getNodeForXPath(xmlFile, xPathString); in expectEquals()
163 public Node getNodeForXPath(File xmlFile, String xPathString) { in getNodeForXPath() argument
167 Document doc = documentBuilder.parse(xmlFile); in getNodeForXPath()