Home
last modified time | relevance | path

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

12

/external/proguard/src/proguard/evaluation/
DVariables.java125 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()
DStack.java139 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/
DValuePathStatus.java37 static int countZeros(String otherValue) { in countZeros() argument
39 for (int i = 0; i < otherValue.length(); ++i) { in countZeros()
40 if (otherValue.charAt(i) == '0') { in countZeros()
74 String otherValue = sourceFile.getWinningValue(otherPath); in isMissingOk() local
75 if (otherValue == null) { in isMissingOk()
78 int digits = countZeros(otherValue); in isMissingOk()
DCLDRFile.java824 String otherValue = other.getStringValue(key); in putAll() local
827 dataSource.putValueAtPath(other.getFullXPath(key), otherValue); in putAll() local
828 } else if (!(myValue.equals(otherValue) in putAll()
836 dataSource.putValueAtPath(fullPath, otherValue); in putAll()
1001 String otherValue = other.dataSource.getValueAtPath(otherXpath); in removeDuplicates() local
1002 if (!currentValue.equals(otherValue)) { in removeDuplicates()
1009 otherValue = other.dataSource.getValueAtPath(otherXpath); in removeDuplicates()
1010 if (!currentValue.equals(otherValue)) { in removeDuplicates()
1082 String otherValue = rootFile.dataSource.getValueAtPath(xpath); in putRoot() local
1091 add(otherFullXPath, otherValue); in putRoot()
[all …]
DXPathParts.java386 String otherValue = elements.get(i).getAttributeValue(attribute); in containsAttributeValue() local
387 if (otherValue != null && value.equals(otherValue)) return true; in containsAttributeValue()
/external/proguard/src/proguard/classfile/editor/
DComparableConstant.java129 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/
DCheckChildren.java37 String otherValue; in handleCheck() local
39 otherValue = immediateChildren[i].getWinningValue(path); in handleCheck()
43 if (!otherValue.equals(CldrUtility.NO_INHERITANCE_MARKER)) { in handleCheck()
44 tempSet.put(immediateChildren[i].getLocaleID(), otherValue); in handleCheck()
DCheckAlt.java36 String otherValue = getCldrFileToCheck().getStringValue(strippedPath); in handleCheck() local
37 if (otherValue != null) { in handleCheck()
DCheckDisplayCollisions.java608 String otherValue = file.getWinningValue(pathName); in getPathsWithValue() local
609 if (!otherValue.equals(value)) { in getPathsWithValue()
613 … String otherValue = SimpleXMLSource.normalizeCaseSensitive(file.getWinningValue(pathName)); in getPathsWithValue() local
614 if (!otherValue.equals(normValue)) { in getPathsWithValue()
/external/jsilver/src/com/google/clearsilver/jsilver/values/
DValue.java230 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/protobuf/java/core/src/main/java/com/google/protobuf/
DFieldSet.java524 Object otherValue = entry.getValue(); in mergeFromField() local
525 if (otherValue instanceof LazyField) { in mergeFromField()
526 otherValue = ((LazyField) otherValue).getValue(); in mergeFromField()
534 for (Object element : (List) otherValue) { in mergeFromField()
541 fields.put(descriptor, cloneIfMutable(otherValue)); in mergeFromField()
545 ((MessageLite) value).toBuilder(), (MessageLite) otherValue) in mergeFromField()
551 fields.put(descriptor, cloneIfMutable(otherValue)); in mergeFromField()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DMutableAggregation.java509 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/
DExtractMessages.java116 Set<String> otherValue = dataHandler.id_to_value.getAll(id); in main() local
117 if (otherValue == null || otherValue.size() == 0) continue; in main()
120 for (String oValue : otherValue) { in main()
DGenerateBirth.java270 String otherValue = ""; in writeBirth() local
294 otherValue = fixNull(otherInfo.get1()); in writeBirth()
306 + "\t" + otherValue in writeBirth()
/external/jsoncpp/src/lib_json/
Djson_internalmap.inl375 const Value* otherValue = other.find(key(it)); local
376 int valueDiff = value(it).compare(*otherValue);
/external/protobuf/objectivec/
DGPBMessage.m2511 id otherValue = [other->extensionMap_ objectForKey:extension];
2523 for (GPBMessage *otherListValue in otherValue) {
2529 [list addObjectsFromArray:otherValue];
2534 [(GPBMessage *)value mergeFrom:(GPBMessage *)otherValue];
2536 GPBMessage *copiedValue = [otherValue copy];
2541 [extensionMap_ setObject:otherValue forKey:extension];
2611 BOOL otherValue = GPBGetHasIvar(other, (int32_t)(fieldOffset), 0);
2612 if (selfValue != otherValue) {
/external/guice/lib/build/
Dspring-beans.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/springframework/ org/ ...
/external/guice/extensions/persist/lib/
Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META ...
/external/guice/extensions/struts2/lib/
Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath ...
/external/guice/lib/build/jdiff/
Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/xml/ javax/ ...
/external/grpc-grpc-java/netty/shaded/
Dgrpc-netty-shaded-1.14.0.jarMETA-INF/ META-INF/MANIFEST.MF io/ io/grpc/ io/ ...
/external/cldr/tools/java/libs/
DxercesImpl.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ ...
/external/testng/ant/3rdparty/
Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data ...
/external/kotlinc/lib/
Dkotlin-reflect.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/descriptors.jvm. ...
/external/owasp/sanitizer/tools/findbugs/lib/
Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd ...

12