/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/ |
H A D | AtomicChange.cpp | 33 Replaces(E.getReplacements().begin(), E.getReplacements().end()) {} in NormalizedAtomicChange() 45 std::vector<clang::tooling::Replacement> Replaces; member 61 Io.mapRequired("Replacements", Doc.Replaces); in mapping() 76 Io.mapRequired("Replacements", Keys->Replaces); in mapping() 109 const clang::tooling::Replacements &Replaces) { in getRangesForFormating() argument 118 for (const clang::tooling::Replacement &R : Replaces) { in getRangesForFormating() 181 // file path in all replacements and replaces them with \p FilePath. 185 Replacements Replaces; in combineReplacementsInChanges() local 188 if (auto Err = Replaces.add(Replacement( in combineReplacementsInChanges() 191 return Replaces; in combineReplacementsInChanges() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/ |
H A D | AVRFixupKinds.h | 48 /// Replaces the 8-bit immediate with another value. 51 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 54 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 57 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 60 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 64 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 67 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 70 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 73 /// Replaces the immediate operand of a 16-bit `Rd, K` instruction 77 /// Replaces th [all...] |
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Core/ |
H A D | Replacement.h | 222 explicit Replacements(const Replacement &R) { Replaces.insert(R); } in Replacements() 263 /// Merges \p Replaces into the current replacements. \p Replaces 265 [[nodiscard]] Replacements merge(const Replacements &Replaces) const; 275 unsigned size() const { return Replaces.size(); } in size() 277 void clear() { Replaces.clear(); } in clear() 279 bool empty() const { return Replaces.empty(); } in empty() 281 const_iterator begin() const { return Replaces.begin(); } in begin() 283 const_iterator end() const { return Replaces.end(); } in end() 285 const_reverse_iterator rbegin() const { return Replaces.rbegin(); } in rbegin() 287 const_reverse_iterator rend() const { return Replaces.rend(); } in rend() [all …]
|
/freebsd/sys/contrib/openzfs/contrib/debian/ |
H A D | control | 36 Replaces: libnvpair1, libnvpair3, libnvpair3linux 47 Replaces: libpam-zfs 62 Replaces: libuutil1, libuutil3, libuutil3linux 85 Replaces: libzfslinux-dev 103 Replaces: libzfs2, libzfs4, libzfs4linux, libzfs6linux 117 Replaces: libzfs2, libzfs4, libzfsbootenv1linux 131 Replaces: libzpool2, libzpool5, libzpool5linux, libzpool6linux 147 Replaces: python3-pyzfs 168 Replaces: pyzfs-doc 199 Replaces: spl-dkms, zfs-dkms [all …]
|
H A D | control.modules.in | 19 Replaces: zfs-modules-_KVERS_
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ |
H A D | AtomicChange.h | 85 /// Adds a replacement that replaces the given Range with 91 /// Adds a replacement that replaces range [Loc, Loc+Length) with 117 const Replacements &getReplacements() const { return Replaces; } in getReplacements() 119 Replacements &getReplacements() { return Replaces; } in getReplacements() 137 clang::tooling::Replacements Replaces); 145 tooling::Replacements Replaces; variable 176 /// This completely ignores the file path in each change and replaces them with
|
/freebsd/contrib/llvm-project/clang/tools/clang-format/ |
H A D | ClangFormat.cpp | 341 static void outputReplacementsXML(const Replacements &Replaces) { in outputReplacementsXML() argument 342 for (const auto &R : Replaces) { in outputReplacementsXML() 352 emitReplacementWarnings(const Replacements &Replaces, StringRef AssumedFileName, in emitReplacementWarnings() argument 354 if (Replaces.empty()) in emitReplacementWarnings() 364 for (const auto &R : Replaces) { in emitReplacementWarnings() 379 static void outputXML(const Replacements &Replaces, in outputXML() argument 395 outputReplacementsXML(Replaces); in outputXML() 490 Replacements Replaces = sortIncludes(*FormatStyle, Code->getBuffer(), Ranges, in format() local 496 auto Err = Replaces.add(tooling::Replacement( in format() 502 auto ChangedCode = tooling::applyAllReplacements(Code->getBuffer(), Replaces); in format() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86.h | 57 /// Return a pass that selectively replaces certain instructions (like add, 62 /// Return a pass that replaces equivalent slower instructions with faster 127 /// Return a Machine IR pass that selectively replaces 144 /// This pass replaces ret instructions with jmp's to __x86_return thunk.
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Coroutines/ |
H A D | CoroElide.h | 10 // This file declares a pass that replaces dynamic allocation of coroutine 11 // frames with alloca and replaces calls to llvm.coro.resume and
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | Format.cpp | 2347 // Replaces double/single-quoted string literal as appropriate, re-escaping 3069 // adding the necessary replacement to 'Replaces'. 'Includes' must be in strict 3078 StringRef Code, tooling::Replacements &Replaces, in sortCppIncludes() argument 3166 auto Err = Replaces.add(tooling::Replacement( in sortCppIncludes() 3179 tooling::Replacements &Replaces, in sortCppIncludes() argument 3267 Replaces, Cursor); in sortCppIncludes() 3283 sortCppIncludes(Style, IncludesInBlock, Ranges, FileName, Code, Replaces, in sortCppIncludes() 3286 return Replaces; in sortCppIncludes() 3307 // JavaImportGroups, then adding the necessary replacement to 'Replaces'. 3314 StringRef Code, tooling::Replacements &Replaces) { in sortJavaImports() argument [all …]
|
H A D | WhitespaceManager.h | 46 /// Replaces the whitespace in front of \p Tok. Only call once for 64 /// Inserts or replaces whitespace in the middle of a token. 115 // The kind of the token whose whitespace this change replaces, or in which 347 /// Fill \c Replaces with the replacements for all effective changes. 364 tooling::Replacements Replaces; variable
|
/freebsd/contrib/llvm-project/clang/include/clang/Rewrite/Core/ |
H A D | Rewriter.h | 155 /// ReplaceText - This method replaces a range of characters in the input 161 /// ReplaceText - This method replaces a range of characters in the input 168 /// ReplaceText - This method replaces a range of characters in the input 175 /// ReplaceText - This method replaces a range of characters in the input
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_CTX_set_cert_store.pod | 17 SSL_CTX_set_cert_store() sets/replaces the certificate verification storage 23 SSL_CTX_set1_cert_store() sets/replaces the certificate verification storage
|
H A D | X509V3_get_d2i.pod | 92 B<X509V3_ADD_REPLACE> replaces an existing extension. If the extension does 95 B<X509V3_ADD_REPLACE_EXISTING> replaces an existing extension. If the
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | varmod-subst.mk | 29 # The :S modifier replaces every first match per word. 34 # The :S modifier flag 'g' replaces every occurrence. 45 # The :S modifier with a '^' anchor replaces the whole word if that word is 62 # The :S modifier with a '$' anchor replaces at most one occurrence per word. 67 # The :S modifier with a '$' anchor replaces the whole word if that word is
|
H A D | varmod-loop.mk | 3 # Tests for the expression modifier ':@var@body@', which replaces each word of 85 # Var_Subst, which replaces each '$$' with a single '$'. 123 # which is different from the '.for' loop, which replaces ${var} with
|
H A D | deptgt-main.mk | 19 # This target is the first to be marked with '.MAIN', so it replaces the
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyReplacePhysRegs.cpp | 10 /// This file implements a pass that replaces physical registers with 15 /// once LLVM no longer needs these registers, and replaces them with virtual
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanTransforms.h | 30 /// Replaces the VPInstructions in \p Plan with corresponding 103 /// replaces all uses except the canonical IV increment of
|
/freebsd/share/doc/smm/03.fsck/ |
H A D | 3.t | 161 replaces the incorrect count in the summary information 171 replaces the incorrect count in the 232 replaces the incorrect stored link count by the actual link count.
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | SSL_CTX_set_cert_store.3 | 152 \&\fBSSL_CTX_set_cert_store()\fR sets/replaces the certificate verification storage 156 \&\fBSSL_CTX_set1_cert_store()\fR sets/replaces the certificate verification storage
|
/freebsd/contrib/ncurses/ncurses/tinfo/ |
H A D | strings.c | 105 * Replaces strcat into a fixed buffer, returning false on failure. 126 * Replaces strcpy into a fixed buffer, returning false on failure.
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | UnresolvedSet.h | 100 /// Replaces the given declaration with the new one, once. 110 /// Replaces the declaration at the given iterator with the new one,
|
/freebsd/sbin/devd/ |
H A D | devmatch.conf | 36 # it replaces the generic event with one of higher priority that
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_dispatch.h | 66 // replaces dispatch_private_info{32,64} structures and 108 // replaces dispatch_private_info{32,64} structures and 156 // replaces dispatch_shared_info{32,64} structures and 170 // replaces dispatch_shared_info structure and dispatch_shared_info_t type
|