HomeSort by relevance Sort by last modified time
    Searched refs:XPath (Results 26 - 50 of 101) sorted by null

12 3 4 5

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domimplementationregistry11.js 72 DOMImplementationRegistry.getDOMImplementation("XPath") should return null or a DOMImplementation
73 where hasFeature("XPath", null) returns true.
91 domImpl = domImplRegistry.getDOMImplementation("XPath");
99 hasFeature = hasFeature("XPath",nullVersion);
105 hasFeature = domImpl.hasFeature("XPath",nullVersion);
domimplementationregistry22.js 72 DOMImplementationRegistry.getDOMImplementationList("XPath") should return
74 where hasFeature("XPath", null) returns true.
94 domImplList = domImplRegistry.getDOMImplementationList("XPath");
102 hasFeature = hasFeature("XPath",nullVersion);
110 hasFeature = domImpl.hasFeature("XPath",nullVersion);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCopyOf.java 33 import org.apache.xpath.XPath;
34 import org.apache.xpath.XPathContext;
35 import org.apache.xpath.objects.XObject;
54 public XPath m_selectExpression = null;
62 public void setSelect(XPath expr)
73 public XPath getSelect()
TemplateSubPatternAssociation.java 28 import org.apache.xpath.XPath;
29 import org.apache.xpath.XPathContext;
30 import org.apache.xpath.patterns.StepPattern;
144 * @param xctxt XPath context to use with this template
157 return (XPath.MATCH_SCORE_NONE != score)
StylesheetRoot.java 46 import org.apache.xpath.XPath;
47 import org.apache.xpath.XPathContext;
91 m_selectDefault = new XPath("node()", this, this, XPath.SELECT, errorListener);
747 * @param xctxt non-null reference to XPath runtime execution context.
774 * @param xctxt non-null reference to XPath runtime execution context.
910 * @param support The XPath runtime state.
932 * @param support The XPath runtime state.
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathEvaluator.cpp 30 #if ENABLE(XPATH)
41 using namespace XPath;
77 #endif // ENABLE(XPATH)
XPathPath.h 30 #if ENABLE(XPATH)
37 namespace XPath {
92 #endif // ENABLE(XPATH)
XPathExpression.cpp 30 #if ENABLE(XPATH)
43 using namespace XPath;
96 #endif // ENABLE(XPATH)
XPathExpressionNode.h 30 #if ENABLE(XPATH)
40 namespace XPath {
103 #endif // ENABLE(XPATH)
XPathNodeSet.h 29 #if ENABLE(XPATH)
38 namespace XPath {
84 #endif // ENABLE(XPATH)
XPathUtil.cpp 30 #if ENABLE(XPATH)
35 namespace XPath {
100 #endif // ENABLE(XPATH)
XPathPredicate.h 30 #if ENABLE(XPATH)
37 namespace XPath {
126 #endif // ENABLE(XPATH)
XPathStep.h 30 #if ENABLE(XPATH)
38 namespace XPath {
107 #endif // ENABLE(XPATH)
  /libcore/luni/src/main/java/javax/xml/xpath/
XPath.java 17 // $Id: XPath.java 569998 2007-08-27 04:40:02Z mrglavas $
19 package javax.xml.xpath;
26 * <p><code>XPath</code> provides access to the XPath evaluation environment and expressions.</p>
28 * <table id="XPath-evaluation" border="1" cellpadding="2">
31 * <th colspan="2">Evaluation of XPath Expressions.</th>
40 * For the purposes of evaluating XPath expressions, a DocumentFragment
66 * QNames in the expression are resolved against the XPath namespace context
75 * Conversion to the return type follows XPath conversion rules.</p>
83 * @see <a href="http://www.w3.org/TR/xpath">XML Path Language (XPath) Version 1.0</a
    [all...]
XPathFactory.java 19 package javax.xml.xpath;
23 * {@link javax.xml.xpath.XPath} objects.</p>
38 public static final String DEFAULT_PROPERTY_NAME = "javax.xml.xpath.XPathFactory";
43 public static final String DEFAULT_OBJECT_MODEL_URI = "http://java.sun.com/jaxp/xpath/dom";
98 * The class loader is asked for service provider provider-configuration files matching <code>javax.xml.xpath.XPathFactory</code>
119 * http\://java.sun.com/jaxp/xpath/dom=org.acme.DomXPathFactory
124 * <code>http://java.sun.com/jaxp/xpath/dom</code> for the W3C DOM,
204 * <p>Set a feature for this <code>XPathFactory</code> and <code>XPath</code>s created by this factory.</p>
209 * An {@link XPathFactoryConfigurationException} is thrown if this <code>XPathFactory</code> or the <code>XPath</code>
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyIterator.java 33 import org.apache.xpath.XPath;
34 import org.apache.xpath.axes.OneStepIteratorForward;
104 org.apache.xpath.XPathContext xctxt = ki.getXPathContext();
128 XPath matchExpr = kd.getMatch();
  /external/objenesis/tck/test/org/objenesis/tck/
OsgiTest.java 24 import javax.xml.xpath.XPath;
25 import javax.xml.xpath.XPathExpression;
26 import javax.xml.xpath.XPathExpressionException;
27 import javax.xml.xpath.XPathFactory;
50 final XPath xPath = xPathFactory.newXPath();
53 xPathExpression = xPath.compile("/project/parent/version");
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathImpl.java 20 package org.apache.xpath.jaxp;
24 import javax.xml.xpath.XPathExpressionException;
25 import javax.xml.xpath.XPathConstants;
26 import javax.xml.xpath.XPathFunctionResolver;
27 import javax.xml.xpath.XPathVariableResolver;
28 import javax.xml.xpath.XPathExpression;
31 import org.apache.xpath.*;
32 import org.apache.xpath.objects.XObject;
33 import org.apache.xpath.res.XPATHErrorResources;
50 * javax.xml.xpath.XPath interface. This provide simple access to the result
195 org.apache.xpath.XPath xpath = new org.apache.xpath.XPath( expression, local
400 org.apache.xpath.XPath xpath = new XPath (expression, null, local
    [all...]
XPathExpressionImpl.java 20 package org.apache.xpath.jaxp;
22 import org.apache.xpath.*;
25 import org.apache.xpath.objects.XObject;
27 import org.apache.xpath.res.XPATHErrorResources;
32 import javax.xml.xpath.XPathExpressionException;
33 import javax.xml.xpath.XPathConstants;
34 import javax.xml.xpath.XPathFunctionResolver;
35 import javax.xml.xpath.XPathVariableResolver;
36 import javax.xml.xpath.XPathConstants;
48 * The XPathExpression interface encapsulates a (compiled) XPath expression
58 private org.apache.xpath.XPath xpath; field in class:XPathExpressionImpl
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 32 import javax.xml.xpath.XPath;
33 import javax.xml.xpath.XPathConstants;
34 import javax.xml.xpath.XPathExpressionException;
35 import javax.xml.xpath.XPathFactory;
36 import javax.xml.xpath.XPathVariableResolver;
44 * href="http://jaxen.codehaus.org/">Jaxen</a> XPath test suite, adapted for use
122 XPath xpath = XPathFactory.newInstance().newXPath(); local
123 xpath.setXPathVariableResolver(new ElementVariableResolver(element))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
NodeTest.java 21 package org.apache.xpath.patterns;
25 import org.apache.xpath.Expression;
26 import org.apache.xpath.ExpressionOwner;
27 import org.apache.xpath.XPath;
28 import org.apache.xpath.XPathContext;
29 import org.apache.xpath.XPathVisitor;
30 import org.apache.xpath.objects.XNumber;
31 import org.apache.xpath.objects.XObject;
44 * @see <a href="http://www.w3.org/TR/xpath#NT-NameTest">the XPath NameTest production.</a>
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
ValuesEditorDelegate.java 35 import javax.xml.xpath.XPath;
36 import javax.xml.xpath.XPathConstants;
37 import javax.xml.xpath.XPathExpressionException;
104 XPath xpath = AndroidXPathFactory.newXPath(); local
105 Node node = (Node) xpath.evaluate("/" + resources_desc.getXmlName(), //$NON-NLS-1$
114 AdtPlugin.log(e, "XPath error when trying to find '%s' element in XML.", //$NON-NLS-1$
  /external/apache-xml/src/main/java/org/apache/xpath/
XPath.java 19 * $Id: XPath.java 468655 2006-10-28 07:12:06Z minchau $
21 package org.apache.xpath;
33 import org.apache.xpath.compiler.Compiler;
34 import org.apache.xpath.compiler.FunctionTable;
35 import org.apache.xpath.compiler.XPathParser;
36 import org.apache.xpath.functions.Function;
37 import org.apache.xpath.objects.XObject;
38 import org.apache.xpath.res.XPATHErrorResources;
41 * The XPath class wraps an expression object and provides general services
45 public class XPath implements Serializable, ExpressionOwne
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/
MenuEditorDelegate.java 35 import javax.xml.xpath.XPath;
36 import javax.xml.xpath.XPathConstants;
37 import javax.xml.xpath.XPathExpressionException;
109 XPath xpath = AndroidXPathFactory.newXPath(); local
110 Node node = (Node) xpath.evaluate("/" + root_desc.getXmlName(), //$NON-NLS-1$
123 AdtPlugin.log(e, "XPath error when trying to find '%s' element in XML.", //$NON-NLS-1$
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorLRE.java 39 import org.apache.xpath.XPath;
184 XPath rootMatch = new XPath("/", stylesheet, stylesheet, XPath.MATCH,

Completed in 1748 milliseconds

12 3 4 5