Lines Matching refs:context

236    * @return true if traversal outside the context node's subtree can occur.
319 * @param xctxt XPath runtime context.
320 * @param currentNode The current node context.
350 * @param xctxt XPath runtime context.
367 * Execute an expression in the XPath runtime context, and return the
371 * @param xctxt The XPath runtime context.
419 * @param xctxt The XPath runtime context.
422 * @param context The currentNode.
426 * @return true of the position of the context matches pos, false otherwise.
429 int predPos, DTM dtm, int context, int pos)
437 for (int child = traverser.first(context); DTM.NULL != child;
438 child = traverser.next(context, child))
516 * @param xctxt XPath runtime context.
518 * @param findLast If true, don't terminate when the context node is found.
528 int context = xctxt.getCurrentNode();
529 DTM dtm = xctxt.getDTM(context);
530 int parent = dtm.getParent(context);
595 if (!findLast && child == context)
622 * @param xctxt XPath runtime context.
634 * position of the last node that can pass this test in the sub context
639 * @param xctxt XPath runtime context.
652 * @param xctxt The XPath runtime context.
654 * @param currentNode The current node context.
670 int context = currentNode;
675 for (int relative = traverser.first(context); DTM.NULL != relative;
676 relative = traverser.next(context, relative))
700 * @param xctxt The XPath runtime context.
702 * @param currentNode The current node context.
881 * @param xctxt The XPath runtime context.
882 * @param context The node to be tested.
892 public double getMatchScore(XPathContext xctxt, int context)
896 xctxt.pushCurrentNode(context);
897 xctxt.pushCurrentExpressionNode(context);