Searched refs:FieldTypes (Results 1 – 7 of 7) sorted by relevance
/external/clang/lib/CodeGen/ |
D | CGRecordLayoutBuilder.cpp | 163 FieldTypes.push_back(getByteArrayType(Size)); in appendPaddingBytes() 203 SmallVector<llvm::Type *, 16> FieldTypes; member 342 FieldTypes.push_back(StorageType); in lowerUnion() 632 FieldTypes.push_back(Member->Data); in fillOutputFields() 635 Fields[Member->FD->getCanonicalDecl()] = FieldTypes.size() - 1; in fillOutputFields() 638 setBitFieldInfo(Member->FD, Member->Offset, FieldTypes.back()); in fillOutputFields() 640 NonVirtualBases[Member->RD] = FieldTypes.size() - 1; in fillOutputFields() 642 VirtualBases[Member->RD] = FieldTypes.size() - 1; in fillOutputFields() 699 getLLVMContext(), BaseBuilder.FieldTypes, "", BaseBuilder.Packed); in ComputeRecordLayout() 711 Ty->setBody(Builder.FieldTypes, Builder.Packed); in ComputeRecordLayout()
|
D | MicrosoftCXXABI.cpp | 444 llvm::Type *FieldTypes[] = { in getTypeDescriptorType() local 449 llvm::StructType::create(CGM.getLLVMContext(), FieldTypes, TDTypeName); in getTypeDescriptorType() 462 llvm::Type *FieldTypes[] = { in getBaseClassDescriptorType() local 472 CGM.getLLVMContext(), FieldTypes, "rtti.BaseClassDescriptor"); in getBaseClassDescriptorType() 482 llvm::Type *FieldTypes[] = { in getClassHierarchyDescriptorType() local 489 ClassHierarchyDescriptorType->setBody(FieldTypes); in getClassHierarchyDescriptorType() 498 llvm::Type *FieldTypes[] = { in getCompleteObjectLocatorType() local 506 llvm::ArrayRef<llvm::Type *> FieldTypesRef(FieldTypes); in getCompleteObjectLocatorType() 674 llvm::Type *FieldTypes[] = { in getCatchableTypeType() local 684 CGM.getLLVMContext(), FieldTypes, "eh.CatchableType"); in getCatchableTypeType() [all …]
|
D | CodeGenModule.cpp | 3272 QualType FieldTypes[3]; in GetAddrOfConstantString() local 3275 FieldTypes[0] = Context.getPointerType(Context.IntTy.withConst()); in GetAddrOfConstantString() 3277 FieldTypes[1] = Context.getPointerType(Context.CharTy.withConst()); in GetAddrOfConstantString() 3279 FieldTypes[2] = Context.UnsignedIntTy; in GetAddrOfConstantString() 3286 FieldTypes[i], /*TInfo=*/nullptr, in GetAddrOfConstantString() 3351 QualType FieldTypes[] = { in getObjCFastEnumerationStateType() local 3364 FieldTypes[i], /*TInfo=*/nullptr, in getObjCFastEnumerationStateType()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 4894 QualType FieldTypes[4]; in getCFConstantStringDecl() local 4898 FieldTypes[0] = getPointerType(IntTy.withConst()); in getCFConstantStringDecl() 4901 FieldTypes[1] = IntTy; in getCFConstantStringDecl() 4904 FieldTypes[2] = getPointerType(CharTy.withConst()); in getCFConstantStringDecl() 4907 FieldTypes[3] = LongTy; in getCFConstantStringDecl() 4916 FieldTypes[i], /*TInfo=*/nullptr, in getCFConstantStringDecl() 4974 QualType FieldTypes[] = { in getBlockDescriptorType() local 4987 &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr, in getBlockDescriptorType() 5009 QualType FieldTypes[] = { in getBlockDescriptorExtendedType() local 5026 &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr, in getBlockDescriptorExtendedType() [all …]
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 2528 QualType FieldTypes[2]; in getSuperStructType() local 2531 FieldTypes[0] = Context->getObjCIdType(); in getSuperStructType() 2533 FieldTypes[1] = Context->getObjCClassType(); in getSuperStructType() 2540 FieldTypes[i], nullptr, in getSuperStructType() 2556 QualType FieldTypes[4]; in getConstantStringStructType() local 2559 FieldTypes[0] = Context->getObjCIdType(); in getConstantStringStructType() 2561 FieldTypes[1] = Context->IntTy; in getConstantStringStructType() 2563 FieldTypes[2] = Context->getPointerType(Context->CharTy); in getConstantStringStructType() 2565 FieldTypes[3] = Context->LongTy; in getConstantStringStructType() 2573 FieldTypes[i], nullptr, in getConstantStringStructType()
|
D | RewriteModernObjC.cpp | 2982 QualType FieldTypes[2]; in getSuperStructType() local 2985 FieldTypes[0] = Context->getObjCIdType(); in getSuperStructType() 2987 FieldTypes[1] = Context->getObjCIdType(); in getSuperStructType() 2994 FieldTypes[i], nullptr, in getSuperStructType() 3010 QualType FieldTypes[4]; in getConstantStringStructType() local 3013 FieldTypes[0] = Context->getObjCIdType(); in getConstantStringStructType() 3015 FieldTypes[1] = Context->IntTy; in getConstantStringStructType() 3017 FieldTypes[2] = Context->getPointerType(Context->CharTy); in getConstantStringStructType() 3019 FieldTypes[3] = Context->LongTy; in getConstantStringStructType() 3027 FieldTypes[i], nullptr, in getConstantStringStructType()
|
/external/python/cpython3/Doc/library/ |
D | enum.rst | 1065 >>> class FieldTypes(Enum): 1070 >>> FieldTypes.value.size 1071 <FieldTypes.size: 2> 1072 >>> FieldTypes.size.value
|