Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h595 unsigned HasExtParameterInfos : 1; variable
633 return (HasExtParameterInfos ? NumArgs : 0); in numTrailingObjects()
712 if (!HasExtParameterInfos) return {}; in getExtParameterInfos()
717 if (!HasExtParameterInfos) return ExtParameterInfo(); in getExtParameterInfo()
746 ID.AddBoolean(HasExtParameterInfos); in Profile()
747 if (HasExtParameterInfos) { in Profile()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DType.h1610 unsigned HasExtParameterInfos : 1;
4282 return FunctionTypeBits.HasExtParameterInfos;
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3166 FunctionTypeBits.HasExtParameterInfos = !!epi.ExtParameterInfos; in FunctionProtoType()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp833 FI->HasExtParameterInfos = !paramInfos.empty(); in create()