Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/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
/netbsd-src/external/apache2/llvm/dist/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.cpp1880 QualType ClassType = Context.getTypeDeclType(this); in getDestructor() local
1884 Context.getCanonicalType(ClassType)); in getDestructor()
2394 QualType ClassType in isCopyAssignmentOperator() local
2396 return Context.hasSameUnqualifiedType(ClassType, ParamType); in isCopyAssignmentOperator()
2415 QualType ClassType in isMoveAssignmentOperator() local
2417 return Context.hasSameUnqualifiedType(ClassType, ParamType); in isMoveAssignmentOperator()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp92 Session.getSymbolCache().findSymbolByTypeIndex(MemberFunc.ClassType); in initialize()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp398 Id.FunctionType, Id.ClassType); in visitKnownRecord()
417 MF.ClassType, MF.ThisType, MF.ThisPointerAdjustment); in visitKnownRecord()
/netbsd-src/external/apache2/llvm/dist/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> {};
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
H A Ddebuginfo_ocaml.c596 value Builder, LLVMMetadataRef PointeeType, LLVMMetadataRef ClassType, in llvm_dibuild_create_member_pointer_type_native() argument
600 DIBuilder_val(Builder), PointeeType, ClassType, in llvm_dibuild_create_member_pointer_type_native()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp414 IO.mapRequired("ClassType", Record.ClassType); in map()
428 IO.mapRequired("ClassType", Record.ClassType); in map()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprCXX.cpp1062 QualType ClassType = ThisTy->getPointeeType(); in adjustCVQualifiersForCXXThisWithinLambda() local
1115 ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask); in adjustCVQualifiersForCXXThisWithinLambda()
1117 ClassType.addConst(); in adjustCVQualifiersForCXXThisWithinLambda()
1118 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
1156 ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask); in adjustCVQualifiersForCXXThisWithinLambda()
1158 ClassType.addConst(); in adjustCVQualifiersForCXXThisWithinLambda()
1159 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
1166 return ASTCtx.getPointerType(ClassType); in adjustCVQualifiersForCXXThisWithinLambda()
3824 QualType ClassType = dtor->getThisType()->getPointeeType(); in CheckVirtualDtorCall() local
3829 << ClassType; in CheckVirtualDtorCall()
[all …]
H A DSemaDeclCXX.cpp10706 QualType ClassType in ActOnConversionDeclarator() local
10717 if (ConvType == ClassType) in ActOnConversionDeclarator()
10719 << ClassType; in ActOnConversionDeclarator()
10720 else if (IsDerivedFrom(Conversion->getLocation(), ClassType, ConvType)) in ActOnConversionDeclarator()
10722 << ClassType << ConvType; in ActOnConversionDeclarator()
10725 << ClassType << ConvType; in ActOnConversionDeclarator()
13037 CanQualType ClassType in DeclareImplicitDefaultConstructor() local
13041 = Context.DeclarationNames.getCXXConstructorName(ClassType); in DeclareImplicitDefaultConstructor()
13316 CanQualType ClassType in DeclareImplicitDestructor() local
13320 = Context.DeclarationNames.getCXXDestructorName(ClassType); in DeclareImplicitDestructor()
[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()
6356 QualType ClassType = Context.getTypeDeclType(Constructor->getParent()); in AddOverloadCandidate() local
6358 (Context.hasSameUnqualifiedType(ClassType, Args[0]->getType()) || in AddOverloadCandidate()
6360 ClassType))) { in AddOverloadCandidate()
15062 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.cpp955 const CXXRecordDecl *ClassType; member in __anoncb8837d30311::ArgumentDependenceChecker
964 ClassType = MD->getParent(); in ArgumentDependenceChecker()
966 ClassType = nullptr; in ArgumentDependenceChecker()
978 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,
14119 QualType ClassType, in RebuildMemberPointerType() argument
14121 return SemaRef.BuildMemberPointerType(PointeeType, ClassType, Sigil, in RebuildMemberPointerType()
H A DSemaDecl.cpp10947 QualType ClassType = Context.getTypeDeclType(Record); in CheckFunctionDeclaration() local
10951 if (!ClassType->isDependentType()) { in CheckFunctionDeclaration()
10954 Context.getCanonicalType(ClassType)); in CheckFunctionDeclaration()
H A DSemaOpenMP.cpp6929 const Type *ClassType = in checkOpenMPDeclareVariantFunction() local
6931 FnPtrType = Context.getMemberPointerType(FD->getType(), ClassType); in checkOpenMPDeclareVariantFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DDebugInfo.h784 LLVMMetadataRef ClassType,
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp3410 const RecordType *ClassType = cast<RecordType>(MemberPointerTy->getClass()); in ContainsIncompleteClassType() local
3411 if (IsIncompleteClassType(ClassType)) in ContainsIncompleteClassType()
4129 const RecordType *ClassType = cast<RecordType>(Ty->getClass()); in BuildPointerToMemberTypeInfo() local
4130 if (IsIncompleteClassType(ClassType)) in BuildPointerToMemberTypeInfo()
4149 ItaniumRTTIBuilder(CXXABI).BuildTypeInfo(QualType(ClassType, 0))); in BuildPointerToMemberTypeInfo()
H A DCGDebugInfo.cpp3022 llvm::DIType *ClassType = getOrCreateType(QualType(Ty->getClass(), 0), U); in CreateType() local
3025 getOrCreateType(Ty->getPointeeType(), U), ClassType, Size, /*Align=*/0, in CreateType()
3034 ClassType, Size, /*Align=*/0, Flags); in CreateType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DDebugInfo.cpp1299 LLVMMetadataRef ClassType, in LLVMDIBuilderCreateMemberPointerType() argument
1305 unwrapDI<DIType>(ClassType), AlignInBits, SizeInBits, in LLVMDIBuilderCreateMemberPointerType()

12