Home | History | Annotate | Download | only in templates

Lines Matching refs:XPath

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)
212 public XPath getFrom()
277 private XPath m_valueExpr = null;
287 public void setValue(XPath v)
300 public XPath getValue()
599 * @param xctxt The XPath runtime state for this.
611 XPathContext xctxt, XPath fromMatchPattern, XPath countMatchPattern,
621 != XPath.MATCH_SCORE_NONE)
632 != XPath.MATCH_SCORE_NONE)
648 * @param xctxt The XPath runtime state for this.
661 XPathContext xctxt, XPath fromMatchPattern, XPath countMatchPattern,
671 != XPath.MATCH_SCORE_NONE)
682 != XPath.MATCH_SCORE_NONE)
711 * @param support The XPath runtime state for this.
718 XPath getCountMatchPattern(XPathContext support, int contextNode)
722 XPath countMatchPattern = m_countMatchPattern;
737 countMatchPattern = new XPath(dtm.getNodeName(contextNode), this, resolver,
738 XPath.MATCH, support.getErrorListener());
744 countMatchPattern = new XPath("@" + dtm.getNodeName(contextNode), this,
745 this, XPath.MATCH, support.getErrorListener());
751 countMatchPattern = new XPath("text()", this, this, XPath.MATCH, support.getErrorListener());
756 countMatchPattern = new XPath("comment()", this, this, XPath.MATCH, support.getErrorListener());
761 countMatchPattern = new XPath("/", this, this, XPath.MATCH, support.getErrorListener());
766 countMatchPattern = new XPath("pi(" + dtm.getNodeName(contextNode)
767 + ")", this, this, XPath.MATCH, support.getErrorListener());
845 * @param xctxt The XPath runtime state for this.
856 XPath countMatchPattern = getCountMatchPattern(xctxt, pos);
861 XPath fromMatchPattern = m_fromMatchPattern;
879 xctxt, next) != XPath.MATCH_SCORE_NONE)))
907 != XPath.MATCH_SCORE_NONE)))
922 != XPath.MATCH_SCORE_NONE)))
935 * @param xctxt The XPath runtime state for this.
947 XPath countMatchPattern = getCountMatchPattern(xctxt, sourceNode);
968 * @param xctxt The XPath runtime state for this.
983 XPath countMatchPattern = getCountMatchPattern(xctxt, node);
990 != XPath.MATCH_SCORE_NONE))
1008 != XPath.MATCH_SCORE_NONE)