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

1 2

  /external/apache-xml/src/main/java/org/apache/xpath/
CachedXPathAPI.java 115 * @param contextNode The node to start searching from.
121 public Node selectSingleNode(Node contextNode, String str)
124 return selectSingleNode(contextNode, str, contextNode);
131 * @param contextNode The node to start searching from.
139 Node contextNode, String str, Node namespaceNode)
144 NodeIterator nl = selectNodeIterator(contextNode, str, namespaceNode);
152 * XPath namespace prefixes are resolved from the contextNode.
154 * @param contextNode The node to start searching from.
160 public NodeIterator selectNodeIterator(Node contextNode, String str
    [all...]
XPathAPI.java 60 * @param contextNode The node to start searching from.
66 public static Node selectSingleNode(Node contextNode, String str)
69 return selectSingleNode(contextNode, str, contextNode);
76 * @param contextNode The node to start searching from.
84 Node contextNode, String str, Node namespaceNode)
89 NodeIterator nl = selectNodeIterator(contextNode, str, namespaceNode);
97 * XPath namespace prefixes are resolved from the contextNode.
99 * @param contextNode The node to start searching from.
105 public static NodeIterator selectNodeIterator(Node contextNode, String str
    [all...]
XPath.java 287 * @param contextNode The node that "." expresses.
299 XPathContext xctxt, org.w3c.dom.Node contextNode,
304 xctxt, xctxt.getDTMHandleFromNode(contextNode),
314 * @param contextNode The node that "." expresses.
325 XPathContext xctxt, int contextNode, PrefixResolver namespaceContext)
331 xctxt.pushCurrentNodeAndExpression(contextNode, contextNode);
391 * @param contextNode The node that "." expresses.
402 XPathContext xctxt, int contextNode, PrefixResolver namespaceContext)
408 xctxt.pushCurrentNodeAndExpression(contextNode, contextNode)
    [all...]
Expression.java 234 * @param contextNode The node that "." expresses.
244 public DTMIterator asIterator(XPathContext xctxt, int contextNode)
250 xctxt.pushCurrentNodeAndExpression(contextNode, contextNode);
265 * @param contextNode The node that "." expresses.
275 public DTMIterator asIteratorRaw(XPathContext xctxt, int contextNode)
281 xctxt.pushCurrentNodeAndExpression(contextNode, contextNode);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathExpression.idl 21 [RaisesException] XPathResult evaluate([Default=Undefined] optional Node contextNode,
XPathEvaluator.cpp 52 PassRefPtr<XPathResult> XPathEvaluator::evaluate(const String& expression, Node* contextNode,
55 if (!isValidContextNode(contextNode)) {
64 return expr->evaluate(contextNode, type, result, es);
XPathExpression.cpp 60 PassRefPtr<XPathResult> XPathExpression::evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionState& es)
62 if (!isValidContextNode(contextNode)) {
68 evaluationContext.node = contextNode;
72 RefPtr<XPathResult> result = XPathResult::create(contextNode->document(), m_topExpression->evaluate());
XPathExpression.h 52 PassRefPtr<XPathResult> evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionState&);
DocumentXPathEvaluator.h 50 const String& expression, Node* contextNode, XPathNSResolver*,
XPathEvaluator.h 49 PassRefPtr<XPathResult> evaluate(const String& expression, Node* contextNode,
DocumentXPathEvaluator.cpp 74 Node* contextNode, XPathNSResolver* resolver, unsigned short type,
80 return suplement->m_xpathEvaluator->evaluate(expression, contextNode, resolver, type, result, es);
DocumentXPathEvaluator.idl 25 [Default=Undefined] optional Node contextNode,
XPathEvaluator.idl 29 [Default=Undefined] optional Node contextNode,
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 157 @Override void test(Node contextNode) {
159 xpath.evaluate(select, contextNode);
174 @Override void test(Node contextNode) throws XPathExpressionException {
176 select, contextNode, XPathConstants.NODE);
187 @Override void test(Node contextNode) throws XPathExpressionException {
189 select, contextNode, XPathConstants.NODESET);
206 @Override void test(Node contextNode) throws XPathExpressionException {
208 xpath.evaluate(select, contextNode, XPathConstants.STRING));
258 abstract void test(Node contextNode) throws XPathExpressionException;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DocumentCustom.cpp 68 RefPtr<Node> contextNode;
70 contextNode = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[1]));
83 V8TRYCATCH_VOID(RefPtr<XPathResult>, result, DocumentXPathEvaluator::evaluate(document.get(), expression, contextNode.get(), resolver.get(), type, inResult.get(), es));
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 712 * @param contextNode The node that "." expresses.
718 XPath getCountMatchPattern(XPathContext support, int contextNode)
723 DTM dtm = support.getDTM(contextNode);
726 switch (dtm.getNodeType(contextNode))
731 if (dtm.getNamespaceURI(contextNode) == null) {
732 resolver = new MyPrefixResolver(dtm.getNode(contextNode), dtm,contextNode, false);
734 resolver = new MyPrefixResolver(dtm.getNode(contextNode), dtm,contextNode, true);
737 countMatchPattern = new XPath(dtm.getNodeName(contextNode), this, resolver
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFEImage.cpp 122 SVGElement* contextNode = toSVGElement(renderer->node());
123 if (contextNode->hasRelativeLengths()) {
124 SVGLengthContext lengthContext(contextNode);
  /prebuilts/tools/common/m2/internal/jaxen/jaxen/1.1.1/
jaxen-1.1.1.jar 
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathExpressionImpl.java 121 Node contextNode = (Node)contextItem;
122 // We always need to have a ContextNode with Xalan XPath implementation
125 if ( contextNode == null ) {
126 contextNode = getDummyDocument();
129 xobj = xpath.execute(xpathSupport, contextNode, prefixResolver );
  /external/chromium_org/third_party/libxslt/libxslt/
templates.h 30 xmlNodePtr contextNode,
transform.c 96 xmlNodePtr contextNode, xmlNodePtr list,
101 xmlNodePtr contextNode,
    [all...]
attributes.c 641 xmlNodePtr contextNode,
659 if ((ctxt == NULL) || (contextNode == NULL) || (inst == NULL))
734 xslHandleDebugger(inst, contextNode, NULL, ctxt);
992 value = xsltEvalTemplateString(ctxt, contextNode, inst);
  /external/libxslt/libxslt/
templates.h 30 xmlNodePtr contextNode,
transform.c 96 xmlNodePtr contextNode, xmlNodePtr list,
101 xmlNodePtr contextNode,
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 

Completed in 978 milliseconds

1 2