Searched defs:contextNode (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8DocumentCustom.cpp67 RefPtrWillBeRawPtr<Node> contextNode = V8Node::toNativeWithTypeCheck(info.GetIsolate(), info[1]); local
79 TONATIVE_VOID(RefPtrWillBeRawPtr<XPathResult>, result, DocumentXPathEvaluator::evaluate(*document, expression, contextNode.get(), resolver.release(), type, inResult.get(), exceptionState));
/external/apache-xml/src/main/java/org/apache/xpath/
H A DCachedXPathAPI.java115 * @param contextNode The node to start searching from.
121 public Node selectSingleNode(Node contextNode, String str) argument
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, Strin argument
138 selectSingleNode( Node contextNode, String str, Node namespaceNode) argument
177 selectNodeIterator( Node contextNode, String str, Node namespaceNode) argument
199 selectNodeList(Node contextNode, String str) argument
216 selectNodeList( Node contextNode, String str, Node namespaceNode) argument
243 eval(Node contextNode, String str) argument
269 eval(Node contextNode, String str, Node namespaceNode) argument
318 eval( Node contextNode, String str, PrefixResolver prefixResolver) argument
[all...]
H A DXPathAPI.java60 * @param contextNode The node to start searching from.
66 public static Node selectSingleNode(Node contextNode, String str) argument
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, Strin argument
83 selectSingleNode( Node contextNode, String str, Node namespaceNode) argument
122 selectNodeIterator( Node contextNode, String str, Node namespaceNode) argument
144 selectNodeList(Node contextNode, String str) argument
161 selectNodeList( Node contextNode, String str, Node namespaceNode) argument
188 eval(Node contextNode, String str) argument
214 eval(Node contextNode, String str, Node namespaceNode) argument
266 eval( Node contextNode, String str, PrefixResolver prefixResolver) argument
[all...]
H A DExpression.java234 * @param contextNode The node that "." expresses.
244 public DTMIterator asIterator(XPathContext xctxt, int contextNode) argument
250 xctxt.pushCurrentNodeAndExpression(contextNode, contextNode);
265 * @param contextNode The node that "." expresses.
275 public DTMIterator asIteratorRaw(XPathContext xctxt, int contextNode) argument
281 xctxt.pushCurrentNodeAndExpression(contextNode, contextNode);
H A DXPath.java287 * @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, contextNod
298 execute( XPathContext xctxt, org.w3c.dom.Node contextNode, PrefixResolver namespaceContext) argument
324 execute( XPathContext xctxt, int contextNode, PrefixResolver namespaceContext) argument
401 bool( XPathContext xctxt, int contextNode, PrefixResolver namespaceContext) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathEvaluator.cpp52 PassRefPtrWillBeRawPtr<XPathResult> XPathEvaluator::evaluate(const String& expression, Node* contextNode, argument
55 if (!contextNode) {
60 if (!isValidContextNode(contextNode)) {
61 exceptionState.throwDOMException(NotSupportedError, "The node provided is '" + contextNode->nodeName() + "', which is not a valid context node type.");
69 return expr->evaluate(contextNode, type, result, exceptionState);
H A DDocumentXPathEvaluator.cpp68 Node* contextNode, PassRefPtrWillBeRawPtr<XPathNSResolver> resolver, unsigned short type,
74 return suplement.m_xpathEvaluator->evaluate(expression, contextNode, resolver, type, result, exceptionState);
67 evaluate(DocumentSupplementable& document, const String& expression, Node* contextNode, PassRefPtrWillBeRawPtr<XPathNSResolver> resolver, unsigned short type, XPathResult* result, ExceptionState& exceptionState) argument
H A DXPathExpression.cpp69 PassRefPtrWillBeRawPtr<XPathResult> XPathExpression::evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionState& exceptionState) argument
71 if (!contextNode) {
76 if (!isValidContextNode(contextNode)) {
77 exceptionState.throwDOMException(NotSupportedError, "The node provided is '" + contextNode->nodeName() + "', which is not a valid context node type.");
82 evaluationContext.node = contextNode;
86 RefPtrWillBeRawPtr<XPathResult> result = XPathResult::create(&contextNode->document(), m_topExpression->evaluate());
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFEImage.cpp89 SVGElement* contextNode = toSVGElement(renderer->node()); local
91 if (contextNode->hasRelativeLengths()) {
93 SVGLengthContext lengthContext(contextNode);
149 SVGElement* contextNode = toSVGElement(renderer->node()); local
150 if (contextNode->hasRelativeLengths()) {
152 SVGLengthContext lengthContext(contextNode);
188 SVGElement* contextNode = toSVGElement(renderer->node()); local
190 if (contextNode->hasRelativeLengths()) {
191 SVGLengthContext lengthContext(contextNode);
/external/chromium_org/third_party/libxslt/libxslt/
H A Dtemplates.c184 * @contextNode: the current node in the source tree
188 * @contextNode and converts the resulting tree to a string.
196 xmlNodePtr contextNode,
202 if ((ctxt == NULL) || (contextNode == NULL) || (inst == NULL))
217 xsltTransformError(ctxt, NULL, contextNode,
226 xsltApplyOneTemplate(ctxt, contextNode, inst->children, NULL, NULL);
195 xsltEvalTemplateString(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, xmlNodePtr inst) argument
H A Dattributes.c641 xmlNodePtr contextNode,
659 if ((ctxt == NULL) || (contextNode == NULL) || (inst == NULL))
734 xslHandleDebugger(inst, contextNode, NULL, ctxt);
992 value = xsltEvalTemplateString(ctxt, contextNode, inst);
640 xsltAttributeInternal(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, xmlNodePtr inst, xsltStylePreCompPtr castedComp, int fromAttributeSet) argument
H A Dpattern.c2192 xsltComputeAllKeys(xsltTransformContextPtr ctxt, xmlNodePtr contextNode) argument
2194 if ((ctxt == NULL) || (contextNode == NULL)) {
2205 if (contextNode->doc->_private != NULL)
2210 ctxt->document = xsltNewDocument(ctxt, contextNode->doc);
H A Dtransform.c96 xmlNodePtr contextNode, xmlNodePtr list,
101 xmlNodePtr contextNode,
1971 * @contextNode: the "current node" in the source tree
1978 xsltProcessOneNode(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, argument
1984 templ = xsltGetTemplate(ctxt, contextNode, NULL);
1990 if (contextNode->type == XML_DOCUMENT_NODE) {
1993 } else if (contextNode->type == XML_CDATA_SECTION_NODE) {
1996 } else if (contextNode->type == XML_ATTRIBUTE_NODE) {
1999 ((xmlAttrPtr) contextNode)->name));
2002 "xsltProcessOneNode: no template found for %s\n", contextNode
2052 xsltDebuggerStartSequenceConstructor(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, xmlNodePtr list, xsltTemplatePtr templ, int *addCallResult) argument
2184 xsltApplySequenceConstructor(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, xmlNodePtr list, xsltTemplatePtr templ) argument
2892 xsltApplyXSLTTemplate(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, xmlNodePtr list, xsltTemplatePtr templ, xsltStackElemPtr withParams) argument
3160 xsltApplyOneTemplate(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, xmlNodePtr list, xsltTemplatePtr templ ATTRIBUTE_UNUSED, xsltStackElemPtr params) argument
4507 xsltApplyImports(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, xmlNodePtr inst, xsltStylePreCompPtr comp ATTRIBUTE_UNUSED) argument
5070 xsltChoose(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, xmlNodePtr inst, xsltStylePreCompPtr comp ATTRIBUTE_UNUSED) argument
5266 xsltIf(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, xmlNodePtr inst, xsltStylePreCompPtr castedComp) argument
5449 xsltForEach(xsltTransformContextPtr ctxt, xmlNodePtr contextNode, xmlNodePtr inst, xsltStylePreCompPtr castedComp) argument
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemNumber.java712 * @param contextNode The node that "." expresses.
718 XPath getCountMatchPattern(XPathContext support, int contextNode) argument
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), thi
1033 getLocale(TransformerImpl transformer, int contextNode) argument
1081 getNumberFormatter( TransformerImpl transformer, int contextNode) argument
1157 formatNumberList( TransformerImpl transformer, long[] list, int contextNode) argument
1314 getFormattedNumber( TransformerImpl transformer, int contextNode, char numberType, int numberWidth, long listElement, FastStringBuffer formattedNumber) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DLocPathIterator.java256 * @param contextNode The node that "." expresses.
264 XPathContext xctxt, int contextNode)
269 iter.setRoot(contextNode, xctxt);
263 asIterator( XPathContext xctxt, int contextNode) argument
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerImpl.java1635 * @param contextNode The root of the source tree, can't be null.
1639 protected void pushGlobalVars(int contextNode) throws TransformerException argument
1654 // XObject xobj = v.getValue(this, contextNode);
1655 XObject xobj = new XUnresolvedVariable(v, contextNode, this,
/external/chromium_org/third_party/libxml/src/
H A Dxpath.c7502 * The context node of the traversal is specified via @contextNode.
7505 (xmlNodePtr cur, xmlNodePtr contextNode);
7673 xmlNodePtr contextNode)
7676 if (contextNode == NULL)
7678 switch (contextNode->type) {
7687 return(contextNode);
7722 if ((cur == NULL) || (cur == contextNode))
11535 xmlNodePtr contextNode, oldContextNode; local
11582 contextNode = set->nodeTab[i];
11583 xpctxt->node = contextNode;
7672 xmlXPathNextDescendantOrSelfElemParent(xmlNodePtr cur, xmlNodePtr contextNode) argument
11702 xmlNodePtr oldContextNode, contextNode = NULL; local
11952 xmlNodePtr contextNode; local
[all...]
/external/libxml2/
H A Dxpath.c7617 * The context node of the traversal is specified via @contextNode.
7620 (xmlNodePtr cur, xmlNodePtr contextNode);
7789 xmlNodePtr contextNode)
7792 if (contextNode == NULL)
7794 switch (contextNode->type) {
7803 return(contextNode);
7838 if ((cur == NULL) || (cur == contextNode))
11682 xmlNodePtr contextNode, oldContextNode; local
11729 contextNode = set->nodeTab[i];
11730 xpctxt->node = contextNode;
11853 xmlNodePtr oldContextNode, contextNode = NULL; local
12115 xmlNodePtr contextNode; local
[all...]
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1488 milliseconds