Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DHeaderSourceSwitch.cpp47 llvm::ArrayRef<llvm::StringRef> NewExts; in getCorrespondingHeaderOrSource() local
49 NewExts = HeaderExtensions; in getCorrespondingHeaderOrSource()
51 NewExts = SourceExtensions; in getCorrespondingHeaderOrSource()
57 for (llvm::StringRef NewExt : NewExts) { in getCorrespondingHeaderOrSource()
/llvm-project-15.0.7/clang/lib/Sema/
H A DOpenCLBuiltins.td60 // Concatenate zero or more space-separated extensions in NewExts to Base and
62 class concatExtension<FunctionExtension Base, string NewExts> {
65 // Return Base extension if NewExts is empty,
66 !empty(NewExts) : Base.ExtName,
68 // otherwise, return NewExts if Base extension is empty,
69 !empty(Base.ExtName) : NewExts,
71 // otherwise, concatenate NewExts to Base.
72 true : Base.ExtName # " " # NewExts
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp5765 SmallVector<Instruction *, 4> NewExts; in tryToPromoteExts() local
5770 &NewExts, nullptr, *TLI); in tryToPromoteExts()
5797 (void)tryToPromoteExts(TPT, NewExts, NewlyMovedExts, TotalCreatedInstsCost); in tryToPromoteExts()