Examples of push()


Examples of stp.VC.push()

        Expr a = vc.varExpr("a", bv8);
        Expr ct_0 = vc.bvConstExprFromInt(8, 0);
        Expr a_eq_0 = vc.eqExpr(a, ct_0);

        // /* Query 1 */
        vc.push();

//        vc.printQuery();
        System.out.println("\nChecking:" + a_eq_0);
        int query = vc.query(a_eq_0);
        vc.printQuery();

Examples of test.dbc.stack.Stack.push()

 
   public void testStack()throws Exception
   {
     System.out.println("****************** TEST STACK ******************");
      Stack s = new StackImpl();
      s.push("one");
      s.push("two");
      s.pop();

      s.push("two");
      s.push("three");

Examples of test.dbc.stack.StackImpl.push()

 
   public void testStack()throws Exception
   {
     System.out.println("****************** TEST STACK ******************");
      Stack s = new StackImpl();
      s.push("one");
      s.push("two");
      s.pop();

      s.push("two");
      s.push("three");

Examples of water.cascade.Env.push()

    Frame fr0 = null, fr1 = null;
    double d0=0, d1=0;
    if( env.isAry() ) fr1 = (Frame) env.pop(); else d1 = (double)env.pop()//String k0 = env.key();
    if( env.isAry() ) fr0 = (Frame) env.pop(); else d0 = (double)env.pop()//String k1 = env.key();
    if( fr0==null && fr1==null ) {
      env.push(op(d0, d1));
      return;
    }
    final boolean lf = fr0 != null;
    final boolean rf = fr1 != null;
    final double df0 = d0, df1 = d1;

Examples of webit.script.asm.lib.MethodWriter.push()

                m.visitInsn(Constants.DUP);
            }

            m.visitVarInsn(Constants.ALOAD, 2);

            m.push(isStatic || isConstructor ? paramTypesLen : paramTypesLen + 1);
            m.invokeStatic("webit/script/util/ArrayUtil", "ensureMinSize", "([Ljava/lang/Object;I)[Ljava/lang/Object;");
            m.visitVarInsn(Constants.ASTORE, 2);

            int paramCount = 0;
            if (!isStatic && !isConstructor) {

Examples of xbird.util.collections.IntStack.push()

                    if(lastType == anyPattern) {
                        continue;
                    }
                }
                if(pending.size() > 0) {
                    typeStack.push(MATCH);
                    patternStack.add(pending.toByteArray());
                    pending.reset();
                }
                typeStack.push(ANY);
                patternStack.add(null);

Examples of xbird.util.collections.ints.IntStack.push()

                        continue;
                    }
                }
                if(pending.length() > 0) {
                    String s = pending.toString();
                    typeStack.push(MATCH);
                    patternStack.add(StringUtils.getChars(s));
                    pending.setLength(0);
                }
                typeStack.push(ANY);
                patternStack.add(null);
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.