/freebsd/contrib/llvm-project/clang/include/clang/Rewrite/Frontend/ |
H A D | FixItRewriter.h | 70 Rewriter Rewrite; variable 97 return Rewrite.getRewriteBufferFor(ID) != nullptr; in IsModified() 103 iterator buffer_begin() { return Rewrite.buffer_begin(); } in buffer_begin() 104 iterator buffer_end() { return Rewrite.buffer_end(); } in buffer_end()
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/ |
H A D | Refactoring.h | 64 bool applyAllReplacements(Rewriter &Rewrite); 68 int saveRewrittenFiles(Rewriter &Rewrite); 94 Rewriter &Rewrite, StringRef Style = "file");
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | RewriteMacros.cpp | 92 Rewriter Rewrite; in RewriteMacrosInInput() local 93 Rewrite.setSourceMgr(SM, PP.getLangOpts()); in RewriteMacrosInInput() 94 RewriteBuffer &RB = Rewrite.getEditBuffer(SM.getMainFileID()); in RewriteMacrosInInput() 209 Rewrite.getRewriteBufferFor(SM.getMainFileID())) { in RewriteMacrosInInput()
|
H A D | InclusionRewriter.cpp | 552 InclusionRewriter *Rewrite = new InclusionRewriter( in RewriteIncludesInInput() local 554 Rewrite->detectMainFileEOL(); in RewriteIncludesInInput() 556 PP.addPPCallbacks(std::unique_ptr<PPCallbacks>(Rewrite)); in RewriteIncludesInInput() 572 Rewrite->handleModuleBegin(Tok); in RewriteIncludesInInput() 574 Rewrite->setPredefinesBuffer(SM.getBufferOrFake(PP.getPredefinesFileID())); in RewriteIncludesInInput() 575 Rewrite->Process(PP.getPredefinesFileID(), SrcMgr::C_User); in RewriteIncludesInInput() 576 Rewrite->Process(SM.getMainFileID(), SrcMgr::C_User); in RewriteIncludesInInput()
|
H A D | RewriteModernObjC.cpp | 65 Rewriter Rewrite; member in __anonc09f721f0111::RewriteModernObjC 266 int Size = Rewrite.getRangeSize(SrcRange); in ReplaceStmtWithRange() 278 if (!Rewrite.ReplaceText(SrcRange.getBegin(), Size, SStr)) { in ReplaceStmtWithRange() 291 if (!Rewrite.InsertText(Loc, Str, InsertAfter) || in InsertText() 301 if (!Rewrite.ReplaceText(Start, OrigLength, Str) || in ReplaceText() 709 Rewrite.setSourceMgr(Context->getSourceManager(), Context->getLangOpts()); in InitializeCommon() 5484 std::string Str = Rewrite.getRewrittenText(BE->getSourceRange()); in RewriteFunctionBodyOrGlobalInitializer() 5859 Rewrite.getRewriteBufferFor(MainFileID)) { in HandleTranslationUnit()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | TextDiagnostics.cpp | 127 Rewriter Rewrite(SM, LO); in FlushDiagnosticsImpl() local 128 if (!applyAllReplacements(Repls, Rewrite)) { in FlushDiagnosticsImpl() 132 Rewrite.overwriteChangedFiles(); in FlushDiagnosticsImpl()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplateDeductionGuide.cpp | 356 Args.setKind(TemplateSubstitutionKind::Rewrite); in transformConstructor() 388 Args.setKind(TemplateSubstitutionKind::Rewrite); in transformConstructor() 409 Args.setKind(TemplateSubstitutionKind::Rewrite); in transformConstructor() 789 Args.setKind(TemplateSubstitutionKind::Rewrite); in buildAssociatedConstraints() 806 Args.setKind(TemplateSubstitutionKind::Rewrite); in buildAssociatedConstraints() 814 Args.setKind(TemplateSubstitutionKind::Rewrite); in buildAssociatedConstraints() 840 ArgsForBuildingRC.setKind(clang::TemplateSubstitutionKind::Rewrite); in buildAssociatedConstraints() 917 Args.setKind(TemplateSubstitutionKind::Rewrite); in buildIsDeducibleConstraint() 930 Args.setKind(TemplateSubstitutionKind::Rewrite); in buildIsDeducibleConstraint() 1080 Args.setKind(TemplateSubstitutionKind::Rewrite); in BuildDeductionGuideForTypeAlias() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | InferAddressSpaces.cpp | 405 Value *Rewrite = TTI->rewriteIntrinsicWithAddressSpace(II, OldV, NewV); in rewriteIntrinsicOperands() local 406 if (!Rewrite) in rewriteIntrinsicOperands() 408 if (Rewrite != II) in rewriteIntrinsicOperands() 409 II->replaceAllUsesWith(Rewrite); in rewriteIntrinsicOperands() 628 Value *Rewrite = in cloneInstructionWithNewAddressSpace() local 630 if (Rewrite) { in cloneInstructionWithNewAddressSpace() 631 assert(Rewrite != II && "cannot modify this pointer operation in place"); in cloneInstructionWithNewAddressSpace() 632 return Rewrite; in cloneInstructionWithNewAddressSpace()
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Core/ |
H A D | Replacement.h | 127 bool apply(Rewriter &Rewrite) const; 322 bool applyAllReplacements(const Replacements &Replaces, Rewriter &Rewrite);
|
/freebsd/contrib/llvm-project/clang/tools/clang-format/ |
H A D | ClangFormat.cpp | 530 Rewriter Rewrite(Sources, LangOptions()); in format() local 531 tooling::applyAllReplacements(Replaces, Rewrite); in format() 533 if (Rewrite.overwriteChangedFiles()) in format() 545 Rewrite.getEditBuffer(ID).write(outs()); in format()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Template.h | 54 Rewrite, enumerator 118 return Kind == TemplateSubstitutionKind::Rewrite; in isRewrite() 224 assert(getKind() == TemplateSubstitutionKind::Rewrite); in addOuterTemplateArguments()
|
/freebsd/lib/clang/libclang/ |
H A D | Makefile | 471 SRCS_MIN+= Frontend/Rewrite/FixItRewriter.cpp 472 SRCS_MIN+= Frontend/Rewrite/FrontendActions.cpp 473 SRCS_MIN+= Frontend/Rewrite/HTMLPrint.cpp 474 SRCS_MIN+= Frontend/Rewrite/InclusionRewriter.cpp 475 SRCS_MIN+= Frontend/Rewrite/RewriteMacros.cpp 476 SRCS_MIN+= Frontend/Rewrite/RewriteTest.cpp 536 SRCS_MIN+= Rewrite/DeltaTree.cpp 537 SRCS_MIN+= Rewrite/HTMLRewrite.cpp 538 SRCS_MIN+= Rewrite/RewriteRope.cpp 539 SRCS_MIN+= Rewrite/Rewriter.cpp [all …]
|
/freebsd/contrib/llvm-project/clang/include/ |
H A D | module.modulemap | 147 module Clang_Rewrite { requires cplusplus umbrella "clang/Rewrite/Core" module * { export * } } 148 module Clang_RewriteFrontend { requires cplusplus umbrella "clang/Rewrite/Frontend" module * { expo…
|
/freebsd/contrib/one-true-awk/ |
H A D | FIXES | 49 Rewrite if-else chain as switch. Thanks to Andrew Sukach. 106 Rewrite of fnematch to fix a number of issues, including
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | ObjCMT.cpp | 1744 Rewriter &Rewrite; member in __anonac2273870411::RewritesReceiver 1747 RewritesReceiver(Rewriter &Rewrite) : Rewrite(Rewrite) { } in RewritesReceiver() argument 1750 Rewrite.InsertText(loc, text); in insert() 1753 Rewrite.ReplaceText(range.getBegin(), Rewrite.getRangeSize(range), text); in replace()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
H A D | README.md | 34 Rewrite the unittests ``ReaderTest`` and ``CodeViewReaderTest`` to eliminate
|
/freebsd/contrib/openpam/ |
H A D | HISTORY | 81 - ENHANCE: Rewrite the dynamic loader to improve readability and 127 - ENHANCE: Rewrite the policy parser to used openpam_readlinev(),
|
/freebsd/tools/test/stress2/misc/ |
H A D | umountf2.sh | 100 * Rewrite and enhancements 1998-2001 Conrad Minshall -- conrad@mac.com
|
/freebsd/contrib/tcsh/ |
H A D | WishList | 152 Rewrite the whole thing. It has taken to much beating over the
|
/freebsd/crypto/openssl/ |
H A D | NEWS.md | 329 * Rewrite of the packet construction code for "safer" packet handling 330 * Rewrite of the extension handling code 365 * Rewrite of devcrypto engine 598 * Rewrite EVP_DecodeUpdate (base64 decoding) to fix several bugs 698 * Rewrite EVP_DecodeUpdate (base64 decoding) to fix several bugs
|
/freebsd/contrib/llvm-project/ |
H A D | FREEBSD-Xlist | 71 clang/lib/Frontend/Rewrite/CMakeLists.txt 80 clang/lib/Rewrite/CMakeLists.txt
|
/freebsd/share/i18n/csmapper/APPLE/ |
H A D | HEBREW%UCS.src | 39 # version 1.3. Rewrite header comments.
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 5694 std::pair<const SCEV *, SmallVector<const SCEVPredicate *, 3>> Rewrite = in createAddRecFromPHIWithCasts() local 5697 if (Rewrite.first == SymbolicPHI) in createAddRecFromPHIWithCasts() 5701 assert(isa<SCEVAddRecExpr>(Rewrite.first) && "Expected an AddRec"); in createAddRecFromPHIWithCasts() 5702 assert(!(Rewrite.second).empty() && "Expected to find Predicates"); in createAddRecFromPHIWithCasts() 5703 return Rewrite; in createAddRecFromPHIWithCasts() 5707 Rewrite = createAddRecFromPHIWithCastsImpl(SymbolicPHI); in createAddRecFromPHIWithCasts() local 5710 if (!Rewrite) { in createAddRecFromPHIWithCasts() 5716 return Rewrite; in createAddRecFromPHIWithCasts()
|
/freebsd/crypto/heimdal/appl/ftp/ |
H A D | ChangeLog | 7 * ftp/ftp.c: Rewrite sliding window code so it doesn't have a
|
/freebsd/contrib/libarchive/ |
H A D | NEWS | 135 Dec 1, 2013: Rewrite Zip write logic
|