Examples of popSequence()


Examples of xbird.xquery.meta.DynamicContext.popSequence()

                dynEnv.setFocus(focus); // change focus
                Sequence cond = predicate.eval(it, dynEnv);
                dynEnv.setFocus(baseFocus);

                // workaround for fn:last()
                dynEnv.popSequence();

                if(cond instanceof XInteger) { // positional filtering
                    final long pos = ((XInteger) cond).getValue();
                    if(curidx == pos) {
                        return true;
View Full Code Here

Examples of xbird.xquery.meta.DynamicContext.popSequence()

                    }
                }

                dynEnv.pushSequence(_delegate);
                final boolean ebv = FnBoolean.effectiveBooleanValue(cond, curidx);
                dynEnv.popSequence();
                if(ebv) {
                    return true;
                } else {
                    continue;
                }
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.