/external/proguard/src/proguard/evaluation/ |
D | Variables.java | 125 Value otherValue = other.values[index]; in generalize() local 133 otherValue != null && in generalize() 134 thisValue.computationalType() == otherValue.computationalType()) in generalize() 136 Value newValue = thisValue.generalize(otherValue); in generalize() 296 Value otherValue = other.values[index]; in equals() local 304 otherValue != null && in equals() 305 thisValue.computationalType() == otherValue.computationalType() && in equals() 306 !thisValue.equals(otherValue)) in equals()
|
D | Stack.java | 139 Value otherValue = other.values[index]; in generalize() local 141 if (otherValue != null) in generalize() 143 newValue = thisValue.generalize(otherValue); in generalize() 517 Value otherValue = other.values[index]; in equals() local 518 if (thisValue == null ? otherValue != null : in equals() 519 !thisValue.equals(otherValue)) in equals()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | ValuePathStatus.java | 38 static int countZeros(String otherValue) { in countZeros() argument 40 for (int i = 0; i < otherValue.length(); ++i) { in countZeros() 41 if (otherValue.charAt(i) == '0') { in countZeros() 75 String otherValue = sourceFile.getWinningValue(otherPath); in isMissingOk() local 76 if (otherValue == null) { in isMissingOk() 79 int digits = countZeros(otherValue); in isMissingOk()
|
D | CLDRFile.java | 869 String otherValue = other.getStringValue(key); in putAll() local 872 dataSource.putValueAtPath(other.getFullXPath(key), otherValue); in putAll() local 873 } else if (!(myValue.equals(otherValue) in putAll() 884 dataSource.putValueAtPath(fullPath, otherValue); in putAll() 1049 String otherValue = other.dataSource.getValueAtPath(otherXpath); in removeDuplicates() local 1050 if (!currentValue.equals(otherValue)) { in removeDuplicates() 1057 otherValue = other.dataSource.getValueAtPath(otherXpath); in removeDuplicates() 1058 if (!currentValue.equals(otherValue)) { in removeDuplicates() 3042 String otherValue = a.get(key); 3043 if (otherValue == null) { [all …]
|
D | XPathParts.java | 387 String otherValue = elements.get(i).getAttributeValue(attribute); in containsAttributeValue() local 388 if (otherValue != null && value.equals(otherValue)) return true; in containsAttributeValue()
|
/external/proguard/src/proguard/classfile/editor/ |
D | ComparableConstant.java | 129 int otherValue = ((IntegerConstant)otherConstant).getValue(); in visitIntegerConstant() local 130 result = value < otherValue ? -1 : in visitIntegerConstant() 131 value == otherValue ? 0 : in visitIntegerConstant() 138 long otherValue = ((LongConstant)otherConstant).getValue(); 139 result = value < otherValue ? -1 : 140 value == otherValue ? 0 :
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckChildren.java | 38 String otherValue; in handleCheck() local 40 otherValue = immediateChildren[i].getWinningValue(path); in handleCheck() 44 if (!otherValue.equals(CldrUtility.NO_INHERITANCE_MARKER)) { in handleCheck() 45 tempSet.put(immediateChildren[i].getLocaleID(), otherValue); in handleCheck()
|
D | CheckAlt.java | 34 String otherValue = getCldrFileToCheck().getStringValue(strippedPath); in handleCheck() local 35 if (otherValue != null) { in handleCheck()
|
D | CheckDisplayCollisions.java | 642 String otherValue = file.getWinningValue(pathName); in getPathsWithValue() local 643 if (!otherValue.equals(value)) { in getPathsWithValue() 647 … String otherValue = SimpleXMLSource.normalizeCaseSensitive(file.getWinningValue(pathName)); in getPathsWithValue() local 648 if (!otherValue.equals(normValue)) { in getPathsWithValue()
|
/external/jsilver/src/com/google/clearsilver/jsilver/values/ |
D | Value.java | 230 Value otherValue = (Value) other; in equals() local 232 return exists() == otherValue.exists() in equals() 233 && (asString().equals(otherValue.asString()) || (isEmpty() && otherValue.isEmpty())); in equals()
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
D | AnnotationImpl.java | 261 Object otherValue = null; in checkEquals() local 267 otherValue = methods[i].invoke(obj); in checkEquals() 276 if (value == null && otherValue != null) in checkEquals() 278 if (value != null && value.equals(otherValue) == false) in checkEquals()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/node/ |
D | DoubleNode.java | 114 final double otherValue = ((DoubleNode) o)._value; in equals() local 115 return Double.compare(_value, otherValue) == 0; in equals()
|
D | FloatNode.java | 115 final float otherValue = ((FloatNode) o)._value; in equals() local 116 return Float.compare(_value, otherValue) == 0; in equals()
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | FieldSet.java | 511 Object otherValue = entry.getValue(); in mergeFromField() local 512 if (otherValue instanceof LazyField) { in mergeFromField() 513 otherValue = ((LazyField) otherValue).getValue(); in mergeFromField() 521 for (Object element : (List) otherValue) { in mergeFromField() 528 fields.put(descriptor, cloneIfMutable(otherValue)); in mergeFromField() 533 .internalMergeFrom(((MessageLite) value).toBuilder(), (MessageLite) otherValue) in mergeFromField() 539 fields.put(descriptor, cloneIfMutable(otherValue)); in mergeFromField()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/ |
D | Combine.kt | 132 … val otherValue = second.receiveOrNull() ?: throw AbortFlowException(this@unsafeFlow) in zipImpl() constant 133 emit(transform(value, NULL.unbox(otherValue))) in zipImpl()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/upstream/cache/ |
D | DefaultContentMetadata.java | 133 @Nullable byte[] otherValue = second.get(entry.getKey()); in isMetadataEqual() 134 if (!Arrays.equals(value, otherValue)) { in isMetadataEqual()
|
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/ |
D | MutableAggregation.java | 509 MutableLastValueDouble otherValue = (MutableLastValueDouble) other; in combine() local 512 this.lastValue = otherValue.initialized ? otherValue.getLastValue() : this.lastValue; in combine()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | ExtractMessages.java | 117 Set<String> otherValue = dataHandler.id_to_value.getAll(id); in main() local 118 if (otherValue == null || otherValue.size() == 0) continue; in main() 121 for (String oValue : otherValue) { in main()
|
D | GenerateBirth.java | 317 String otherValue = "n/a"; in writeBirth() local 341 otherValue = fixNull(otherInfo.get1()); in writeBirth() 353 + "\t" + otherValue in writeBirth()
|
/external/auto/value/src/test/java/com/google/auto/value/extension/memoized/ |
D | MemoizedTest.java | 165 abstract K otherValue(); in otherValue() method in MemoizedTest.ListValue 249 assertThat(listValue.otherValue()).isEqualTo("hello"); in listValueString()
|
/external/guava/android/guava-tests/test/com/google/common/math/ |
D | QuantilesTest.java | 261 double otherValue = 16.0 * 5.0 / Integer.MAX_VALUE + 25.0 * (1.0 - 5.0 / Integer.MAX_VALUE); in testScale_indexes_largeVarargs_compute_doubleCollection() local 266 0, SIXTEEN_SQUARES_MIN, scale, SIXTEEN_SQUARES_MAX, otherIndex, otherValue); in testScale_indexes_largeVarargs_compute_doubleCollection()
|
/external/guava/guava-tests/test/com/google/common/math/ |
D | QuantilesTest.java | 261 double otherValue = 16.0 * 5.0 / Integer.MAX_VALUE + 25.0 * (1.0 - 5.0 / Integer.MAX_VALUE); in testScale_indexes_largeVarargs_compute_doubleCollection() local 266 0, SIXTEEN_SQUARES_MIN, scale, SIXTEEN_SQUARES_MAX, otherIndex, otherValue); in testScale_indexes_largeVarargs_compute_doubleCollection()
|
/external/protobuf/objectivec/ |
D | GPBMessage.m | 2575 id otherValue = [other->extensionMap_ objectForKey:extension]; 2587 for (GPBMessage *otherListValue in otherValue) { 2593 [list addObjectsFromArray:otherValue]; 2598 [(GPBMessage *)value mergeFrom:(GPBMessage *)otherValue]; 2600 GPBMessage *copiedValue = [otherValue copy]; 2605 [extensionMap_ setObject:otherValue forKey:extension]; 2677 BOOL otherValue = GPBGetHasIvar(other, (int32_t)(fieldOffset), 0); 2678 if (selfValue != otherValue) {
|