/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/javassist/src/main/javassist/expr/ |
D | NewExpr.java | 187 CtClass newType = cp.get(newTypeName); in replace() local 191 int retVar = jc.recordReturnType(newType, true); in replace() 192 jc.recordProceed(new ProceedForNew(newType, newIndex, in replace() 197 checkResultValue(newType, statement); in replace() 203 bytecode.addConstZero(newType); in replace() 204 bytecode.addStore(retVar, newType); // initialize $_ in replace() 220 CtClass newType; field in NewExpr.ProceedForNew 224 newType = nt; in ProceedForNew() 235 gen.atMethodCallCore(newType, MethodInfo.nameInit, args, in doit() 237 gen.setType(newType); in doit() [all …]
|
/external/javassist/src/main/javassist/compiler/ast/ |
D | IntConst.java | 56 int newType; in compute0() local 58 newType = TokenId.LongConstant; in compute0() 61 newType = TokenId.CharConstant; in compute0() 63 newType = TokenId.IntConstant; in compute0() 95 newType = type1; in compute0() 99 newType = type1; in compute0() 103 newType = type1; in compute0() 109 return new IntConst(newValue, newType); in compute0()
|
D | DoubleConst.java | 54 int newType; in compute0() local 57 newType = TokenId.DoubleConstant; in compute0() 59 newType = TokenId.FloatConstant; in compute0() 61 return compute(op, this.value, right.value, newType); in compute0() 69 int newType) in compute() argument 92 return new DoubleConst(newValue, newType); in compute()
|
/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/javassist/src/main/javassist/bytecode/analysis/ |
D | Analyzer.java | 321 Type newType = frame.getLocal(i); in mergeJsr() local 323 old.setLocal(i, newType); in mergeJsr() 328 newType = oldType.merge(newType); in mergeJsr() 330 old.setLocal(i, newType); in mergeJsr() 331 if (!newType.equals(oldType) || newType.popChanged()) in mergeJsr() 382 Type newType = frame.getLocal(index); in mergeRet() local 383 if (oldType != newType) { in mergeRet() 384 old.setLocal(index, newType); in mergeRet()
|
/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/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/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 | 1208 String newType = memberDiff.newType_; in writeCtorChangedTableEntry() local 1209 if (newType.compareTo("void") == 0) in writeCtorChangedTableEntry() 1210 newType = ""; in writeCtorChangedTableEntry() 1213 …reportFile.print(" <nobr><A HREF=\"" + memberRef + ".html#" + className + "(" + newType + ")\" ta… in writeCtorChangedTableEntry() 1245 ".html#" + className + "(" + newType + in writeCtorChangedTableEntry() 1516 String newType = memberDiff.newType_; in writeFieldChangedTableEntry() local 1517 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 | 1896 newType = self.verboseRead(self.blockTypeCodes[kind]) 1897 if newType==-2: newType = types['P'+kind] 1898 elif newType==-1: 1899 newType = (types[kind]+1)%self.numberOfBlockTypes[kind] 1901 types[kind] = newType
|
/external/skia/src/sksl/ |
D | SkSLIRGenerator.cpp | 655 Type* newType = new Type(std::move(name), Type::kArray_Kind, *type, size); in convertFunction() local 656 fSymbolTable->takeOwnership(newType); in convertFunction() 657 type = newType; in convertFunction() 1826 Type* newType = new Type(oldType.name() + "[" + to_string(size) + "]", in convertIndex() local 1828 fSymbolTable->takeOwnership(newType); in convertIndex() 1830 *newType)); in convertIndex() 1976 Type* newType = new Type(oldType.name() + "[]", Type::kArray_Kind, oldType, in convertSuffixExpression() local 1978 fSymbolTable->takeOwnership(newType); in convertSuffixExpression() 1980 *newType)); in convertSuffixExpression()
|
/external/skqp/src/sksl/ |
D | SkSLIRGenerator.cpp | 656 Type* newType = new Type(std::move(name), Type::kArray_Kind, *type, size); in convertFunction() local 657 fSymbolTable->takeOwnership(newType); in convertFunction() 658 type = newType; in convertFunction() 1825 Type* newType = new Type(oldType.name() + "[" + to_string(size) + "]", in convertIndex() local 1827 fSymbolTable->takeOwnership(newType); in convertIndex() 1829 *newType)); in convertIndex() 1975 Type* newType = new Type(oldType.name() + "[]", Type::kArray_Kind, oldType, in convertSuffixExpression() local 1977 fSymbolTable->takeOwnership(newType); in convertSuffixExpression() 1979 *newType)); in convertSuffixExpression()
|
/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/mesa3d/src/mesa/swrast/ |
D | s_span.c | 936 convert_color_type(SWspan *span, GLenum srcType, GLenum newType, GLuint output) in convert_color_type() argument 952 if (newType == GL_UNSIGNED_BYTE) { in convert_color_type() 955 else if (newType == GL_UNSIGNED_SHORT) { in convert_color_type() 963 newType, dst, in convert_color_type() 966 span->array->ChanType = newType; in convert_color_type()
|
/external/annotation-tools/annotation-file-utilities/src/annotator/find/ |
D | TreeFinder.java | 1720 Type newType = Insertions.TypeTree.conv( 1723 newType.addAnnotation(ann); 1725 neu.setType(newType); 1740 Type newType = new DeclaredType(className); 1741 cons.setType(newType); 1743 newType.addAnnotation(ann);
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | BytecodeTypeInference.java | 670 private void replaceUninitializedTypeInStack(InferredType oldType, InferredType newType) { in replaceUninitializedTypeInStack() argument 675 operandStack.set(i, newType); in replaceUninitializedTypeInStack()
|