Examples of pop()


Examples of anvil.codec.Code.pop()

          _expression.compile(context, Expression.GET);
        }
      } else {
        _expression.compile(context, Expression.GET);
      }
      code.pop();
     
    }
   
  }
View Full Code Here

Examples of ariba.ui.aribaweb.util.AWEnvironmentStack.pop()

            AWEnvironmentStack environmentStack = env();
            environmentStack.push(RadioValueKey, RadioDefaultKey);
            super.applyValues(requestContext, component);
            // get the radioSelection from the environment (put there
            // by one of the RadioButtons) and push to the parent
            Object radioSelection = environmentStack.pop(RadioValueKey);
            if (RadioDefaultKey.equals(radioSelection)) {
                radioSelection = null;
            }
            else {
                while (!(RadioDefaultKey.equals(environmentStack.pop(RadioValueKey)))) {
View Full Code Here

Examples of ariba.ui.meta.core.Context.pop()

            // restore context for validation evaluation
            Context context = _contextSnapshot.hydrate();
            context.push();
            context.set(UIMeta.KeyField, fi);
            String errorMessage = UIMeta.validationError(context);
            context.pop();
            if (errorMessage != null) {
                recordValidationError(new AWErrorInfo(_object, fi, null,
                    errorMessage, null, false));
            }
        }
View Full Code Here

Examples of at.newmedialab.ldpath.template.model.freemarker.TemplateStackModel.pop()

                        loopVars[0] = new TemplateNodeModel<Node>(node,backend);
                    }

                    body.render(env.getOut());

                    contextStack.pop();
                }
            } catch(LDPathParseException ex) {
                throw new TemplateException("invalid path for ldpath directive: "+path,ex,env);
            }
View Full Code Here

Examples of cc.redberry.core.utils.IntArrayList.pop()

        Indices indices;

        int currentPivot, index, toTensorIndex;
        while (!stack.isEmpty()) {

            currentPivot = stack.pop();

            indices = pc.get(currentPivot).getIndices();
            contractions = fcs.contractions[currentPivot];
            for (int i = contractions.length - 1; i >= 0; --i) {
                index = indices.get(i);
View Full Code Here

Examples of clojure.asm.commons.GeneratorAdapter.pop()

      clinitgen.checkCast(IFN_TYPE);
      clinitgen.putStatic(objtype, varCallsiteName(i), IFN_TYPE);
      clinitgen.goTo(endLabel);

      clinitgen.mark(skipLabel);
      clinitgen.pop();

      clinitgen.mark(endLabel);
      }

    clinitgen.returnValue();
View Full Code Here

Examples of cn.wensiqun.asmsupport.utils.Stack.pop()

        mv.visitLabel(trueLbl);
        mv.visitInsn(Opcodes.ICONST_1);
        mv.visitLabel(falseLbl);
       
        Stack stack = block.getMethod().getStack();
        stack.pop();
        stack.push(Type.BOOLEAN_TYPE);
        stack.printState();
    }

}
View Full Code Here

Examples of com.android.dx.util.IntList.pop()

        IntList newSubroutines;
        try {
            newSubroutines = subroutines.mutableCopy();

            if (newSubroutines.pop() != startLabel) {
                throw new RuntimeException("returning from invalid subroutine");
            }
            newSubroutines.setImmutable();
        } catch (IndexOutOfBoundsException ex) {
            throw new RuntimeException("returning from invalid subroutine");
View Full Code Here

Examples of com.arjuna.ats.internal.txoj.LockList.pop()

                            /*
                             * scan through old list of held locks and propagate
                             * to parent.
                             */

                            while ((current = oldlist.pop()) != null)
                            {
                                if (current.getCurrentOwner().equals(from))
                                {
                                    current.propagate();
                                }
View Full Code Here

Examples of com.badlogic.gdx.utils.IntArray.pop()

    int upper = count - 1;
    IntArray stack = quicksortStack;
    stack.add(lower);
    stack.add(upper - 1);
    while (stack.size > 0) {
      upper = stack.pop();
      lower = stack.pop();
      if (upper <= lower) continue;
      int i = quicksortPartition(values, lower, upper);
      if (i - lower > upper - i) {
        stack.add(lower);
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.