HomeSort by: relevance | last modified time | path
    Searched refs:NewDecl (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Template.h 598 DeclaratorDecl *NewDecl);
600 TagDecl *NewDecl);
Sema.h 9333 Decl *NewDecl;
9337 : TmplAttr(A), Scope(S), NewDecl(D)
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseTemplate.cpp 827 NamedDecl *NewDecl = Actions.ActOnTypeParameter(getCurScope(),
836 cast<TemplateTypeParmDecl>(NewDecl),
840 return NewDecl;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
InferAddressSpaces.cpp 347 Function *NewDecl =
350 II->setCalledFunction(NewDecl);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 2982 static void mergeParamDeclAttributes(ParmVarDecl *newDecl,
2989 const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>();
3006 bool foundAny = newDecl->hasAttrs();
3010 if (!foundAny) newDecl->setAttrs(AttrVec());
3013 if (!DeclHasAttr(newDecl, I)) {
3017 newDecl->addAttr(newAttr);
3022 if (!foundAny) newDecl->dropAttrs();
6484 NamedDecl *NewDecl,
6487 if (OldDecl->isInvalidDecl() || NewDecl->isInvalidDecl())
6497 if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl)) {
    [all...]
SemaTemplateInstantiateDecl.cpp 45 static bool SubstQualifier(Sema &SemaRef, const DeclT *OldDecl, DeclT *NewDecl,
50 assert((NewDecl->getFriendObjectKind() ||
55 const_cast<DeclContext *>(NewDecl->getFriendObjectKind()
56 ? NewDecl->getLexicalDeclContext()
66 NewDecl->setQualifierInfo(NewQualifierLoc);
71 DeclaratorDecl *NewDecl) {
72 return ::SubstQualifier(SemaRef, OldDecl, NewDecl, TemplateArgs);
76 TagDecl *NewDecl) {
77 return ::SubstQualifier(SemaRef, OldDecl, NewDecl, TemplateArgs);
SemaTemplate.cpp 8603 Decl *NewDecl = HandleDeclarator(S, D, TemplateParameterLists);
8604 ActOnDocumentableDecl(NewDecl);
8605 return NewDecl;
8633 ConceptDecl *NewDecl = ConceptDecl::Create(Context, DC, NameLoc, Name,
8637 if (NewDecl->hasAssociatedConstraints()) {
8641 NewDecl->setInvalidDecl();
8645 DeclarationNameInfo NameInfo(NewDecl->getDeclName(), NameLoc);
8655 diag::err_redefinition_different_kind) << NewDecl->getDeclName();
8659 ActOnDocumentableDecl(NewDecl);
8660 PushOnScopeChains(NewDecl, S)
    [all...]
SemaTemplateInstantiate.cpp 2792 NamedDecl *ND = dyn_cast<NamedDecl>(I->NewDecl);
2801 I->NewDecl->addAttr(NewAttr);
SemaDeclCXX.cpp 12693 TypeAliasTemplateDecl *NewDecl =
12697 NewTD->setDescribedAliasTemplate(NewDecl);
12699 NewDecl->setAccess(AS);
12702 NewDecl->setInvalidDecl();
12704 NewDecl->setPreviousDecl(OldDecl);
12705 CheckRedeclarationModuleOwnership(NewDecl, OldDecl);
12708 NewND = NewDecl;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Function.cpp 1647 auto NewDecl = Intrinsic::getDeclaration(F->getParent(), ID, ArgTys);
1648 NewDecl->setCallingConv(F->getCallingConv());
1649 assert(NewDecl->getFunctionType() == F->getFunctionType() &&
1651 return NewDecl;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 655 Function *NewDecl = EP.get(ARCRuntimeEntryPointKind::Retain);
656 cast<CallInst>(RetainRV)->setCalledFunction(NewDecl);
764 Function *NewDecl = EP.get(ARCRuntimeEntryPointKind::Autorelease);
765 AutoreleaseRVCI->setCalledFunction(NewDecl);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUTargetTransformInfo.cpp 1082 Function *NewDecl =
1085 II->setCalledFunction(NewDecl);
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 1225 RecordDecl *NewDecl;
1227 NewDecl = CXXRecordDecl::Create(*this, TK, getTranslationUnitDecl(), Loc,
1230 NewDecl = RecordDecl::Create(*this, TK, getTranslationUnitDecl(), Loc, Loc,
1232 NewDecl->setImplicit();
1233 NewDecl->addAttr(TypeVisibilityAttr::CreateImplicit(
1235 return NewDecl;
1241 TypedefDecl *NewDecl = TypedefDecl::Create(
1244 NewDecl->setImplicit();
1245 return NewDecl;

Completed in 114 milliseconds