Home
last modified time | relevance | path

Searched refs:HasExtParameterInfos (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h607 unsigned HasExtParameterInfos : 1; variable
642 return (HasExtParameterInfos ? NumArgs : 0); in numTrailingObjects()
723 if (!HasExtParameterInfos) return {}; in getExtParameterInfos()
728 if (!HasExtParameterInfos) return ExtParameterInfo(); in getExtParameterInfo()
769 ID.AddBoolean(HasExtParameterInfos); in Profile()
770 if (HasExtParameterInfos) { in Profile()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DType.h1751 unsigned HasExtParameterInfos : 1;
4613 return FunctionTypeBits.HasExtParameterInfos;
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3463 FunctionTypeBits.HasExtParameterInfos = !!epi.ExtParameterInfos; in FunctionProtoType()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp852 FI->HasExtParameterInfos = !paramInfos.empty(); in create()