Lines Matching defs:countMatchPattern

601    * @param countMatchPattern The ancestor must also match this pattern.
611 XPathContext xctxt, XPath fromMatchPattern, XPath countMatchPattern,
629 if (null != countMatchPattern)
631 if (countMatchPattern.getMatchScore(xctxt, context)
650 * @param countMatchPattern The ancestor must also match this pattern.
661 XPathContext xctxt, XPath fromMatchPattern, XPath countMatchPattern,
679 if (null != countMatchPattern)
681 if (countMatchPattern.getMatchScore(xctxt, context)
722 XPath countMatchPattern = m_countMatchPattern;
724 if (null == countMatchPattern)
737 countMatchPattern = new XPath(dtm.getNodeName(contextNode), this, resolver,
743 // countMatchPattern = m_stylesheet.createMatchPattern("@"+contextNode.getNodeName(), this);
744 countMatchPattern = new XPath("@" + dtm.getNodeName(contextNode), this,
750 // countMatchPattern = m_stylesheet.createMatchPattern("text()", this);
751 countMatchPattern = new XPath("text()", this, this, XPath.MATCH, support.getErrorListener());
755 // countMatchPattern = m_stylesheet.createMatchPattern("comment()", this);
756 countMatchPattern = new XPath("comment()", this, this, XPath.MATCH, support.getErrorListener());
760 // countMatchPattern = m_stylesheet.createMatchPattern("/", this);
761 countMatchPattern = new XPath("/", this, this, XPath.MATCH, support.getErrorListener());
765 // countMatchPattern = m_stylesheet.createMatchPattern("pi("+contextNode.getNodeName()+")", this);
766 countMatchPattern = new XPath("pi(" + dtm.getNodeName(contextNode)
770 countMatchPattern = null;
774 return countMatchPattern;
856 XPath countMatchPattern = getCountMatchPattern(xctxt, pos);
905 && ((null == countMatchPattern)
906 || (countMatchPattern.getMatchScore(xctxt, pos)
920 && ((null == countMatchPattern)
921 || (countMatchPattern.getMatchScore(xctxt, pos)
947 XPath countMatchPattern = getCountMatchPattern(xctxt, sourceNode);
952 countMatchPattern, sourceNode,
957 target = findAncestor(xctxt, m_fromMatchPattern, countMatchPattern,
983 XPath countMatchPattern = getCountMatchPattern(xctxt, node);
1003 if (null == countMatchPattern)
1005 "Programmers error! countMatchPattern should never be null!");
1007 if (countMatchPattern.getMatchScore(xctxt, node)