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

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

Completed in 52 milliseconds