Home
last modified time | relevance | path

Searched refs:Replace (Results 1 – 25 of 106) sorted by relevance

12345

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandLargeDivRem.cpp58 SmallVectorImpl<BinaryOperator *> &Replace) { in scalarize() argument
72 Replace.push_back(NewBO); in scalarize()
81 SmallVector<BinaryOperator *, 4> Replace; in runImpl() local
114 Replace.push_back(&cast<BinaryOperator>(I)); in runImpl()
125 scalarize(BO, Replace); in runImpl()
128 if (Replace.empty()) in runImpl()
131 while (!Replace.empty()) { in runImpl()
132 BinaryOperator *I = Replace.pop_back_val(); in runImpl()
H A DExpandLargeFpConvert.cpp573 static void scalarize(Instruction *I, SmallVectorImpl<Instruction *> &Replace) { in scalarize() argument
586 Replace.push_back(cast<Instruction>(Cast)); in scalarize()
594 SmallVector<Instruction *, 4> Replace; in runImpl() local
621 Replace.push_back(&I); in runImpl()
639 Replace.push_back(&I); in runImpl()
650 scalarize(I, Replace); in runImpl()
653 if (Replace.empty()) in runImpl()
656 while (!Replace.empty()) { in runImpl()
657 Instruction *I = Replace.pop_back_val(); in runImpl()
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp24 return Replace; in getReplacements()
91 auto Err = Replace.add(tooling::Replacement( in run()
111 auto Err = Replace.add( in run()
132 Replace.add(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body)); in run()
143 Replace.add(replaceStmtWithText(*Result.SourceManager, *Node, "")); in run()
231 llvm::Error Err = Replace.add(Replacement); in run()
/freebsd/contrib/sqlite3/
H A DReplace.cs44 namespace Replace namespace
83 internal static class Replace class
197 string outputLine = regEx.Replace(inputLine, replacement); in Main()
H A DMakefile.am15 EXTRA_DIST = sqlite3.1 tea Makefile.msc sqlite3.rc sqlite3rc.h README.txt Replace.cs Makefile.fallb…
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DRenamingAction.cpp172 for (const auto &Replace : AtomicChange.getReplacements()) { in convertChangesToFileReplacements() local
174 (*FileToReplaces)[std::string(Replace.getFilePath())].add(Replace); in convertChangesToFileReplacements()
176 llvm::errs() << "Renaming failed in " << Replace.getFilePath() << "! " in convertChangesToFileReplacements()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DPathMappingList.h75 bool Replace(llvm::StringRef path, llvm::StringRef replacement, bool notify);
77 bool Replace(llvm::StringRef path, llvm::StringRef replacement,
/freebsd/sys/contrib/libsodium/msvc-scripts/
H A Drep.vbs10 WScript.Echo rxp.Replace(inp, patparts(2))
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp1189 Constant *Replace = in rewriteWithNewAddressSpaces() local
1191 if (C != Replace) { in rewriteWithNewAddressSpaces()
1192 LLVM_DEBUG(dbgs() << "Inserting replacement const cast: " << Replace in rewriteWithNewAddressSpaces()
1193 << ": " << *Replace << '\n'); in rewriteWithNewAddressSpaces()
1198 I->replaceUsesOfWith(C, Replace); in rewriteWithNewAddressSpaces()
1204 VMap[C] = Replace; in rewriteWithNewAddressSpaces()
1218 V = Replace; in rewriteWithNewAddressSpaces()
/freebsd/lib/libc/net/
H A Dhosts5 # share this file. Replace 'my.domain' below with the domainname of your
/freebsd/contrib/tcsh/nls/ja/
H A Dset3117 115 Replace just-yanked text with yank from earlier kill
/freebsd/contrib/tcsh/nls/greek/
H A Dset3117 115 Replace just-yanked text with yank from earlier kill
/freebsd/contrib/less/
H A DFREEBSD-upgrade21 17. Replace your src/contrib/less with the merged copy, and do a ``make
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h46 Replacements Replace;
/freebsd/share/examples/pf/
H A Dackpri13 # Replace lo0 with your real external interface
/freebsd/cddl/usr.sbin/zfsd/
H A Dcase_file.h369 bool Replace(const char* vdev_type, const char* path, bool isspare);
H A Dcase_file.cc381 return (Replace(VDEV_TYPE_DISK, devPath.c_str(), /*isspare*/false)); in ReEvaluate()
611 return (Replace(vdev_type, devPath, /*isspare*/true)); in ActivateSpare()
1125 CaseFile::Replace(const char* vdev_type, const char* path, bool isspare) { in Replace() function in CaseFile
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPathMappingList.cpp112 bool PathMappingList::Replace(llvm::StringRef path, llvm::StringRef replacement, in Replace() function in PathMappingList
265 bool PathMappingList::Replace(llvm::StringRef path, llvm::StringRef new_path, in Replace() function in PathMappingList
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp2371 auto Replace = [&](SourceLocation Start, unsigned Length, in requoteJSStringLiteral() local
2382 Replace(Start, 1, IsSingle ? "'" : "\""); in requoteJSStringLiteral()
2383 Replace(FormatTok->Tok.getEndLoc().getLocWithOffset(-1), 1, in requoteJSStringLiteral()
2396 Replace(Start.getLocWithOffset(i), 1, ""); in requoteJSStringLiteral()
2405 Replace(Start.getLocWithOffset(i), 0, "\\"); in requoteJSStringLiteral()
3521 inline bool isHeaderInsertion(const tooling::Replacement &Replace) { in isHeaderInsertion() argument
3522 return Replace.getOffset() == UINT_MAX && Replace.getLength() == 0 && in isHeaderInsertion()
3524 Replace.getReplacementText()); in isHeaderInsertion()
3527 inline bool isHeaderDeletion(const tooling::Replacement &Replace) { in isHeaderDeletion() argument
3528 return Replace.getOffset() == UINT_MAX && Replace.getLength() == 1; in isHeaderDeletion()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpecList.h222 bool Replace(size_t idx, const FileSpec &file) { in Replace() function
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp504 llvm::StringRef Replace; member in __anon36efa97a0111::TypeSubstitutor
508 llvm::StringRef Replace) { in reset() argument
511 this->Replace = Replace; in reset()
515 trySubstitute(Search, Replace); in parseType()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileSpecList.cpp69 m_current_value.Replace(idx, file); in SetValueFromString()
H A DOptionValuePathMappings.cpp70 if (!m_path_mappings.Replace(orginal_path, replace_path, idx, in SetValueFromString()
/freebsd/crypto/heimdal/doc/
H A Dmigration.texi29 Replace <NNN> with whatever source you have, like krb4-db or krb4-dump.
/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/
H A DREADME.md78 Replace the use of ``std::map<std::string, ValueType>`` with ``StringMap``.
106 Replace the ``std::set`` usage for ``DeducedScopes``, ``UnresolvedScopes`` and

12345