HomeSort by relevance Sort by last modified time
    Searched refs:XPath (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathResult.h 42 namespace XPath {
63 static PassRefPtrWillBeRawPtr<XPathResult> create(XPath::EvaluationContext& context, const XPath::Value& value)
82 const XPath::Value& value() const { return m_value; }
87 XPathResult(XPath::EvaluationContext&, const XPath::Value&);
88 XPath::NodeSet& nodeSet() { return *m_nodeSet; }
90 XPath::Value m_value;
92 OwnPtrWillBeMember<XPath::NodeSet> m_nodeSet; // FIXME: why duplicate the node set stored in m_value?
XPathUtil.h 36 namespace XPath {
41 // @return the 'string-value' of the given node as specified by http://www.w3.org/TR/xpath
XPathExpression.h 43 namespace XPath {
64 OwnPtrWillBeMember<XPath::Expression> m_topExpression;
XPathExpressionNode.cpp 33 namespace XPath {
XPathVariableReference.cpp 33 namespace XPath {
XPathVariableReference.h 33 namespace XPath {
XPathFunctions.h 34 namespace XPath {
54 } // namespace XPath
XPathGrammar.y 50 using namespace XPath;
55 %parse-param { blink::XPath::Parser* parser }
59 blink::XPath::Step::Axis axis;
60 blink::XPath::Step::NodeTest* nodeTest;
61 blink::XPath::NumericOp::Opcode numop;
62 blink::XPath::EqTestOp::Opcode eqop;
64 blink::XPath::Expression* expr;
65 WillBeHeapVector<OwnPtrWillBeMember<blink::XPath::Predicate> >* predList;
66 WillBeHeapVector<OwnPtrWillBeMember<blink::XPath::Expression> >* argList;
67 blink::XPath::Step* step
    [all...]
  /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()
  /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/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
xpath_util.js 44 * Given an XPath expression and rootNode, it returns an array of children nodes
48 * @param {string} expression The XPath expression to evaluate.
49 * @param {Node} rootNode The HTML node to start evaluating the XPath from.
100 * Returns whether or not xpath is supported.
101 * @return {boolean} True if xpath is supported.
112 * Given an XPath expression and rootNode, it evaluates the XPath expression as
114 * @param {string} expression The XPath expression to evaluate.
115 * @param {Node} rootNode The HTML node to start evaluating the XPath from.
116 * @return {boolean} The result of evaluating the xpath expression
    [all...]
  /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);

Completed in 924 milliseconds

1 2 3 4