• Home
  • Raw
  • Download

Lines Matching refs:values

36     private int[] values;  field in InstructionOffsetValue
46 this.values = new int[] { value }; in InstructionOffsetValue()
50 public InstructionOffsetValue(int[] values) in InstructionOffsetValue() argument
52 this.values = values; in InstructionOffsetValue()
58 return values == null ? 0 : values.length; in instructionOffsetCount()
64 return values[index]; in instructionOffset()
74 if (values != null) in contains()
76 for (int index = 0; index < values.length; index++) in contains()
78 if (values[index] == value) in contains()
97 if (values != null) in minimumValue()
99 for (int index = 0; index < values.length; index++) in minimumValue()
101 int value = values[index]; in minimumValue()
122 if (values != null) in maximumValue()
124 for (int index = 0; index < values.length; index++) in maximumValue()
126 int value = values[index]; in maximumValue()
147 if (this.values == null) in generalize()
152 if (other.values == null) in generalize()
158 int newLength = this.values.length; in generalize()
159 for (int index = 0; index < other.values.length; index++) in generalize()
161 if (!this.contains(other.values[index])) in generalize()
169 if (newLength == other.values.length) in generalize()
187 for (int index = 0; index < this.values.length; index++) in generalize()
189 if (!other.contains(this.values[index])) in generalize()
191 newValues[newIndex++] = this.values[index]; in generalize()
196 for (int index = 0; index < other.values.length; index++) in generalize()
198 newValues[newIndex++] = other.values[index]; in generalize()
249 if (this.values == other.values) in equals()
254 if (this.values == null || in equals()
255 other.values == null || in equals()
256 this.values.length != other.values.length) in equals()
261 for (int index = 0; index < other.values.length; index++) in equals()
263 if (!this.contains(other.values[index])) in equals()
277 if (values != null) in hashCode()
279 for (int index = 0; index < values.length; index++) in hashCode()
281 hashCode ^= values[index]; in hashCode()
293 if (values != null) in toString()
295 for (int index = 0; index < values.length; index++) in toString()
301 buffer.append(values[index]); in toString()