예제 #1
0
        //public int position;

        public FilterExpr(Expr l, Predicate pr)
        {
            e = l;
            p = pr;
            //stackSize = 0;
            //position = 1;
            //fib = new FastIntBuffer(8);
            first_time = true;
        }
예제 #2
0
 //public int position;
 public FilterExpr(Expr l, Predicate pr)
 {
     e = l;
     p = pr;
     //stackSize = 0;
     //position = 1;
     //fib = new FastIntBuffer(8);
     first_time = true;
     out_of_range = false;
     pr.fe = this;
 }
예제 #3
0
        //public int position;

        public FilterExpr(Expr l, Predicate pr)
        {
            e = l;
            p = pr;
            //stackSize = 0;
            //position = 1;
            //fib = new FastIntBuffer(8);
            first_time     = true;
            out_of_range   = false;
            pr.fe          = this;
            needReordering = l.needReordering;
        }
예제 #4
0
		//public int position;
		
		public FilterExpr(Expr l, Predicate pr)
		{
			e = l;
			p = pr;
			//stackSize = 0;
			//position = 1;
			//fib = new FastIntBuffer(8);
			first_time = true;
		}