Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h176 MemberFunctionRecord(TypeIndex ReturnType, TypeIndex ClassType, in MemberFunctionRecord() argument
181 ClassType(ClassType), ThisType(ThisType), CallConv(CallConv), in MemberFunctionRecord()
187 TypeIndex getClassType() const { return ClassType; } in getClassType()
196 TypeIndex ClassType; variable
221 MemberFuncIdRecord(TypeIndex ClassType, TypeIndex FunctionType, in MemberFuncIdRecord() argument
223 : TypeRecord(TypeRecordKind::MemberFuncId), ClassType(ClassType), in MemberFuncIdRecord()
226 TypeIndex getClassType() const { return ClassType; } in getClassType()
230 TypeIndex ClassType; variable
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclarationName.cpp113 static void printCXXConstructorDestructorName(QualType ClassType, in printCXXConstructorDestructorName() argument
119 if (const RecordType *ClassRec = ClassType->getAs<RecordType>()) { in printCXXConstructorDestructorName()
124 if (auto *InjTy = ClassType->getAs<InjectedClassNameType>()) { in printCXXConstructorDestructorName()
129 ClassType.print(OS, Policy); in printCXXConstructorDestructorName()
H A DDeclCXX.cpp1974 QualType ClassType = Context.getTypeDeclType(this); in getDestructor() local
1978 Context.getCanonicalType(ClassType)); in getDestructor()
2479 QualType ClassType in isCopyAssignmentOperator() local
2481 return Context.hasSameUnqualifiedType(ClassType, ParamType); in isCopyAssignmentOperator()
2500 QualType ClassType in isMoveAssignmentOperator() local
2502 return Context.hasSameUnqualifiedType(ClassType, ParamType); in isMoveAssignmentOperator()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp93 Session.getSymbolCache().findSymbolByTypeIndex(MemberFunc.ClassType); in initialize()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp402 Id.FunctionType, Id.ClassType); in visitKnownRecord()
421 MF.ClassType, MF.ThisType, MF.ThisPointerAdjustment); in visitKnownRecord()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1136 void setConstructorName(ParsedType ClassType, in setConstructorName() argument
1142 ConstructorName = ClassType; in setConstructorName()
1160 ParsedType ClassType, in setDestructorName() argument
1165 DestructorName = ClassType; in setDestructorName()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp347 error(IO.mapInteger(Record.ClassType, "ClassType")); in visitKnownRecord()
581 error(IO.mapInteger(Record.ClassType, "ClassType")); in visitKnownRecord()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h89 template <typename ClassType, typename ReturnType, typename... Args>
90 struct function_traits<ReturnType (ClassType::*)(Args...) const, false> {
102 template <typename ClassType, typename ReturnType, typename... Args>
103 struct function_traits<ReturnType (ClassType::*)(Args...), false>
104 : public function_traits<ReturnType (ClassType::*)(Args...) const> {};
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h809 LLVMMetadataRef ClassType,
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp1122 QualType ClassType = ThisTy->getPointeeType(); in adjustCVQualifiersForCXXThisWithinLambda() local
1176 ClassType.addConst(); in adjustCVQualifiersForCXXThisWithinLambda()
1177 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
1215 ClassType.addConst(); in adjustCVQualifiersForCXXThisWithinLambda()
1216 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
1223 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
4000 QualType ClassType = dtor->getFunctionObjectParameterType(); in CheckVirtualDtorCall() local
4005 << ClassType; in CheckVirtualDtorCall()
4010 << ClassType; in CheckVirtualDtorCall()
4014 ClassType.getAsStringInternal(TypeStr, getPrintingPolicy()); in CheckVirtualDtorCall()
H A DSemaDeclCXX.cpp11302 QualType ClassType in ActOnConversionDeclarator() local
11313 if (ConvType == ClassType) in ActOnConversionDeclarator()
11315 << ClassType; in ActOnConversionDeclarator()
11318 << ClassType << ConvType; in ActOnConversionDeclarator()
11321 << ClassType << ConvType; in ActOnConversionDeclarator()
13978 CanQualType ClassType in DeclareImplicitDefaultConstructor() local
14258 CanQualType ClassType in DeclareImplicitDestructor() local
15626 QualType ClassType = Context.getTypeDeclType(ClassDecl); in DeclareImplicitCopyConstructor() local
15627 QualType ArgType = ClassType; in DeclareImplicitCopyConstructor()
15771 QualType ClassType = Context.getTypeDeclType(ClassDecl); in DeclareImplicitMoveConstructor() local
[all …]
H A DSemaOverload.cpp1977 const Type *ClassType in IsStandardConversion() local
1979 FromType = S.Context.getMemberPointerType(FromType, ClassType); in IsStandardConversion()
5666 QualType ClassType = S.Context.getTypeDeclType(ActingContext); in TryObjectArgumentInitialization() local
5680 QualType ImplicitParamType = S.Context.getQualifiedType(ClassType, Quals); in TryObjectArgumentInitialization()
5728 QualType ClassTypeCanon = S.Context.getCanonicalType(ClassType); in TryObjectArgumentInitialization()
5732 } else if (S.IsDerivedFrom(Loc, FromType, ClassType)) { in TryObjectArgumentInitialization()
6857 QualType ClassType = Context.getTypeDeclType(Constructor->getParent()); in AddOverloadCandidate() local
6859 (Context.hasSameUnqualifiedType(ClassType, Args[0]->getType()) || in AddOverloadCandidate()
6861 ClassType))) { in AddOverloadCandidate()
16175 QualType ClassType in FixOverloadedFunctionReference() local
[all …]
H A DSemaExprObjC.cpp2647 const ObjCObjectType *ClassType = ReceiverType->getAs<ObjCObjectType>(); in BuildClassMessage() local
2648 if (!ClassType || !(Class = ClassType->getInterface())) { in BuildClassMessage()
H A DSemaDeclAttr.cpp989 const CXXRecordDecl *ClassType; member in __anon694ad0fe0311::ArgumentDependenceChecker
998 ClassType = MD->getParent(); in ArgumentDependenceChecker()
1000 ClassType = nullptr; in ArgumentDependenceChecker()
1012 assert(E->getType()->getPointeeCXXRecordDecl() == ClassType && in VisitCXXThisExpr()
H A DSemaTemplate.cpp8006 QualType ClassType in BuildExpressionFromDeclTemplateArgument() local
8010 ClassType.getTypePtr()); in BuildExpressionFromDeclTemplateArgument()
H A DTreeTransform.h848 QualType RebuildMemberPointerType(QualType PointeeType, QualType ClassType,
14955 QualType ClassType, in RebuildMemberPointerType() argument
14957 return SemaRef.BuildMemberPointerType(PointeeType, ClassType, Sigil, in RebuildMemberPointerType()
H A DSemaDecl.cpp12088 QualType ClassType = Context.getTypeDeclType(Record); in CheckFunctionDeclaration() local
12091 Context.getCanonicalType(ClassType)); in CheckFunctionDeclaration()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h740 const Node *ClassType; variable
746 ClassType(ClassType_), MemberType(MemberType_) {} in PointerToMemberType()
748 template<typename Fn> void match(Fn F) const { F(ClassType, MemberType); } in match()
760 ClassType->print(OB); in printLeft()
3957 Node *ClassType = getDerived().parseType(); in parsePointerToMemberType() local
3958 if (ClassType == nullptr) in parsePointerToMemberType()
3963 return make<PointerToMemberType>(ClassType, MemberType); in parsePointerToMemberType()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp405 TypeIndex ClassType = getTypeIndex(Class); in getFuncIdForSubprogram() local
406 MemberFuncIdRecord MFuncId(ClassType, getMemberFunctionType(SP, Class), in getFuncIdForSubprogram()
2102 TypeIndex ClassType = getTypeIndex(ClassTy); in lowerTypeMemberFunction() local
2139 MemberFunctionRecord MFR(ReturnTypeIndex, ClassType, ThisTypeIndex, CC, FO, in lowerTypeMemberFunction()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp3514 const RecordType *ClassType = cast<RecordType>(MemberPointerTy->getClass()); in ContainsIncompleteClassType() local
3515 if (IsIncompleteClassType(ClassType)) in ContainsIncompleteClassType()
4236 const RecordType *ClassType = cast<RecordType>(Ty->getClass()); in BuildPointerToMemberTypeInfo() local
4237 if (IsIncompleteClassType(ClassType)) in BuildPointerToMemberTypeInfo()
4256 ItaniumRTTIBuilder(CXXABI).BuildTypeInfo(QualType(ClassType, 0))); in BuildPointerToMemberTypeInfo()
H A DCGDebugInfo.cpp3314 llvm::DIType *ClassType = getOrCreateType(QualType(Ty->getClass(), 0), U); in CreateType() local
3317 getOrCreateType(Ty->getPointeeType(), U), ClassType, Size, /*Align=*/0, in CreateType()
3326 ClassType, Size, /*Align=*/0, Flags); in CreateType()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfo.cpp1487 LLVMMetadataRef ClassType, in LLVMDIBuilderCreateMemberPointerType() argument
1493 unwrapDI<DIType>(ClassType), AlignInBits, SizeInBits, in LLVMDIBuilderCreateMemberPointerType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp979 PdbTypeSymId class_type_id(mfr.ClassType, false); in CreateFunctionDeclFromId()
H A DSymbolFileNativePDB.cpp1578 inlinee_name.append(std::string(types.getTypeName(mfr.ClassType))); in ParseInlineSite()

12