Home | History | Annotate | Download | only in benchmarks

Lines Matching defs:Direction

332 var Direction = new Object();
333 Direction.NONE = 0;
334 Direction.FORWARD = 1;
335 Direction.BACKWARD = -1;
345 this.direction = Direction.NONE;
358 this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v2.walkStrength))
359 ? Direction.FORWARD
360 : Direction.NONE;
363 this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v1.walkStrength))
364 ? Direction.BACKWARD
365 : Direction.NONE;
368 this.direction = Strength.stronger(this.strength, this.v1.walkStrength)
369 ? Direction.BACKWARD
370 : Direction.NONE;
372 this.direction = Strength.stronger(this.strength, this.v2.walkStrength)
373 ? Direction.FORWARD
374 : Direction.BACKWARD
384 this.direction = Direction.NONE;
391 return this.direction != Direction.NONE;
405 return (this.direction == Direction.FORWARD) ? this.v1 : this.v2;
412 return (this.direction == Direction.FORWARD) ? this.v2 : this.v1;
431 this.direction = Direction.NONE;
442 this.direction = Direction.NONE;
456 this.direction = Direction.NONE;
488 if (this.direction == Direction.FORWARD) {