Searched defs:RequiredArgs (Results 1 - 1 of 1) sorted by relevance

/external/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h273 class RequiredArgs { class in class:clang::CodeGen::ABIArgInfo
280 RequiredArgs(All_t _) : NumRequired(~0U) {} function in class:clang::CodeGen::ABIArgInfo::RequiredArgs
281 explicit RequiredArgs(unsigned n) : NumRequired(n) { function in class:clang::CodeGen::ABIArgInfo::RequiredArgs
288 static RequiredArgs forPrototypePlus(const FunctionProtoType *prototype,
291 return RequiredArgs(prototype->getNumParams() + additional);
294 static RequiredArgs forPrototype(const FunctionProtoType *prototype) {
298 static RequiredArgs forPrototype(CanQual<FunctionProtoType> prototype) {
302 static RequiredArgs forPrototypePlus(CanQual<FunctionProtoType> prototype,
314 static RequiredArgs getFromOpaqueData(unsigned value) {
316 return RequiredArgs(valu
[all...]

Completed in 62 milliseconds