Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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 …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.h64 bool IsMemberFunction = false; variable
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp637 bool IsMemberFunction,
2835 bool IsMemberFunction, in EmitFullMemberPointer() argument
2843 if (inheritanceModelHasOnlyOneField(IsMemberFunction, Inheritance)) in EmitFullMemberPointer()
2849 if (inheritanceModelHasNVOffsetField(IsMemberFunction, Inheritance)) in EmitFullMemberPointer()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaChecking.cpp5904 bool IsMemberFunction, SourceLocation Loc, in checkCall() argument
5917 CheckFormatArguments(I, Args, IsMemberFunction, CallType, Loc, Range, in checkCall()
6029 bool IsMemberFunction = isa<CXXMemberCallExpr>(TheCall) || in CheckFunctionCall() local
6044 } else if (IsMemberFunction && !FDecl->isStatic()) in CheckFunctionCall()
6065 IsMemberFunction, TheCall->getRParenLoc(), in CheckFunctionCall()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h13440 bool IsMemberFunction, SourceLocation Loc, SourceRange Range,