/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTTexture.cpp | 511 void PVRTMapLegacyTextureEnumToNewFormat(PVRTPixelType OldFormat, PVRTuint64& newType, EPVRTColourS… in PVRTMapLegacyTextureEnumToNewFormat() argument 520 newType=PVRTGENPIXELID4('a','r','g','b',4,4,4,4); in PVRTMapLegacyTextureEnumToNewFormat() 528 newType=PVRTGENPIXELID4('a','r','g','b',1,5,5,5); in PVRTMapLegacyTextureEnumToNewFormat() 536 newType=PVRTGENPIXELID3('r','g','b',5,6,5); in PVRTMapLegacyTextureEnumToNewFormat() 544 newType=PVRTGENPIXELID4('x','r','g','b',1,5,5,5); in PVRTMapLegacyTextureEnumToNewFormat() 552 newType=PVRTGENPIXELID3('r','g','b',8,8,8); in PVRTMapLegacyTextureEnumToNewFormat() 560 newType=PVRTGENPIXELID4('a','r','g','b',8,8,8,8); in PVRTMapLegacyTextureEnumToNewFormat() 568 newType=PVRTGENPIXELID4('a','r','g','b',8,3,3,2); in PVRTMapLegacyTextureEnumToNewFormat() 576 newType=PVRTGENPIXELID1('i',8); in PVRTMapLegacyTextureEnumToNewFormat() 584 newType=PVRTGENPIXELID2('a','i',8,8); in PVRTMapLegacyTextureEnumToNewFormat() [all …]
|
D | PVRTTexture.h | 645 void PVRTMapLegacyTextureEnumToNewFormat(PVRTPixelType OldFormat, PVRTuint64& newType, EPVRTColourS…
|
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/ |
D | MediaTypeTest.java | 73 MediaType newType = MediaType.createApplicationType("yams"); in testCreateApplicationType() local 74 assertEquals("application", newType.type()); in testCreateApplicationType() 75 assertEquals("yams", newType.subtype()); in testCreateApplicationType() 79 MediaType newType = MediaType.createAudioType("yams"); in testCreateAudioType() local 80 assertEquals("audio", newType.type()); in testCreateAudioType() 81 assertEquals("yams", newType.subtype()); in testCreateAudioType() 85 MediaType newType = MediaType.createImageType("yams"); in testCreateImageType() local 86 assertEquals("image", newType.type()); in testCreateImageType() 87 assertEquals("yams", newType.subtype()); in testCreateImageType() 91 MediaType newType = MediaType.createTextType("yams"); in testCreateTextType() local [all …]
|
/external/guava/guava-tests/test/com/google/common/net/ |
D | MediaTypeTest.java | 133 MediaType newType = MediaType.createApplicationType("yams"); 134 assertEquals("application", newType.type()); 135 assertEquals("yams", newType.subtype()); 139 MediaType newType = MediaType.createAudioType("yams"); 140 assertEquals("audio", newType.type()); 141 assertEquals("yams", newType.subtype()); 145 MediaType newType = MediaType.createImageType("yams"); 146 assertEquals("image", newType.type()); 147 assertEquals("yams", newType.subtype()); 151 MediaType newType = MediaType.createTextType("yams"); [all …]
|
/external/proguard/src/proguard/classfile/editor/ |
D | MemberReferenceFixer.java | 131 String newType = referencedMember.getDescriptor(referencedClass); in visitFieldrefConstant() local 134 !fieldrefConstant.getType(clazz).equals(newType)) in visitFieldrefConstant() 143 … new ConstantPoolEditor((ProgramClass)clazz).addNameAndTypeConstant(newName, newType); in visitFieldrefConstant() 159 String newType = referencedMember.getDescriptor(referencedClass); in visitInterfaceMethodrefConstant() local 162 !interfaceMethodrefConstant.getType(clazz).equals(newType)) in visitInterfaceMethodrefConstant() 171 … new ConstantPoolEditor((ProgramClass)clazz).addNameAndTypeConstant(newName, newType); in visitInterfaceMethodrefConstant() 215 String newType = referencedMember.getDescriptor(referencedClass); in visitMethodrefConstant() local 218 !methodrefConstant.getType(clazz).equals(newType)) in visitMethodrefConstant() 227 … new ConstantPoolEditor((ProgramClass)clazz).addNameAndTypeConstant(newName, newType); in visitMethodrefConstant() 303 String newType = referencedMember.getDescriptor(referencedClass); in visitEnclosingMethodAttribute() local [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | AnalyzedInstruction.java | 413 RegisterType newType = null; 433 if (newType == null) { 434 … newType = RegisterType.getRegisterType(methodAnalyzer.getClassPath(), 438 if (MethodAnalyzer.isNotWideningConversion(originalType, newType)) { 565 RegisterType newType = null; 585 if (newType == null) { 586 … newType = RegisterType.getRegisterType(methodAnalyzer.getClassPath(), 590 if (MethodAnalyzer.isNotWideningConversion(originalType, newType)) {
|
D | MethodAnalyzer.java | 1193 public static boolean isNotWideningConversion(RegisterType originalType, RegisterType newType) { 1194 if (originalType.type == null || newType.type == null) { 1198 return newType.type.implementsInterface(originalType.type.getType()); 1200 TypeProto commonSuperclass = newType.type.getCommonSuperclass(originalType.type); 1204 if (commonSuperclass.getType().equals(newType.type.getType())) { 1263 RegisterType newType = RegisterType.getRegisterType(classPath, 1269 analyzedInstruction, register, newType); 1276 register, newType);
|
/external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/ |
D | ProxyingInstantiator.java | 58 private final Class<?> newType; field in ProxyingInstantiator 65 …newType = ClassDefinitionUtils.defineClass(type.getName() + SUFFIX, classBytes, type.getClassLoade… in ProxyingInstantiator() 74 return (T) newType.newInstance(); in newInstance()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/ |
D | TryListBuilder.java | 167 String newType = handler.getExceptionType(); in addHandler() local 170 if (newType == null) { in addHandler() 177 } else if (existingType.equals(newType)) { in addHandler()
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | Intermediate.cpp | 308 TBasicType newType = EbtVoid; in addUnaryMath() local 310 case EOpConstructInt8: newType = EbtInt8; break; in addUnaryMath() 311 case EOpConstructUint8: newType = EbtUint8; break; in addUnaryMath() 312 case EOpConstructInt16: newType = EbtInt16; break; in addUnaryMath() 313 case EOpConstructUint16: newType = EbtUint16; break; in addUnaryMath() 314 case EOpConstructInt: newType = EbtInt; break; in addUnaryMath() 315 case EOpConstructUint: newType = EbtUint; break; in addUnaryMath() 316 case EOpConstructInt64: newType = EbtInt64; break; in addUnaryMath() 317 case EOpConstructUint64: newType = EbtUint64; break; in addUnaryMath() 318 case EOpConstructBool: newType = EbtBool; break; in addUnaryMath() [all …]
|
D | ParseHelper.cpp | 463 TType newType(base->getType(), 0); // dereferenced type in handleBracketDereference() local 465 newType.getQualifier().storage = EvqConst; in handleBracketDereference() 468 newType.getQualifier().makeSpecConstant(); in handleBracketDereference() 471 newType.getQualifier().makePartialTemporary(); in handleBracketDereference() 473 result->setType(newType); in handleBracketDereference() 4143 const TType& newType = *newMember->type; in redeclareBuiltinBlock() local 4144 if (! newType.sameElementType(oldType)) in redeclareBuiltinBlock() 4146 if (oldType.isArray() != newType.isArray()) in redeclareBuiltinBlock() 4148 …else if (! oldType.getQualifier().isPerView() && ! oldType.sameArrayness(newType) && oldType.isSiz… in redeclareBuiltinBlock() 4150 else if (! oldType.getQualifier().isPerView() && newType.isArray()) in redeclareBuiltinBlock() [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/ |
D | MethodUsage.java | 170 … ResolvedType newType = originalType.replaceTypeVariables(typeParameter, type, inferredTypes); in replaceTypeParameter() local 171 res = res.replaceExceptionType(i, newType); in replaceTypeParameter()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestScriptMetadata.java | 143 String newType = parts.getAttributeValue(-1, "type"); in getEnglishTypes() local 144 if (!result.contains(newType)) { in getEnglishTypes() 145 result.add(newType); in getEnglishTypes()
|
/external/doclava/src/com/google/doclava/ |
D | InfoBuilder.java | 709 TypeInfo newType; in buildFields() local 712 newType = type; in buildFields() 714 newType = new TypeInfo(type.isPrimitive(), type.dimension(), in buildFields() 716 newType.setBounds(type.superBounds(), type.extendsBounds()); in buildFields() 717 newType.setIsWildcard(type.isWildcard()); in buildFields() 718 newType.setIsTypeVariable(type.isTypeVariable()); in buildFields() 719 newType.setTypeArguments(type.typeArguments()); in buildFields() 737 newType.setDimension(builder.toString()); in buildFields() 759 newType, commentAndPosition.getCommentText(), constantValue, in buildFields()
|
/external/swiftshader/src/OpenGL/compiler/ |
D | ConstantUnion.h | 33 bool cast(TBasicType newType, const ConstantUnion &constant) in cast() argument 35 switch (newType) in cast()
|
/external/jdiff/src/jdiff/ |
D | HTMLReportGenerator.java | 1198 String newType = memberDiff.newType_; in writeCtorChangedTableEntry() local 1199 if (newType.compareTo("void") == 0) in writeCtorChangedTableEntry() 1200 newType = ""; in writeCtorChangedTableEntry() 1203 …reportFile.print(" <nobr><A HREF=\"" + memberRef + ".html#" + className + "(" + newType + ")\" ta… in writeCtorChangedTableEntry() 1235 ".html#" + className + "(" + newType + in writeCtorChangedTableEntry() 1506 String newType = memberDiff.newType_; in writeFieldChangedTableEntry() local 1507 String shortNewType = simpleName(newType); in writeFieldChangedTableEntry()
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
D | Key.java | 98 Key withType(Types types, TypeMirror newType) { in withType() argument 100 MoreTypes.equivalence().wrap(normalize(types, newType))); in withType()
|
/external/brotli/research/ |
D | brotlidump.py | 1897 newType = self.verboseRead(self.blockTypeCodes[kind]) 1898 if newType==-2: newType = types['P'+kind] 1899 elif newType==-1: 1900 newType = (types[kind]+1)%self.numberOfBlockTypes[kind] 1902 types[kind] = newType
|
/external/cldr/tools/java/org/unicode/cldr/json/ |
D | Ldml2JsonConverter.java | 553 String newType = ""; in convertCldrItems() local 555 newType = "%%" + type; in convertCldrItems() 557 newType = "%" + type; in convertCldrItems() 559 newRulePath = newRulePath.replace(type, newType); in convertCldrItems() 560 item.setPath(item.getPath().replace(type, newType)); in convertCldrItems()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 2793 DependentSizedArrayType *newType in getDependentSizedArrayType() local 2798 Types.push_back(newType); in getDependentSizedArrayType() 2799 return QualType(newType, 0); in getDependentSizedArrayType() 2875 IncompleteArrayType *newType = new (*this, TypeAlignment) in getIncompleteArrayType() local 2878 IncompleteArrayTypes.InsertNode(newType, insertPos); in getIncompleteArrayType() 2879 Types.push_back(newType); in getIncompleteArrayType() 2880 return QualType(newType, 0); in getIncompleteArrayType() 3179 Type *newType = in getInjectedClassNameType() local 3181 Decl->TypeForDecl = newType; in getInjectedClassNameType() 3182 Types.push_back(newType); in getInjectedClassNameType() [all …]
|
/external/skia/src/sksl/ |
D | SkSLIRGenerator.cpp | 687 Type* newType = new Type(std::move(name), Type::kArray_Kind, *type, size); in convertFunction() local 688 fSymbolTable->takeOwnership(newType); in convertFunction() 689 type = newType; in convertFunction() 1933 Type* newType = new Type(oldType.name() + "[" + to_string(size) + "]", in convertIndex() local 1935 fSymbolTable->takeOwnership(newType); in convertIndex() 1937 *newType)); in convertIndex() 2181 Type* newType = new Type(oldType.name() + "[]", Type::kArray_Kind, oldType, in convertSuffixExpression() local 2183 fSymbolTable->takeOwnership(newType); in convertSuffixExpression() 2185 *newType)); in convertSuffixExpression()
|
/external/skqp/src/sksl/ |
D | SkSLIRGenerator.cpp | 681 Type* newType = new Type(std::move(name), Type::kArray_Kind, *type, size); in convertFunction() local 682 fSymbolTable->takeOwnership(newType); in convertFunction() 683 type = newType; in convertFunction() 1883 Type* newType = new Type(oldType.name() + "[" + to_string(size) + "]", in convertIndex() local 1885 fSymbolTable->takeOwnership(newType); in convertIndex() 1887 *newType)); in convertIndex() 2117 Type* newType = new Type(oldType.name() + "[]", Type::kArray_Kind, oldType, in convertSuffixExpression() local 2119 fSymbolTable->takeOwnership(newType); in convertSuffixExpression() 2121 *newType)); in convertSuffixExpression()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_span.c | 938 convert_color_type(SWspan *span, GLenum srcType, GLenum newType, GLuint output) in convert_color_type() argument 954 if (newType == GL_UNSIGNED_BYTE) { in convert_color_type() 957 else if (newType == GL_UNSIGNED_SHORT) { in convert_color_type() 965 newType, dst, in convert_color_type() 968 span->array->ChanType = newType; in convert_color_type()
|
/external/syzkaller/vendor/golang.org/x/text/unicode/bidi/ |
D | core.go | 655 func setTypes(types []Class, newType Class) { 657 types[i] = newType
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | BytecodeTypeInference.java | 671 private void replaceUninitializedTypeInStack(InferredType oldType, InferredType newType) { in replaceUninitializedTypeInStack() argument 676 operandStack.set(i, newType); in replaceUninitializedTypeInStack()
|