Lines Matching refs:values

36     private int[] values;
46 this.values = new int[] { value };
50 public InstructionOffsetValue(int[] values)
52 this.values = values;
58 return values == null ? 0 : values.length;
64 return values[index];
74 if (values != null)
76 for (int index = 0; index < values.length; index++)
78 if (values[index] == value)
97 if (values != null)
99 for (int index = 0; index < values.length; index++)
101 int value = values[index];
122 if (values != null)
124 for (int index = 0; index < values.length; index++)
126 int value = values[index];
141 * other InstructionOffsetValue. The values of the other InstructionOffsetValue
146 // If the values array of either is null, return the other one.
147 if (this.values == null)
152 if (other.values == null)
158 int newLength = this.values.length;
159 for (int index = 0; index < other.values.length; index++)
161 if (!this.contains(other.values[index]))
167 // If the length of the union array is equal to the length of the values
169 if (newLength == other.values.length)
176 //if (newLength == this.values.length)
186 // Copy the values that are different from the other array.
187 for (int index = 0; index < this.values.length; index++)
189 if (!other.contains(this.values[index]))
191 newValues[newIndex++] = this.values[index];
195 // Copy the values from the other array.
196 for (int index = 0; index < other.values.length; index++)
198 newValues[newIndex++] = other.values[index];
249 if (this.values == other.values)
254 if (this.values == null ||
255 other.values == null ||
256 this.values.length != other.values.length)
261 for (int index = 0; index < other.values.length; index++)
263 if (!this.contains(other.values[index]))
277 if (values != null)
279 for (int index = 0; index < values.length; index++)
281 hashCode ^= values[index];
293 if (values != null)
295 for (int index = 0; index < values.length; index++)
301 buffer.append(values[index]);