Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h539 unsigned HasExtParameterInfos : 1; variable
577 return (HasExtParameterInfos ? NumArgs : 0); in numTrailingObjects()
654 if (!HasExtParameterInfos) return {}; in getExtParameterInfos()
659 if (!HasExtParameterInfos) return ExtParameterInfo(); in getExtParameterInfo()
687 ID.AddBoolean(HasExtParameterInfos); in Profile()
688 if (HasExtParameterInfos) { in Profile()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h1535 unsigned HasExtParameterInfos : 1;
4060 return FunctionTypeBits.HasExtParameterInfos;
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp2859 FunctionTypeBits.HasExtParameterInfos = !!epi.ExtParameterInfos; in FunctionProtoType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCall.cpp832 FI->HasExtParameterInfos = !paramInfos.empty(); in create()