Home
last modified time | relevance | path

Searched refs:otherType (Results 1 – 25 of 29) sorted by relevance

12

/external/proguard/src/proguard/evaluation/value/
DTypedReferenceValue.java84 public int instanceOf(String otherType, Clazz otherReferencedClass) in instanceOf() argument
96 int otherDimensionCount = ClassUtil.internalArrayTypeDimensionCount(otherType); in instanceOf()
101 otherType = otherType.substring(commonDimensionCount); in instanceOf()
106 ClassUtil.isInternalPrimitiveType(otherType.charAt(0)))) in instanceOf()
108 return !thisType.equals(otherType) ? NEVER : in instanceOf()
122 otherType = ClassUtil.internalClassNameFromClassType(otherType); in instanceOf()
129 !ClassUtil.isInternalArrayInterfaceName(otherType)) in instanceOf()
151 if (thisType.equals(otherType) || in instanceOf()
152 ClassConstants.NAME_JAVA_LANG_OBJECT.equals(otherType)) in instanceOf()
223 String otherType = other.type; in generalize() local
[all …]
DReferenceValue.java55 public abstract int instanceOf(String otherType, Clazz otherReferencedClass); in instanceOf() argument
/external/proguard/src/proguard/classfile/attribute/preverification/
DFullFrame.java139 VerificationType otherType = other.variables[index]; in equals() local
141 if (!thisType.equals(otherType)) in equals()
150 VerificationType otherType = other.stack[index]; in equals() local
152 if (!thisType.equals(otherType)) in equals()
DMoreZeroFrame.java121 VerificationType otherType = other.additionalVariables[index]; in equals() local
123 if (!thisType.equals(otherType)) in equals()
/external/flatbuffers/lua/flatbuffers/
DnumTypes.lua55 function type_mt:ConvertType(n, otherType)
56 … assert(self.bytewidth == otherType.bytewidth, "Cannot convert between types of different widths")
57 if self == otherType then
60 return otherType:Unpack(self:Pack(n))
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/test/
DDateOrder.java175 FormatType otherType = FormatType.getType(otherPath);
178 if (!otherType.isLessImportantThan(firstType)) {
237 public boolean isLessImportantThan(FormatType otherType) {
238 return otherType.importance - importance > 0;
DCheckConsistentCasing.java154 public boolean worksWith(CasingType otherType) { in worksWith() argument
155 …return otherType == null || this == otherType || this == CasingType.other || otherType == CasingTy… in worksWith()
DCheckDisplayCollisions.java348 Type otherType = myType == Type.TERRITORY ? Type.ZONE : Type.TERRITORY; in handleCheck() local
350 getResolvedCldrFileToCheck(), path, value, otherType, in handleCheck()
351 otherType.getPrefix(), null, currentAttributesToIgnore, Equivalence.normal); in handleCheck()
355 String duplicateRegion = getRegion(otherType, duplicatePath); in handleCheck()
DCheckDates.java495 String otherType = getLastType(item); in handleCheck() local
496 … if (myType.equals(otherType)) { // we don't care about items with the same type value in handleCheck()
/external/gfxstream-protocols/registry/vulkan/scripts/
Dcgenerator.py318 parent_structs = (otherType.elem.get('parentstruct')
319 for otherType in self.registry.typedict.values())
/external/guava/guava-tests/test/com/google/common/collect/
DListsImplTest.java130 ImmutableList<Integer> otherType = ImmutableList.of(1, 2, 2); in testEqualsImpl() local
137 assertThat(Lists.equalsImpl(base, otherType)).isTrue(); in testEqualsImpl()
/external/guava/android/guava-tests/test/com/google/common/collect/
DListsImplTest.java130 ImmutableList<Integer> otherType = ImmutableList.of(1, 2, 2); in testEqualsImpl() local
137 assertThat(Lists.equalsImpl(base, otherType)).isTrue(); in testEqualsImpl()
/external/vulkan-headers/registry/
Dcgenerator.py392 polymorphic_bases = (otherType.elem.get('parentstruct')
393 for otherType in self.registry.typedict.values())
/external/truth/core/src/main/java/com/google/common/truth/
DMultimapSubject.java195 String otherType = (other instanceof ListMultimap) ? "ListMultimap" : "SetMultimap"; in isEqualTo() local
198 fact("an instance of", otherType), in isEqualTo()
203 "a %s cannot equal a %s if either is non-empty", actualType, otherType))); in isEqualTo()
/external/angle/third_party/vulkan-deps/vulkan-headers/src/registry/
Dcgenerator.py396 polymorphic_bases = (otherType.elem.get('parentstruct')
397 for otherType in self.registry.typedict.values())
/external/deqp/modules/gles2/functional/
Des2fShaderMatrixTests.cpp805 DataType otherType = matNdx == 0 ? m_in1.dataType : m_in0.dataType; in init() local
807 if (otherType == TYPE_FLOAT) in init()
811 DE_ASSERT(isDataTypeVector(otherType)); in init()
812 resultType = otherType; in init()
/external/autotest/frontend/client/src/autotest/tko/
DSpreadsheetView.java444 DrilldownType otherType) { in getDrilldownFields() argument
447 if (type == otherType) { in getDrilldownFields()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateTimePatternGenerator.java2931 int otherType = other.type[i]; in getDistance() local
2932 if (myType == otherType) continue; // identical (maybe both zero) add 0 in getDistance()
2936 } else if (otherType == 0) { // and mine is not in getDistance()
2940 result += Math.abs(myType - otherType); // square of mismatch in getDistance()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateTimePatternGenerator.java2903 int otherType = other.type[i]; in getDistance() local
2904 if (myType == otherType) continue; // identical (maybe both zero) add 0 in getDistance()
2908 } else if (otherType == 0) { // and mine is not in getDistance()
2912 result += Math.abs(myType - otherType); // square of mismatch in getDistance()
/external/python/cpython2/Lib/bsddb/test/
Dtest_basics.py980 def otherType(self): member in BasicMultiDBTestCase
996 d3.open(self.filename, "third", self.otherType(),
/external/icu/icu4c/source/i18n/
Ddtptngen.cpp2420 int32_t otherType = other.skeleton.type[i]; in getDistance() local
2421 if (myType==otherType) { in getDistance()
2429 if (otherType==0) { in getDistance()
2434 result += abs(myType - otherType); in getDistance()
/external/cronet/third_party/icu/source/i18n/
Ddtptngen.cpp2420 int32_t otherType = other.skeleton.type[i]; in getDistance() local
2421 if (myType==otherType) { in getDistance()
2429 if (otherType==0) { in getDistance()
2434 result += abs(myType - otherType); in getDistance()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderMatrixTests.cpp1718 DataType otherType = matNdx == 0 ? m_in1.dataType : m_in0.dataType; in setupShader() local
1720 if (otherType == TYPE_FLOAT) in setupShader()
1724 DE_ASSERT(isDataTypeVector(otherType)); in setupShader()
/external/deqp/modules/gles3/functional/
Des3fShaderMatrixTests.cpp1458 DataType otherType = matNdx == 0 ? m_in1.dataType : m_in0.dataType; in init() local
1460 if (otherType == TYPE_FLOAT) in init()
1464 DE_ASSERT(isDataTypeVector(otherType)); in init()
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/builder/
DToStringBuilderTest.java491 private final String otherType = "The Other Type"; field in ToStringBuilderTest.SelfInstanceTwoVarsReflectionTestFixture
498 return this.otherType; in getOtherType()

12