/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathUtil.h | 37 namespace XPath { 42 /* @return the 'string-value' of the given node as specified by http://www.w3.org/TR/xpath */
|
XPathResult.h | 56 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?
|
XPathExpressionNode.cpp | 33 namespace XPath {
|
XPathVariableReference.h | 33 namespace XPath {
|
XPathExpression.h | 42 namespace XPath { 60 XPath::Expression* m_topExpression;
|
XPathVariableReference.cpp | 33 namespace XPath {
|
XPathFunctions.h | 34 namespace XPath { 53 } // namespace XPath
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
KeyDeclaration.java | 24 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()
|
ElemWhen.java | 23 import org.apache.xpath.XPath; 46 private XPath m_test; 55 public void setTest(XPath v) 67 public XPath getTest()
|
ElemVariablePsuedo.java | 26 import org.apache.xpath.XPath; 43 public void setSelect(XPath v)
|
WhiteSpaceInfo.java | 23 import org.apache.xpath.XPath; 69 public WhiteSpaceInfo(XPath matchPattern, boolean shouldStripSpace, Stylesheet thisSheet)
|
AVTPartXPath.java | 24 import org.apache.xpath.XPath; 25 import org.apache.xpath.XPathContext; 26 import org.apache.xpath.XPathFactory; 27 import org.apache.xpath.compiler.XPathParser; 28 import org.apache.xpath.objects.XObject; 39 * The XPath object contained in this part. 42 private XPath m_xpath; 73 * @param xpath Xpath section of AVT [all...] |
ElemIf.java | 26 import org.apache.xpath.XPath; 27 import org.apache.xpath.XPathContext; 28 import org.apache.xpath.objects.XObject; 50 private XPath m_test = null; 58 public void setTest(XPath v) 69 public XPath getTest()
|
ElemSort.java | 24 import org.apache.xpath.XPath; 54 private XPath m_selectExpression = null; 70 public void setSelect(XPath v) 93 public XPath getSelect() 151 * <b><a href="http://www.w3.org/TR/xpath#function-number">number</a></b> function; the <code>lang</code> 156 * is expanded into an <a href="http://www.w3.org/TR/xpath#dt-expanded-name">expanded-name</a> as described 188 * <b><a href="http://www.w3.org/TR/xpath#function-number">number</a></b> function; the <code>lang</code> 193 * is expanded into an <a href="http://www.w3.org/TR/xpath#dt-expanded-name">expanded-name</a> as described
|
ElemTemplate.java | 28 import org.apache.xpath.XPath; 29 import org.apache.xpath.XPathContext; 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;
|
ElemWithParam.java | 28 import org.apache.xpath.XPath; 29 import org.apache.xpath.XPathContext; 30 import org.apache.xpath.objects.XObject; 31 import org.apache.xpath.objects.XRTreeFrag; 32 import org.apache.xpath.objects.XString; 61 private XPath m_selectPattern = null; 70 public void setSelect(XPath v) 82 public XPath getSelect() 155 XPath newSelect = ElemVariable.rewriteChildToExpression(this) [all...] |
ElemValueOf.java | 29 import org.apache.xpath.Expression; 30 import org.apache.xpath.XPath; 31 import org.apache.xpath.XPathContext; 32 import org.apache.xpath.objects.XObject; 55 private XPath m_selectExpression = null; 71 public void setSelect(XPath v) 92 public XPath getSelect()
|
ElemVariable.java | 27 import org.apache.xpath.XPath; 28 import org.apache.xpath.XPathContext; 29 import org.apache.xpath.objects.XObject; 30 import org.apache.xpath.objects.XRTreeFrag; 31 import org.apache.xpath.objects.XRTreeFragSelectWrapper; 32 import org.apache.xpath.objects.XString; 94 private XPath m_selectPattern; 106 public void setSelect(XPath v) 121 public XPath getSelect( [all...] |
ElemNumber.java | 45 import org.apache.xpath.NodeSetDTM; 46 import org.apache.xpath.XPath; 47 import org.apache.xpath.XPathContext; 48 import org.apache.xpath.objects.XObject; 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 [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/ |
XPathFactory.java | 21 package org.apache.xpath; 28 * 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 [all...] |
CachedXPathAPI.java | 21 package org.apache.xpath; 27 import org.apache.xpath.objects.XObject; 36 * 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 288 XPath xpath = new XPath(str, null, prefixResolver, XPath.SELECT, null); local 329 XPath xpath = new XPath(str, null, prefixResolver, XPath.SELECT, null); local [all...] |
XPathAPI.java | 21 package org.apache.xpath; 27 import org.apache.xpath.objects.XObject; 36 * 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 236 XPath xpath = new XPath(str, null, prefixResolver, XPath.SELECT, null); local 277 XPath xpath = new XPath(str, null, prefixResolver, XPath.SELECT, null); local [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
NodeSortKey.java | 27 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/ |
ProcessorPreserveSpace.java | 27 import org.apache.xpath.XPath; 71 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), false, thisSheet);
|
ProcessorStripSpace.java | 27 import org.apache.xpath.XPath; 70 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), true, thisSheet);
|