Examples of openStackFrame()


Examples of org.pdf4j.saxon.expr.XPathContextMajor.openStackFrame()

     * expression.
     */

    public XPathDynamicContext createDynamicContext(Item contextItem) {
        XPathContextMajor context = new XPathContextMajor(contextItem, evaluator.getExecutable());
        context.openStackFrame(stackFrameMap);
        return new XPathDynamicContext(context, stackFrameMap);
    }

    // ORBEON
    public XPathDynamicContext createDynamicContext(Item contextItem, int contextPosition) {
View Full Code Here

Examples of org.pdf4j.saxon.expr.XPathContextMajor.openStackFrame()

            return new NextMatchPackage(rule, params, tunnels, context);
        } else {
            Template nh = (Template)rule.getAction();
            XPathContextMajor c2 = context.newContext();
            c2.setOrigin(this);
            c2.openStackFrame(nh.getStackFrameMap());
            c2.setLocalParameters(params);
            c2.setTunnelParameters(tunnels);
            nh.apply(c2, rule);
        }
        return null;
View Full Code Here

Examples of org.pdf4j.saxon.expr.XPathContextMajor.openStackFrame()

            Template nh = (Template)rule.getAction();
            XPathContextMajor c2 = evaluationContext.newContext();
            c2.setOrigin(NextMatch.this);
            c2.setLocalParameters(params);
            c2.setTunnelParameters(tunnelParams);
            c2.openStackFrame(nh.getStackFrameMap());

            // System.err.println("Tail call on template");

            return nh.applyLeavingTail(c2, rule);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.