Lines Matching defs:value

232                 values[index] = vs.value;
238 * Returns the future for the return value
263 // without an associated value (reference). So this is not working for
283 mRS.nClosureSetArg(getID(mRS), index, vs.value, vs.size);
292 mRS.nClosureSetGlobal(getID(mRS), fieldID.getID(mRS), vs.value, vs.size);
298 value = ((Allocation)obj).getID(rs);
301 value = ((Boolean)obj).booleanValue() ? 1 : 0;
304 value = ((Integer)obj).longValue();
307 value = ((Long)obj).longValue();
310 value = ((Float)obj).longValue();
313 value = ((Double)obj).longValue();
317 public long value;
325 * A future represents an output of a closure, either the return value of
326 * the function, or the value of a global variable written by the function.
336 Future(Closure closure, Script.FieldID fieldID, Object value) {
339 mValue = value;
350 * Created by calling the {@link Builder2#addInput} method. The value
377 void set(Object value) {
378 mValue = value;
382 closure.setArg(index, value);
387 closure.setGlobal(fieldID, value);
447 " is a future or unbound value");
497 * @deprecated Use return value of {@link #execute(Object...)} instead.
968 * Represents a binding of a value to a global variable in a
977 * Returns a Binding object that binds value to field
980 * @param value the value
983 public Binding(Script.FieldID field, Object value) {
985 mValue = value;
995 * Returns the value
1007 * the function is bound to 1) a known value, 2) a script group input
1010 * A future is the output of a closure, either the return value of the
1056 * @param returnType Allocation type for the return value
1088 * @return a script group input, which can be used as an argument or a value to