Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp82 Proc(std::move(Proc)), Index(Index), IsMemberFunction(false) {} 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()
184 if (!IsMemberFunction) in isConstructorVirtualBase()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.h68 bool IsMemberFunction = false; variable
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp603 bool IsMemberFunction,
2636 bool IsMemberFunction, in EmitFullMemberPointer() argument
2644 if (MSInheritanceAttr::hasOnlyOneField(IsMemberFunction, Inheritance)) in EmitFullMemberPointer()
2650 if (MSInheritanceAttr::hasNVOffsetField(IsMemberFunction, Inheritance)) in EmitFullMemberPointer()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DAttr.td2835 static bool hasNVOffsetField(bool IsMemberFunction, Spelling Inheritance) {
2836 return IsMemberFunction && Inheritance >= Keyword_multiple_inheritance;
2843 static bool hasOnlyOneField(bool IsMemberFunction,
2845 if (IsMemberFunction)
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp4140 bool IsMemberFunction, SourceLocation Loc, in checkCall() argument
4153 CheckFormatArguments(I, Args, IsMemberFunction, CallType, Loc, Range, in checkCall()
4211 bool IsMemberFunction = isa<CXXMemberCallExpr>(TheCall) || in CheckFunctionCall() local
4226 } else if (IsMemberFunction) in CheckFunctionCall()
4231 IsMemberFunction, TheCall->getRParenLoc(), in CheckFunctionCall()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h10492 bool IsMemberFunction, SourceLocation Loc, SourceRange Range,