Home
last modified time | relevance | path

Searched refs:ClassType (Results 1 – 24 of 24) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h175 MemberFunctionRecord(TypeIndex ReturnType, TypeIndex ClassType, in MemberFunctionRecord() argument
180 ClassType(ClassType), ThisType(ThisType), CallConv(CallConv), in MemberFunctionRecord()
186 TypeIndex getClassType() const { return ClassType; } in getClassType()
195 TypeIndex ClassType; variable
220 MemberFuncIdRecord(TypeIndex ClassType, TypeIndex FunctionType, in MemberFuncIdRecord() argument
222 : TypeRecord(TypeRecordKind::MemberFuncId), ClassType(ClassType), in MemberFuncIdRecord()
225 TypeIndex getClassType() const { return ClassType; } in getClassType()
229 TypeIndex ClassType; variable
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclarationName.cpp119 static void printCXXConstructorDestructorName(QualType ClassType, in printCXXConstructorDestructorName() argument
125 if (const RecordType *ClassRec = ClassType->getAs<RecordType>()) { in printCXXConstructorDestructorName()
130 if (auto *InjTy = ClassType->getAs<InjectedClassNameType>()) { in printCXXConstructorDestructorName()
135 ClassType.print(OS, Policy); in printCXXConstructorDestructorName()
H A DDeclCXX.cpp1889 QualType ClassType = Context.getTypeDeclType(this); in getDestructor() local
1893 Context.getCanonicalType(ClassType)); in getDestructor()
2380 QualType ClassType in isCopyAssignmentOperator() local
2382 return Context.hasSameUnqualifiedType(ClassType, ParamType); in isCopyAssignmentOperator()
2401 QualType ClassType in isMoveAssignmentOperator() local
2403 return Context.hasSameUnqualifiedType(ClassType, ParamType); in isMoveAssignmentOperator()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp92 Session.getSymbolCache().findSymbolByTypeIndex(MemberFunc.ClassType); in initialize()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp398 Id.FunctionType, Id.ClassType); in visitKnownRecord()
417 MF.ClassType, MF.ThisType, MF.ThisPointerAdjustment); in visitKnownRecord()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h113 template <typename ClassType, typename ReturnType, typename... Args>
114 struct function_traits<ReturnType (ClassType::*)(Args...) const, false> {
126 template <typename ClassType, typename ReturnType, typename... Args>
127 struct function_traits<ReturnType (ClassType::*)(Args...), false>
128 : function_traits<ReturnType (ClassType::*)(Args...) const> {};
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1097 void setConstructorName(ParsedType ClassType, in setConstructorName() argument
1103 ConstructorName = ClassType; in setConstructorName()
1121 ParsedType ClassType, in setDestructorName() argument
1126 DestructorName = ClassType; in setDestructorName()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp327 error(IO.mapInteger(Record.ClassType, "ClassType")); in visitKnownRecord()
562 error(IO.mapInteger(Record.ClassType, "ClassType")); in visitKnownRecord()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp414 IO.mapRequired("ClassType", Record.ClassType); in map()
428 IO.mapRequired("ClassType", Record.ClassType); in map()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp1079 QualType ClassType = ThisTy->getPointeeType(); in adjustCVQualifiersForCXXThisWithinLambda() local
1132 ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask); in adjustCVQualifiersForCXXThisWithinLambda()
1134 ClassType.addConst(); in adjustCVQualifiersForCXXThisWithinLambda()
1135 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
1173 ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask); in adjustCVQualifiersForCXXThisWithinLambda()
1175 ClassType.addConst(); in adjustCVQualifiersForCXXThisWithinLambda()
1176 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
1183 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
3841 QualType ClassType = dtor->getThisType()->getPointeeType(); in CheckVirtualDtorCall() local
3851 << ClassType; in CheckVirtualDtorCall()
[all …]
H A DSemaDeclCXX.cpp10713 QualType ClassType in ActOnConversionDeclarator() local
10724 if (ConvType == ClassType) in ActOnConversionDeclarator()
10726 << ClassType; in ActOnConversionDeclarator()
10729 << ClassType << ConvType; in ActOnConversionDeclarator()
10732 << ClassType << ConvType; in ActOnConversionDeclarator()
13229 CanQualType ClassType in DeclareImplicitDefaultConstructor() local
13508 CanQualType ClassType in DeclareImplicitDestructor() local
14842 QualType ClassType = Context.getTypeDeclType(ClassDecl); in DeclareImplicitCopyConstructor() local
14843 QualType ArgType = ClassType; in DeclareImplicitCopyConstructor()
14985 QualType ClassType = Context.getTypeDeclType(ClassDecl); in DeclareImplicitMoveConstructor() local
[all …]
H A DSemaOverload.cpp1743 const Type *ClassType in IsStandardConversion() local
1745 FromType = S.Context.getMemberPointerType(FromType, ClassType); in IsStandardConversion()
5296 QualType ClassType = S.Context.getTypeDeclType(ActingContext); in TryObjectArgumentInitialization() local
5305 QualType ImplicitParamType = S.Context.getQualifiedType(ClassType, Quals); in TryObjectArgumentInitialization()
5362 QualType ClassTypeCanon = S.Context.getCanonicalType(ClassType); in TryObjectArgumentInitialization()
5366 } else if (S.IsDerivedFrom(Loc, FromType, ClassType)) in TryObjectArgumentInitialization()
6352 QualType ClassType = Context.getTypeDeclType(Constructor->getParent()); in AddOverloadCandidate() local
6354 (Context.hasSameUnqualifiedType(ClassType, Args[0]->getType()) || in AddOverloadCandidate()
6356 ClassType))) { in AddOverloadCandidate()
15082 QualType ClassType in FixOverloadedFunctionReference() local
[all …]
H A DSemaExprObjC.cpp2644 const ObjCObjectType *ClassType = ReceiverType->getAs<ObjCObjectType>(); in BuildClassMessage() local
2645 if (!ClassType || !(Class = ClassType->getInterface())) { in BuildClassMessage()
H A DSemaDeclAttr.cpp956 const CXXRecordDecl *ClassType; member in __anon4a9f877c0311::ArgumentDependenceChecker
965 ClassType = MD->getParent(); in ArgumentDependenceChecker()
967 ClassType = nullptr; in ArgumentDependenceChecker()
979 assert(E->getType()->getPointeeCXXRecordDecl() == ClassType && in VisitCXXThisExpr()
H A DSemaTemplate.cpp7517 QualType ClassType in BuildExpressionFromDeclTemplateArgument() local
7521 ClassType.getTypePtr()); in BuildExpressionFromDeclTemplateArgument()
H A DTreeTransform.h777 QualType RebuildMemberPointerType(QualType PointeeType, QualType ClassType,
14184 QualType ClassType, in RebuildMemberPointerType() argument
14186 return SemaRef.BuildMemberPointerType(PointeeType, ClassType, Sigil, in RebuildMemberPointerType()
H A DSemaDecl.cpp11006 QualType ClassType = Context.getTypeDeclType(Record); in CheckFunctionDeclaration() local
11010 if (!ClassType->isDependentType()) { in CheckFunctionDeclaration()
11013 Context.getCanonicalType(ClassType)); in CheckFunctionDeclaration()
H A DSemaOpenMP.cpp6945 const Type *ClassType = in checkOpenMPDeclareVariantFunction() local
6947 FnPtrType = Context.getMemberPointerType(FD->getType(), ClassType); in checkOpenMPDeclareVariantFunction()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h784 LLVMMetadataRef ClassType,
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h583 const Node *ClassType; variable
589 ClassType(ClassType_), MemberType(MemberType_) {} in PointerToMemberType()
591 template<typename Fn> void match(Fn F) const { F(ClassType, MemberType); } in match()
603 ClassType->print(s); in printLeft()
3643 Node *ClassType = getDerived().parseType(); in parsePointerToMemberType() local
3644 if (ClassType == nullptr) in parsePointerToMemberType()
3649 return make<PointerToMemberType>(ClassType, MemberType); in parsePointerToMemberType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp399 TypeIndex ClassType = getTypeIndex(Class); in getFuncIdForSubprogram() local
400 MemberFuncIdRecord MFuncId(ClassType, getMemberFunctionType(SP, Class), in getFuncIdForSubprogram()
1943 TypeIndex ClassType = getTypeIndex(ClassTy); in lowerTypeMemberFunction() local
1980 MemberFunctionRecord MFR(ReturnTypeIndex, ClassType, ThisTypeIndex, CC, FO, in lowerTypeMemberFunction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfo.cpp1335 LLVMMetadataRef ClassType, in LLVMDIBuilderCreateMemberPointerType() argument
1341 unwrapDI<DIType>(ClassType), AlignInBits, SizeInBits, in LLVMDIBuilderCreateMemberPointerType()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp3450 const RecordType *ClassType = cast<RecordType>(MemberPointerTy->getClass()); in ContainsIncompleteClassType() local
3451 if (IsIncompleteClassType(ClassType)) in ContainsIncompleteClassType()
4169 const RecordType *ClassType = cast<RecordType>(Ty->getClass()); in BuildPointerToMemberTypeInfo() local
4170 if (IsIncompleteClassType(ClassType)) in BuildPointerToMemberTypeInfo()
4189 ItaniumRTTIBuilder(CXXABI).BuildTypeInfo(QualType(ClassType, 0))); in BuildPointerToMemberTypeInfo()
H A DCGDebugInfo.cpp3008 llvm::DIType *ClassType = getOrCreateType(QualType(Ty->getClass(), 0), U); in CreateType() local
3011 getOrCreateType(Ty->getPointeeType(), U), ClassType, Size, /*Align=*/0, in CreateType()
3020 ClassType, Size, /*Align=*/0, Flags); in CreateType()