Home
last modified time | relevance | path

Searched refs:otherValue (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/java/libcore/reflect/
DAnnotationMember.java222 public boolean equalArrayValue(Object otherValue) { in equalArrayValue() argument
223 if (value instanceof Object[] && otherValue instanceof Object[]) { in equalArrayValue()
224 return Arrays.equals((Object[])value, (Object[])otherValue); in equalArrayValue()
227 if (type != otherValue.getClass()) { in equalArrayValue()
231 return Arrays.equals((int[])value, (int[])otherValue); in equalArrayValue()
233 return Arrays.equals((byte[])value, (byte[])otherValue); in equalArrayValue()
235 return Arrays.equals((short[])value, (short[])otherValue); in equalArrayValue()
237 return Arrays.equals((long[])value, (long[])otherValue); in equalArrayValue()
239 return Arrays.equals((char[])value, (char[])otherValue); in equalArrayValue()
241 return Arrays.equals((boolean[])value, (boolean[])otherValue); in equalArrayValue()
[all …]
DAnnotationFactory.java213 Object otherValue = el.definingMethod.invoke(obj); in equals() local
214 if (otherValue != null) { in equals()
216 if (!el.equalArrayValue(otherValue)) { in equals()
220 if (!el.value.equals(otherValue)) { in equals()