Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeFunctionSig.cpp81 Proc(std::move(Proc)), Index(Index), IsMemberFunction(false) {} in NativeTypeFunctionSig()
87 MemberFunc(std::move(MemberFunc)), Index(Index), IsMemberFunction(true) {} 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()
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/PDB/Native/
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 …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DNativeTypeFunctionSig.h67 bool IsMemberFunction = false; variable
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/PDB/Native/
DNativeTypeFunctionSig.h64 bool IsMemberFunction = false; variable
/external/clang/include/clang/Basic/
DAttr.td2152 static bool hasNVOffsetField(bool IsMemberFunction, Spelling Inheritance) {
2153 return IsMemberFunction && Inheritance >= Keyword_multiple_inheritance;
2160 static bool hasOnlyOneField(bool IsMemberFunction,
2162 if (IsMemberFunction)
/external/clang/lib/CodeGen/
DMicrosoftCXXABI.cpp594 bool IsMemberFunction,
2570 bool IsMemberFunction, in EmitFullMemberPointer() argument
2578 if (MSInheritanceAttr::hasOnlyOneField(IsMemberFunction, Inheritance)) in EmitFullMemberPointer()
2584 if (MSInheritanceAttr::hasNVOffsetField(IsMemberFunction, Inheritance)) in EmitFullMemberPointer()
/external/clang/lib/Sema/
DSemaChecking.cpp2085 ArrayRef<const Expr *> Args, bool IsMemberFunction, in checkCall() argument
2099 CheckFormatArguments(I, Args, IsMemberFunction, CallType, Loc, Range, in checkCall()
2152 bool IsMemberFunction = isa<CXXMemberCallExpr>(TheCall) || in CheckFunctionCall() local
2166 IsMemberFunction, TheCall->getRParenLoc(), in CheckFunctionCall()
/external/clang/include/clang/Sema/
DSema.h9357 ArrayRef<const Expr *> Args, bool IsMemberFunction,