HomeSort by relevance Sort by last modified time
    Searched refs:otherValue (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/proguard/src/proguard/evaluation/
Variables.java 125 Value otherValue = other.values[index];
133 otherValue != null &&
134 thisValue.computationalType() == otherValue.computationalType())
136 Value newValue = thisValue.generalize(otherValue);
296 Value otherValue = other.values[index];
304 otherValue != null &&
305 thisValue.computationalType() == otherValue.computationalType() &&
306 !thisValue.equals(otherValue))
Stack.java 139 Value otherValue = other.values[index];
141 if (otherValue != null)
143 newValue = thisValue.generalize(otherValue);
517 Value otherValue = other.values[index];
518 if (thisValue == null ? otherValue != null :
519 !thisValue.equals(otherValue))
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationMember.java 222 public boolean equalArrayValue(Object otherValue) {
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...]
AnnotationFactory.java 213 Object otherValue = el.definingMethod.invoke(obj);
214 if (otherValue != null) {
216 if (!el.equalArrayValue(otherValue)) {
220 if (!el.value.equals(otherValue)) {
  /external/proguard/src/proguard/classfile/editor/
ComparableConstant.java 129 int otherValue = ((IntegerConstant)otherConstant).getValue();
130 result = value < otherValue ? -1 :
131 value == otherValue ? 0 :
138 long otherValue = ((LongConstant)otherConstant).getValue();
139 result = value < otherValue ? -1 :
140 value == otherValue ? 0 :
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationImpl.java 257 Object otherValue = null;
263 otherValue = methods[i].invoke(obj, (Object[])null);
272 if (value == null && otherValue != null)
274 if (value != null && value.equals(otherValue) == false)
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
Value.java 230 Value otherValue = (Value) other;
232 return exists() == otherValue.exists()
233 && (asString().equals(otherValue.asString()) || (isEmpty() && otherValue.isEmpty()));
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
FieldSet.java 524 Object otherValue = entry.getValue();
525 if (otherValue instanceof LazyField) {
526 otherValue = ((LazyField) otherValue).getValue();
534 for (Object element : (List) otherValue) {
541 fields.put(descriptor, cloneIfMutable(otherValue));
545 ((MessageLite) value).toBuilder(), (MessageLite) otherValue)
551 fields.put(descriptor, cloneIfMutable(otherValue));
  /packages/services/Car/car-lib/src/android/car/diagnostic/
CarDiagnosticEvent.java 334 int otherValue = otherEvent.intValues.valueAt(i);
335 if (value != otherValue) {
346 float otherValue = otherEvent.floatValues.valueAt(i);
347 if (value != otherValue) {
    [all...]
  /frameworks/base/core/tests/coretests/src/android/provider/
SettingsProviderTest.java 302 int otherValue = Settings.Secure.getIntForUser(r, TEST_KEY, 0, user.id);
309 + ", expected to read " + OTHER_VALUE + " but got " + otherValue,
310 otherValue == OTHER_VALUE);
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.0.CR3/
netty-common-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.3.Final/
netty-common-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.6.Final/
netty-common-4.1.6.Final.jar 
  /prebuilts/gradle-plugin/net/sf/proguard/proguard-base/5.3.3/
proguard-base-5.3.3.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.1/
proguard-base-5.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/
proguard-base-5.2.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.1/
proguard-base-5.3.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.2/
proguard-base-5.3.2.jar 
  /prebuilts/tools/common/offline-m2/net/sf/proguard/proguard-base/5.2.1/
proguard-base-5.2.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-lite/3.0.1/
protobuf-lite-3.0.1.jar 
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 

Completed in 911 milliseconds

1 2 3 4 5