Home
last modified time | relevance | path

Searched refs:IsMemberFunction (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp81 Proc(std::move(Proc)), Index(Index), IsMemberFunction(false) {} in NativeTypeFunctionSig()
90 if (IsMemberFunction) { in initialize()
122 if (IsMemberFunction) in dump()
145 if (!IsMemberFunction) in getClassParentId()
152 return IsMemberFunction ? MemberFunc.CallConv : Proc.CallConv; in getCallingConvention()
156 return IsMemberFunction ? (1 + MemberFunc.getParameterCount()) in getCount()
162 IsMemberFunction ? MemberFunc.getReturnType() : Proc.getReturnType(); in getTypeId()
169 return IsMemberFunction ? MemberFunc.getThisPointerAdjustment() : 0; in getThisAdjust()
173 if (!IsMemberFunction) in hasConstructor()
183 if (!IsMemberFunction) in isConstructorVirtualBase()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DCXXInheritance.h371 inline bool inheritanceModelHasNVOffsetField(bool IsMemberFunction, in inheritanceModelHasNVOffsetField() argument
373 return IsMemberFunction && Inheritance >= MSInheritanceModel::Multiple; in inheritanceModelHasNVOffsetField()
381 inline bool inheritanceModelHasOnlyOneField(bool IsMemberFunction, in inheritanceModelHasOnlyOneField() argument
383 if (IsMemberFunction) in inheritanceModelHasOnlyOneField()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.h67 bool IsMemberFunction = false; variable
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp618 bool IsMemberFunction,
2729 bool IsMemberFunction, in EmitFullMemberPointer() argument
2737 if (inheritanceModelHasOnlyOneField(IsMemberFunction, Inheritance)) in EmitFullMemberPointer()
2743 if (inheritanceModelHasNVOffsetField(IsMemberFunction, Inheritance)) in EmitFullMemberPointer()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp4840 bool IsMemberFunction, SourceLocation Loc, in checkCall() argument
4853 CheckFormatArguments(I, Args, IsMemberFunction, CallType, Loc, Range, in checkCall()
4959 bool IsMemberFunction = isa<CXXMemberCallExpr>(TheCall) || in CheckFunctionCall() local
4974 } else if (IsMemberFunction) in CheckFunctionCall()
4995 IsMemberFunction, TheCall->getRParenLoc(), in CheckFunctionCall()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h12528 bool IsMemberFunction, SourceLocation Loc, SourceRange Range,