Home
last modified time | relevance | path

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

/external/apache-xml/src/main/java/org/apache/xalan/processor/
DProcessorPreserveSpace.java67 Vector xpaths = paths.getElements(); in startElement() local
69 for (int i = 0; i < xpaths.size(); i++) in startElement()
71 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), false, thisSheet); in startElement()
DProcessorStripSpace.java66 Vector xpaths = paths.getElements(); in startElement() local
68 for (int i = 0; i < xpaths.size(); i++) in startElement()
70 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), true, thisSheet); in startElement()
/external/autotest/server/cros/ap_configurators/
Dweb_driver_core_helpers.py104 xpaths = []
106 xpaths.append('id("%s")' % element_id)
107 xpath_found = self.wait_for_objects_by_xpath(xpaths, wait_time)
113 def wait_for_objects_by_xpath(self, xpaths, wait_time=5): argument
123 if wait_time < len(xpaths):
124 wait_time = len(xpaths)
127 for xpath in xpaths: