HomeSort by relevance Sort by last modified time
    Searched refs:xctxt (Results 76 - 100 of 123) sorted by null

1 2 34 5

  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ChildIterator.java 63 * @param xctxt The XPath runtime context.
66 public int asNode(XPathContext xctxt)
69 int current = xctxt.getCurrentNode();
71 DTM dtm = xctxt.getDTM(current);
MatchPatternIterator.java 287 public short acceptNode(int n, XPathContext xctxt)
292 xctxt.pushCurrentNode(n);
293 xctxt.pushIteratorRoot(m_context);
304 XObject score = m_pattern.execute(xctxt);
325 xctxt.popCurrentNode();
326 xctxt.popIteratorRoot();
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncNamespace.java 39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
47 int context = getArg0AsNode(xctxt);
52 DTM dtm = xctxt.getDTM(context);
FuncExtFunction.java 177 * @param xctxt The current execution context.
182 public XObject execute(XPathContext xctxt)
185 if (xctxt.isSecureProcessing())
199 XObject xobj = arg.execute(xctxt);
207 ExtensionsProvider extProvider = (ExtensionsProvider)xctxt.getOwnerObject();
212 result = XObject.create(val, xctxt);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Variable.java 178 * @param xctxt The XPath runtime context.
185 public XObject execute(XPathContext xctxt)
188 return execute(xctxt, false);
198 * @param xctxt The runtime execution context.
204 public XObject execute(XPathContext xctxt, boolean destructiveOK) throws javax.xml.transform.TransformerException
206 org.apache.xml.utils.PrefixResolver xprefixResolver = xctxt.getNamespaceContext();
210 // XObject result = xctxt.getVariable(m_qname);
214 result = xctxt.getVarStack().getGlobalVariable(xctxt, m_index, destructiveOK);
216 result = xctxt.getVarStack().getLocalVariable(xctxt, m_index, destructiveOK)
    [all...]
UnaryOperation.java 87 * @param xctxt The runtime execution context.
94 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
97 return operate(m_right.execute(xctxt));
Operation.java 99 * @param xctxt The runtime execution context.
105 public XObject execute(XPathContext xctxt)
109 XObject left = m_left.execute(xctxt, true);
110 XObject right = m_right.execute(xctxt, true);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemWithParam.java 195 XPathContext xctxt = transformer.getXPathContext(); local
197 xctxt.pushCurrentNode(sourceNode);
203 var = m_selectPattern.execute(xctxt, sourceNode, this);
217 var = new XRTreeFrag(df, xctxt, this);
222 xctxt.popCurrentNode();
TemplateList.java 423 * @param xctxt The XPath runtime context.
430 public TemplateSubPatternAssociation getHead(XPathContext xctxt,
479 * @param xctxt
492 public ElemTemplate getTemplateFast(XPathContext xctxt,
547 xctxt.pushNamespaceContextNull();
557 xctxt.setNamespaceContext(template);
559 if ((head.m_stepPattern.execute(xctxt, targetNode, dtm, expTypeID) != NodeTest.SCORE_NONE)
563 checkConflicts(head, xctxt, targetNode, mode);
572 xctxt.popNamespaceContext();
583 * @param xctxt
    [all...]
ElemCallTemplate.java 198 XPathContext xctxt = transformer.getXPathContext(); local
199 VariableStack vars = xctxt.getVarStack();
212 int currentNode = xctxt.getCurrentNode();
233 SourceLocator savedLocator = xctxt.getSAXLocator();
237 xctxt.setSAXLocator(m_template);
246 xctxt.setSAXLocator(savedLocator);
AVTPart.java 51 * @param xctxt The XPath context to use to evaluate this AVT.
59 XPathContext xctxt, FastStringBuffer buf, int context,
AVTPartSimple.java 78 * @param xctxt An XPathContext object, providing infomation specific
86 public void evaluate(XPathContext xctxt, FastStringBuffer buf,
AVTPartXPath.java 120 * @param xctxt An XPathContext object, providing infomation specific
131 XPathContext xctxt, FastStringBuffer buf, int context, org.apache.xml.utils.PrefixResolver nsNode)
135 XObject xobj = m_xpath.execute(xctxt, context, nsNode);
ElemPI.java 129 XPathContext xctxt = transformer.getXPathContext(); local
130 int sourceNode = xctxt.getCurrentNode();
132 String piName = m_name_atv == null ? null : m_name_atv.evaluate(xctxt, sourceNode, this);
ElemTemplate.java 382 XPathContext xctxt = transformer.getXPathContext(); local
384 xctxt.pushRTFContext();
400 xctxt.popRTFContext();
ElemCopyOf.java 129 XPathContext xctxt = transformer.getXPathContext(); local
130 int sourceNode = xctxt.getCurrentNode();
131 XObject value = m_selectExpression.execute(xctxt, sourceNode, this);
160 DTM dtm = xctxt.getDTMManager().getDTM(pos);
ElemElement.java 206 XPathContext xctxt = transformer.getXPathContext(); local
207 int sourceNode = xctxt.getCurrentNode();
210 String nodeName = m_name_avt == null ? null : m_name_avt.evaluate(xctxt, sourceNode, this);
231 nodeNamespace = m_namespace_avt.evaluate(xctxt, sourceNode, this);
ElemNumber.java 599 * @param xctxt The XPath runtime state for this.
611 XPathContext xctxt, XPath fromMatchPattern, XPath countMatchPattern,
615 DTM dtm = xctxt.getDTM(context);
620 if (fromMatchPattern.getMatchScore(xctxt, context)
631 if (countMatchPattern.getMatchScore(xctxt, context)
648 * @param xctxt The XPath runtime state for this.
661 XPathContext xctxt, XPath fromMatchPattern, XPath countMatchPattern,
665 DTM dtm = xctxt.getDTM(context);
670 if (fromMatchPattern.getMatchScore(xctxt, context)
681 if (countMatchPattern.getMatchScore(xctxt, context
792 XPathContext xctxt = transformer.getXPathContext(); local
1041 XPathContext xctxt = transformer.getXPathContext(); local
    [all...]
TemplateSubPatternAssociation.java 144 * @param xctxt XPath context to use with this template
151 public boolean matches(XPathContext xctxt, int targetNode, QName mode)
155 double score = m_stepPattern.getMatchScore(xctxt, targetNode);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyManager.java 47 * @param xctxt The XPath runtime state
58 XPathContext xctxt, int doc, QName name, XMLString ref, PrefixResolver nscontext)
101 xctxt);
KeyIterator.java 104 org.apache.xpath.XPathContext xctxt = ki.getXPathContext(); local
124 // xctxt.setNamespaceContext(ki.getPrefixResolver());
129 double score = matchExpr.getMatchScore(xctxt, testNode);
  /external/apache-xml/src/main/java/org/apache/xpath/
SourceTreeManager.java 238 String base, String urlString, SourceLocator locator, XPathContext xctxt)
248 return getSourceTree(source, locator, xctxt);
272 public int getSourceTree(Source source, SourceLocator locator, XPathContext xctxt)
281 n = parseToNode(source, locator, xctxt);
300 public int parseToNode(Source source, SourceLocator locator, XPathContext xctxt)
306 Object xowner = xctxt.getOwnerObject();
310 dtm = xctxt.getDTM(source, false,
315 dtm = xctxt.getDTM(source, false, null, false, true);
NodeSetDTM.java 140 public NodeSetDTM(NodeIterator iterator, XPathContext xctxt)
146 m_manager = xctxt.getDTMManager();
150 int handle = xctxt.getDTMHandleFromNode(node);
151 addNodeInDocOrder(handle, xctxt);
160 public NodeSetDTM(NodeList nodeList, XPathContext xctxt)
165 m_manager = xctxt.getDTMManager();
171 int handle = xctxt.getDTMHandleFromNode(node);
173 addNode(handle); // addNodeInDocOrder(handle, xctxt);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPVariableStack.java 49 public XObject getVariableOrParam(XPathContext xctxt, QName qname)
70 return XObject.create( varValue, xctxt );
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XRTreeFragSelectWrapper.java 59 * @param xctxt The XPath execution context.
65 public XObject execute(XPathContext xctxt)
69 m_selected = ((Expression)m_obj).execute(xctxt);

Completed in 1002 milliseconds

1 2 34 5