Home | History | Annotate | Download | only in benchmarks

Lines Matching refs:Variable

149  * a strength instance variable; concrete subclasses provide a means
210 * variable.
250 * Returns the current output variable.
308 * A unary input constraint used to mark a variable that the client
318 * Edits indicate that a variable is to be changed by imperative code.
395 * Mark the input variable with the given mark.
402 * Returns the current input variable
409 * Returns the current output variable
532 * A constrained variable. In addition to its value, it maintain the
537 function Variable(name, initialValue) {
549 * this variable.
551 Variable.prototype.addConstraint = function (c) {
556 * Removes all traces of c from this variable.
558 Variable.prototype.removeConstraint = function (c) {
580 * until either a) it reaches a variable that was not previously
638 * the plan when all its input variables are known. A variable is
639 * known if either a) the variable is marked (indicating that has
641 * the variable is 'stay' (i.e. it is a constant at plan execution
642 * time), or c) the variable is not determined by any
684 * Details: Cycles are detected when a marked variable is
804 var v = new Variable(name);
828 * time is measured to change a variable on either side of the
833 var scale = new Variable("scale", 10);
834 var offset = new Variable("offset", 1000);
839 src = new Variable("src" + i, i);
840 dst = new Variable("dst" + i, i);
874 // Global variable holding the current planner.