Searched defs:New (Results 126 - 138 of 138) sorted by relevance

123456

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1352 SDValue New = TLO.DAG.getNOT(dl, Op0, VT); local
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3890 SwitchInst *New = Builder.CreateSwitch(CompVal, DefaultBB, Values.size()); local
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4990 Value *Ptr, *Cmp, *New; local
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp250 void ReplaceStmt(Stmt *Old, Stmt *New) { argument
254 void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) { argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplate.cpp7488 static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old, argument
7619 DiagnoseTemplateParameterListArityMismatch(Sema &S, TemplateParameterList *New, TemplateParameterList *Old, Sema::TemplateParameterListEqualKind Kind, SourceLocation TemplateArgLoc) argument
7662 TemplateParameterListsAreEqual(TemplateParameterList *New, TemplateParameterList *Old, bool Complain, TemplateParameterListEqualKind Kind, SourceLocation TemplateArgLoc) argument
[all...]
H A DSemaType.cpp6750 QualType wrap(Sema &S, const FunctionType *New) { argument
6786 QualType New = wrap(C, cast<ParenType>(Old)->getInnerType(), I); local
6795 QualType New = wrap(C, CAT->getElementType(), I); local
6802 QualType New = wrap(C, VAT->getElementType(), I); local
6809 QualType New local
6815 QualType New = wrap(C, cast<PointerType>(Old)->getPointeeType(), I); local
6820 QualType New = wrap(C, cast<BlockPointerType>(Old)->getPointeeType(),I); local
6826 QualType New = wrap(C, OldMPT->getPointeeType(), I); local
6832 QualType New = wrap(C, OldRef->getPointeeType(), I); local
[all...]
H A DSemaDecl.cpp1548 bool Sema::CheckRedeclarationModuleOwnership(NamedDecl *New, NamedDecl *Old) { argument
1430 AllowOverloadingOfFunction(LookupResult &Previous, ASTContext &Context, const FunctionDecl *New) argument
2069 FunctionDecl *New = FunctionDecl::Create(Context, Parent, Loc, Loc, II, Type, local
2200 isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) argument
2239 MergeTypedefNameDecl(Scope *S, TypedefNameDecl *New, LookupResult &OldDecls) argument
2443 mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) argument
2657 checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) argument
2825 mergeDeclAttributes(NamedDecl *New, Decl *Old, AvailabilityMergeKind AMK) argument
3055 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) argument
3088 haveIncompatibleLanguageLinkages(const T *Old, const T *New) argument
3108 checkUsingShadowRedecl(Sema &S, UsingShadowDecl *OldS, ExpectedDecl *New) argument
3212 MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD, Scope *S, bool MergeTypeWithOld) argument
3809 MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old, Scope *S, bool MergeTypeWithOld) argument
3867 diagnoseVarDeclTypeMismatch(Sema &S, VarDecl *New, VarDecl* Old) argument
3890 MergeVarDeclTypes(VarDecl *New, VarDecl *Old, bool MergeTypeWithOld) argument
4014 MergeVarDecl(VarDecl *New, LookupResult &Previous) argument
4248 notePreviousDefinition(const NamedDecl *Old, SourceLocation New) argument
4305 checkVarDeclRedefinition(VarDecl *Old, VarDecl *New) argument
5857 NamedDecl *New; local
13455 ParmVarDecl *New = local
13578 ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name, local
15940 TagDecl *New; local
17678 EnumConstantDecl *New = local
18138 FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext, local
[all...]
H A DTreeTransform.h469 void transformAttrs(Decl *Old, Decl *New) { } argument
478 void transformedLocalDecl(Decl *Old, ArrayRef<Decl *> New) { argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp3078 auto *New = new (*this, TypeAlignment) ComplexType(T, Canonical); local
3106 auto *New = new (*this, TypeAlignment) PointerType(T, Canonical); local
3197 auto *New = new (*this, TypeAlignment) BlockPointerType(T, Canonical); local
3235 auto *New = new (*this, TypeAlignment) LValueReferenceType(T, Canonical, local
3271 auto *New = new (*this, TypeAlignment) RValueReferenceType(T, Canonical); local
3301 auto *New = new (*this, TypeAlignment) MemberPointerType(T, Cls, Canonical); local
3355 auto *New = new (Mem) local
3522 auto *New = new (*this, TypeAlignment) local
3801 auto *New = new (*this, TypeAlignment) local
3818 DependentVectorType *New; local
3871 auto *New = new (*this, TypeAlignment) local
3889 DependentSizedExtVectorType *New; local
3945 auto *New = new (*this, TypeAlignment) local
4059 auto *New = new (*this, TypeAlignment) local
4275 auto *New = new (*this, TypeAlignment) PipeType(T, Canonical, ReadOnly); local
5455 auto *New = new (*this, TypeAlignment) AtomicType(T, Canonical); local
10924 MSGuidDecl *New = MSGuidDecl::Create(*this, GUIDType, Parts); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2732 UsesReplacer(Instruction *Inst, Value *New) : TypePromotionAction(Inst) { argument
2733 LLVM_DEBUG(dbgs() << "Do: UsersReplacer: " << *Inst << " with " << *New local
2886 replaceAllUsesWith(Instruction *Inst, Value *New) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp8486 SDValue New = Op.getOperand(3); local
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2056 NamedDecl *New; member in struct:clang::final::CompleteTypeKind::SkipBodyInfo
360 shouldLinkPossiblyHiddenDecl(const NamedDecl *Old, const NamedDecl *New) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1176 SDValue New; local
14431 auto New = splitInt128(N->getOperand(3), DAG); local

Completed in 714 milliseconds

123456