Home | History | Annotate | Download | only in v8-v5

Lines Matching defs:Variable

143  * a strength instance variable; concrete subclasses provide a means
204 * variable.
244 * Returns the current output variable.
302 * A unary input constraint used to mark a variable that the client
312 * Edits indicate that a variable is to be changed by imperative code.
389 * Mark the input variable with the given mark.
396 * Returns the current input variable
403 * Returns the current output variable
526 * A constrained variable. In addition to its value, it maintain the
531 function Variable(name, initialValue) {
543 * this variable.
545 Variable.prototype.addConstraint = function (c) {
550 * Removes all traces of c from this variable.
552 Variable.prototype.removeConstraint = function (c) {
574 * until either a) it reaches a variable that was not previously
632 * the plan when all its input variables are known. A variable is
633 * known if either a) the variable is marked (indicating that has
635 * the variable is 'stay' (i.e. it is a constant at plan execution
636 * time), or c) the variable is not determined by any
678 * Details: Cycles are detected when a marked variable is
798 var v = new Variable(name);
822 * time is measured to change a variable on either side of the
827 var scale = new Variable("scale", 10);
828 var offset = new Variable("offset", 1000);
833 src = new Variable("src" + i, i);
834 dst = new Variable("dst" + i, i);
868 // Global variable holding the current planner.