/external/proguard/src/proguard/evaluation/value/ |
D | TypedReferenceValue.java | 84 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 …]
|
D | ReferenceValue.java | 55 public abstract int instanceOf(String otherType, Clazz otherReferencedClass); in instanceOf() argument
|
/external/proguard/src/proguard/classfile/attribute/preverification/ |
D | FullFrame.java | 139 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()
|
D | MoreZeroFrame.java | 121 VerificationType otherType = other.additionalVariables[index]; in equals() local 123 if (!thisType.equals(otherType)) in equals()
|
/external/flatbuffers/lua/flatbuffers/ |
D | numTypes.lua | 55 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/ |
D | DateOrder.java | 175 FormatType otherType = FormatType.getType(otherPath); 178 if (!otherType.isLessImportantThan(firstType)) { 237 public boolean isLessImportantThan(FormatType otherType) { 238 return otherType.importance - importance > 0;
|
D | CheckConsistentCasing.java | 154 public boolean worksWith(CasingType otherType) { in worksWith() argument 155 …return otherType == null || this == otherType || this == CasingType.other || otherType == CasingTy… in worksWith()
|
D | CheckDisplayCollisions.java | 348 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()
|
D | CheckDates.java | 495 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/ |
D | cgenerator.py | 318 parent_structs = (otherType.elem.get('parentstruct') 319 for otherType in self.registry.typedict.values())
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ListsImplTest.java | 130 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/ |
D | ListsImplTest.java | 130 ImmutableList<Integer> otherType = ImmutableList.of(1, 2, 2); in testEqualsImpl() local 137 assertThat(Lists.equalsImpl(base, otherType)).isTrue(); in testEqualsImpl()
|
/external/vulkan-headers/registry/ |
D | cgenerator.py | 392 polymorphic_bases = (otherType.elem.get('parentstruct') 393 for otherType in self.registry.typedict.values())
|
/external/truth/core/src/main/java/com/google/common/truth/ |
D | MultimapSubject.java | 195 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/ |
D | cgenerator.py | 396 polymorphic_bases = (otherType.elem.get('parentstruct') 397 for otherType in self.registry.typedict.values())
|
/external/deqp/modules/gles2/functional/ |
D | es2fShaderMatrixTests.cpp | 805 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/ |
D | SpreadsheetView.java | 444 DrilldownType otherType) { in getDrilldownFields() argument 447 if (type == otherType) { in getDrilldownFields()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateTimePatternGenerator.java | 2931 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/ |
D | DateTimePatternGenerator.java | 2903 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/ |
D | test_basics.py | 980 def otherType(self): member in BasicMultiDBTestCase 996 d3.open(self.filename, "third", self.otherType(),
|
/external/icu/icu4c/source/i18n/ |
D | dtptngen.cpp | 2420 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/ |
D | dtptngen.cpp | 2420 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/ |
D | vktShaderRenderMatrixTests.cpp | 1718 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/ |
D | es3fShaderMatrixTests.cpp | 1458 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/ |
D | ToStringBuilderTest.java | 491 private final String otherType = "The Other Type"; field in ToStringBuilderTest.SelfInstanceTwoVarsReflectionTestFixture 498 return this.otherType; in getOtherType()
|