Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/Parse/
H A DParseDeclCXX.cpp1888 LateParsedMethodDeclaration *LateMethod = nullptr; in HandleMemberFunctionDeclDelays() local
1896 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl); in HandleMemberFunctionDeclDelays()
1897 getCurrentClass().LateParsedDeclarations.push_back(LateMethod); in HandleMemberFunctionDeclDelays()
1898 LateMethod->TemplateScope = getCurScope()->isTemplateParamScope(); in HandleMemberFunctionDeclDelays()
1901 LateMethod->ExceptionSpecTokens = FTI.ExceptionSpecTokens; in HandleMemberFunctionDeclDelays()
1905 LateMethod->DefaultArgs.reserve(FTI.NumParams); in HandleMemberFunctionDeclDelays()
1909 if (LateMethod || FTI.Params[ParamIdx].DefaultArgTokens) { in HandleMemberFunctionDeclDelays()
1910 if (!LateMethod) { in HandleMemberFunctionDeclDelays()
1913 LateMethod = new LateParsedMethodDeclaration(this, ThisDecl); in HandleMemberFunctionDeclDelays()
1914 getCurrentClass().LateParsedDeclarations.push_back(LateMethod); in HandleMemberFunctionDeclDelays()
[all …]