Searched refs:XPathFactory (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/test/java/libcore/javax/xml/xpath/ |
D | XPathFactoryTest.java | 27 import javax.xml.xpath.XPathFactory; 37 static public class XPathFactoryForTest extends XPathFactory { 64 XPathFactory factory = XPathFactory.newInstance(SUPPORTED_URI, in newInstanceWithUriAndFactoryAndClassLoader() 72 XPathFactory factory = XPathFactory.newInstance(UNSUPPORTED_URI, in newInstanceWithUriAndFactoryAndClassLoader() 81 XPathFactory factory = XPathFactory.newInstance(null, factoryName, classLoader); in newInstanceWithUriAndFactoryAndClassLoader() 89 XPathFactory factory = XPathFactory.newInstance("", factoryName, classLoader); in newInstanceWithUriAndFactoryAndClassLoader() 98 XPathFactory factory = XPathFactory.newInstance(SUPPORTED_URI, in newInstanceWithUriAndFactoryAndClassLoader() 107 XPathFactory factory = XPathFactory.newInstance(SUPPORTED_URI, null, classLoader); in newInstanceWithUriAndFactoryAndClassLoader() 115 XPathFactory factory = XPathFactory.newInstance(SUPPORTED_URI, factoryName, null); in newInstanceWithUriAndFactoryAndClassLoader() 125 XPathFactory factory = XPathFactory.newInstance(null); in newInstanceWithUri() [all …]
|
/libcore/luni/src/main/java/javax/xml/xpath/ |
D | XPathFactory.java | 32 public abstract class XPathFactory { class 50 protected XPathFactory() { in XPathFactory() method in XPathFactory 67 public static final XPathFactory newInstance() { in newInstance() 133 public static final XPathFactory newInstance(final String uri) in newInstance() 146 classLoader = XPathFactory.class.getClassLoader(); in newInstance() 148 XPathFactory xpathFactory = new XPathFactoryFinder(classLoader).newFactory(uri); in newInstance() 165 public static XPathFactory newInstance(String uri, String factoryClassName, in newInstance() 181 … XPathFactory xpathFactory = new XPathFactoryFinder(classLoader).createInstance(factoryClassName); in newInstance()
|
D | XPathFactoryFinder.java | 143 public XPathFactory newFactory(String uri) { in newFactory() 147 XPathFactory f = _newFactory(uri); in newFactory() 163 private XPathFactory _newFactory(String uri) { in _newFactory() 164 XPathFactory xpf; in _newFactory() 214 if(uri.equals(XPathFactory.DEFAULT_OBJECT_MODEL_URI)) { in _newFactory() 232 XPathFactory createInstance( String className ) { in createInstance() 243 if( o instanceof XPathFactory ) in createInstance() 244 return (XPathFactory)o; in createInstance() 266 private XPathFactory loadFromServicesFile(String uri, String resourceName, InputStream in) { in loadFromServicesFile() 278 XPathFactory resultFactory = null; in loadFromServicesFile() [all …]
|
/libcore/ojluni/src/test/javax/xml/jaxp/transform/ |
D | XPathExFuncTest.java | 51 import javax.xml.xpath.XPathFactory; 183 XPathFactory xPathFactory = XPathFactory.newInstance(); in evaluate() 259 boolean enableExtensionFunction(XPathFactory factory) { in enableExtensionFunction()
|
/libcore/luni/src/test/java/libcore/xml/ |
D | JaxenXPathTestSuite.java | 35 import javax.xml.xpath.XPathFactory; 122 XPath xpath = XPathFactory.newInstance().newXPath(); in contextToTestSuite() 229 XPath xpath = XPathFactory.newInstance().newXPath();
|
/libcore/ |
D | non_openjdk_java_files.bp | 227 "luni/src/main/java/javax/xml/xpath/XPathFactory.java",
|
/libcore/api/ |
D | current.txt | 20841 public abstract class XPathFactory { 20842 ctor protected XPathFactory(); 20845 method public static final javax.xml.xpath.XPathFactory newInstance(); 20846 …method public static final javax.xml.xpath.XPathFactory newInstance(String) throws javax.xml.xpath… 20847 …method public static javax.xml.xpath.XPathFactory newInstance(String, String, ClassLoader) throws … 20853 field public static final String DEFAULT_PROPERTY_NAME = "javax.xml.xpath.XPathFactory";
|