Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp82 Proc(std::move(Proc)), Index(Index), IsMemberFunction(false) {} in NativeTypeFunctionSig()
88 MemberFunc(std::move(MemberFunc)), Index(Index), IsMemberFunction(true) {} in NativeTypeFunctionSig()
91 if (IsMemberFunction) { in initialize()
123 if (IsMemberFunction) in dump()
146 if (!IsMemberFunction) in getClassParentId()
153 return IsMemberFunction ? MemberFunc.CallConv : Proc.CallConv; in getCallingConvention()
157 return IsMemberFunction ? (1 + MemberFunc.getParameterCount()) in getCount()
163 IsMemberFunction ? MemberFunc.getReturnType() : Proc.getReturnType(); in getTypeId()
170 return IsMemberFunction ? MemberFunc.getThisPointerAdjustment() : 0; in getThisAdjust()
174 if (!IsMemberFunction) in hasConstructor()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.h64 bool IsMemberFunction = false; variable
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp643 bool IsMemberFunction,
2849 bool IsMemberFunction, in EmitFullMemberPointer() argument
2857 if (inheritanceModelHasOnlyOneField(IsMemberFunction, Inheritance)) in EmitFullMemberPointer()
2863 if (inheritanceModelHasNVOffsetField(IsMemberFunction, Inheritance)) in EmitFullMemberPointer()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp3478 void Sema::checkLifetimeCaptureBy(FunctionDecl *FD, bool IsMemberFunction, in checkLifetimeCaptureBy() argument
3487 if (IsMemberFunction && Idx == 0) in checkLifetimeCaptureBy()
3489 return Args[Idx - IsMemberFunction]; in checkLifetimeCaptureBy()
3511 I + IsMemberFunction); in checkLifetimeCaptureBy()
3513 if (IsMemberFunction) { in checkLifetimeCaptureBy()
3527 bool IsMemberFunction, SourceLocation Loc, in checkCall() argument
3539 CheckFormatString(I, Args, IsMemberFunction, CallType, Loc, Range, in checkCall()
3545 CheckFormatArguments(I, Args, IsMemberFunction, CallType, Loc, Range, in checkCall()
3571 checkLifetimeCaptureBy(FD, IsMemberFunction, ThisArg, Args); in checkCall()
3743 bool IsMemberFunction = isa<CXXMemberCallExpr>(TheCall) || in CheckFunctionCall() local
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2765 void checkLifetimeCaptureBy(FunctionDecl *FDecl, bool IsMemberFunction,
2773 bool IsMemberFunction, SourceLocation Loc, SourceRange Range,