Searched refs:XPath (Results 1 - 25 of 74) sorted by relevance

123

/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DKeyDeclaration.java24 import org.apache.xpath.XPath;
98 private XPath m_matchPattern = null;
109 public void setMatch(XPath v)
123 public XPath getMatch()
132 private XPath m_use;
142 public void setUse(XPath v)
155 public XPath getUse()
H A DElemWhen.java23 import org.apache.xpath.XPath;
46 private XPath m_test;
55 public void setTest(XPath v)
67 public XPath getTest()
H A DElemVariablePsuedo.java26 import org.apache.xpath.XPath;
43 public void setSelect(XPath v)
H A DWhiteSpaceInfo.java23 import org.apache.xpath.XPath;
69 public WhiteSpaceInfo(XPath matchPattern, boolean shouldStripSpace, Stylesheet thisSheet)
H A DAVTPartXPath.java24 import org.apache.xpath.XPath;
39 * The XPath object contained in this part.
42 private XPath m_xpath;
75 public AVTPartXPath(XPath xpath)
85 * Namespace Name (URI) for any Namespace prefix used in the XPath.
86 * Usually this is based on the context where the XPath was specified,
88 * @param xpathProcessor XPath parser
89 * @param factory XPath factory
92 * variables, error handler and so on, so the transformation/XPath
104 m_xpath = new XPath(va
[all...]
H A DElemIf.java26 import org.apache.xpath.XPath;
50 private XPath m_test = null;
58 public void setTest(XPath v)
69 public XPath getTest()
H A DElemSort.java24 import org.apache.xpath.XPath;
54 private XPath m_selectExpression = null;
70 public void setSelect(XPath v)
93 public XPath getSelect()
H A DElemTemplate.java28 import org.apache.xpath.XPath;
158 private XPath m_matchPattern = null;
171 public void setMatch(XPath v)
187 public XPath getMatch()
266 private double m_priority = XPath.MATCH_SCORE_NONE;
H A DElemWithParam.java28 import org.apache.xpath.XPath;
61 private XPath m_selectPattern = null;
70 public void setSelect(XPath v)
82 public XPath getSelect()
155 XPath newSelect = ElemVariable.rewriteChildToExpression(this);
H A DElemValueOf.java30 import org.apache.xpath.XPath;
55 private XPath m_selectExpression = null;
71 public void setSelect(XPath v)
92 public XPath getSelect()
H A DElemVariable.java27 import org.apache.xpath.XPath;
94 private XPath m_selectPattern;
106 public void setSelect(XPath v)
121 public XPath getSelect()
332 XPath newSelect = rewriteChildToExpression(this);
398 * @return An XPath if rewrite is possible, else null.
402 static XPath rewriteChildToExpression(ElemTemplateElement varElem)
424 return new XPath(new XRTreeFragSelectWrapper(valueof.getSelect().getExpression()));
439 return new XPath(new XRTreeFragSelectWrapper(xstr));
H A DElemNumber.java46 import org.apache.xpath.XPath;
136 private XPath m_countMatchPattern = null;
149 public void setCount(XPath v)
165 public XPath getCount()
181 private XPath m_fromMatchPattern = null;
195 public void setFrom(XPath v)
212 public XPath getFrom()
277 private XPath m_valueExpr = null;
287 public void setValue(XPath v)
300 public XPath getValu
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathResult.h56 static PassRefPtr<XPathResult> create(Document* document, const XPath::Value& value) { return adoptRef(new XPathResult(document, value)); }
73 const XPath::Value& value() const { return m_value; }
76 XPathResult(Document*, const XPath::Value&);
78 XPath::Value m_value;
80 XPath::NodeSet m_nodeSet; // FIXME: why duplicate the node set stored in m_value?
H A DXPathExpression.h42 namespace XPath { namespace in namespace:WebCore
60 XPath::Expression* m_topExpression;
H A DXPathExpressionNode.cpp34 namespace XPath { namespace in namespace:WebCore
H A DXPathUtil.h37 namespace XPath { namespace in namespace:WebCore
H A DXPathVariableReference.cpp33 namespace XPath { namespace in namespace:WebCore
H A DXPathVariableReference.h33 namespace XPath { namespace in namespace:WebCore
H A DXPathFunctions.h34 namespace XPath { namespace in namespace:WebCore
52 } // namespace XPath
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathFactory.java28 * Factory class for creating an XPath. Implementors of XPath derivatives
36 * Create an XPath.
38 * @param exprString The XPath expression string.
43 * @param type One of {@link org.apache.xpath.XPath#SELECT} or
44 * {@link org.apache.xpath.XPath#MATCH}.
46 * @return an XPath ready for execution.
48 XPath create(String exprString, SourceLocator locator,
H A DCachedXPathAPI.java36 * low-level XPath API.
55 * @see <a href="http://www.w3.org/TR/xpath">XPath Specification</a>
76 // variable resolution scopes. Sufficient for simple XPath 1.0 expressions.
111 * Use an XPath string to select a single node. XPath namespace
116 * @param str A valid XPath string.
117 * @return The first node found that matches the XPath, or null.
128 * Use an XPath string to select a single node.
129 * XPath namespace prefixes are resolved from the namespaceNode.
132 * @param str A valid XPath strin
[all...]
H A DXPathAPI.java36 * low-level XPath API.
50 * @see <a href="http://www.w3.org/TR/xpath">XPath Specification</a>
56 * Use an XPath string to select a single node. XPath namespace
61 * @param str A valid XPath string.
62 * @return The first node found that matches the XPath, or null.
73 * Use an XPath string to select a single node.
74 * XPath namespace prefixes are resolved from the namespaceNode.
77 * @param str A valid XPath string.
78 * @param namespaceNode The node from which prefixes in the XPath wil
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DNodeSortKey.java27 import org.apache.xpath.XPath;
37 XPath m_selectPat;
75 TransformerImpl transformer, XPath selectPat, boolean treatAsNumbers,
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorPreserveSpace.java27 import org.apache.xpath.XPath;
71 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), false, thisSheet);
H A DProcessorStripSpace.java27 import org.apache.xpath.XPath;
70 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), true, thisSheet);

Completed in 3860 milliseconds

123