Lines Matching refs:value
41 boolean value;
46 public BooleanExpression(long where, boolean value) {
48 this.value = value;
52 * Get the value
55 return new Integer(value ? 1 : 0);
59 * Check if the expression is equal to a value
62 return value == b;
67 * Check if the expression is equal to its default static value
70 return !value;
78 * cvar.vsTrue indicates variables with a known value if
80 * cvars.vsFalse indicates variables with a known value if
84 * already known value to vset. Set the side that corresponds to the
90 if (value) {
104 if (value == whenTrue) {
109 asm.add(where, opc_ldc, new Integer(value ? 1 : 0));
116 out.print(value ? "true" : "false");