HomeSort by: relevance | last modified time | path
    Searched defs:ThisDecl (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCXXABI.cpp 127 auto *ThisDecl = ImplicitParamDecl::Create(
131 params.push_back(ThisDecl);
132 CGF.CXXABIThisDecl = ThisDecl;
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDeclCXX.cpp 2193 Decl *ThisDecl) {
2214 auto LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
2855 NamedDecl *ThisDecl = nullptr;
2868 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
2871 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
2878 ThisDecl ? dyn_cast<VarTemplateDecl>(ThisDecl) : nullptr)
2881 ThisDecl = VT->getTemplatedDecl();
2883 if (ThisDecl)
2884 Actions.ProcessDeclAttributeList(getCurScope(), ThisDecl, AccessAttrs)
    [all...]
ParseDecl.cpp 2071 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
2073 Actions.ActOnCXXForRangeDecl(ThisDecl);
2076 if (auto *VD = dyn_cast_or_null<VarDecl>(ThisDecl))
2079 Actions.FinalizeDeclaration(ThisDecl);
2080 D.complete(ThisDecl);
2081 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl);
2134 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D);
2135 D.complete(ThisDecl);
2136 if (ThisDecl)
2137 DeclsInGroup.push_back(ThisDecl);
    [all...]

Completed in 25 milliseconds