Home
last modified time | relevance | path

Searched refs:Replacer (Results 1 – 8 of 8) sorted by relevance

/third_party/rust/crates/regex/src/
Dre_unicode.rs506 pub fn replace<'t, R: Replacer>( in replace()
520 pub fn replace_all<'t, R: Replacer>( in replace_all()
534 pub fn replacen<'t, R: Replacer>( in replacen()
1162 pub trait Replacer { interface
1215 impl<'a, R: Replacer + ?Sized + 'a> Replacer for ReplacerRef<'a, R> {
1224 impl<'a> Replacer for &'a str { impl
1234 impl<'a> Replacer for &'a String { impl
1244 impl Replacer for String {
1254 impl<'a> Replacer for Cow<'a, str> {
1264 impl<'a> Replacer for &'a Cow<'a, str> { impl
[all …]
Dre_bytes.rs457 pub fn replace<'t, R: Replacer>( in replace()
471 pub fn replace_all<'t, R: Replacer>( in replace_all()
485 pub fn replacen<'t, R: Replacer>( in replacen()
1111 pub trait Replacer { trait
1164 impl<'a, R: Replacer + ?Sized + 'a> Replacer for ReplacerRef<'a, R> {
1173 impl<'a> Replacer for &'a [u8] { impl
1183 impl<'a> Replacer for &'a Vec<u8> { impl
1193 impl Replacer for Vec<u8> {
1203 impl<'a> Replacer for Cow<'a, [u8]> {
1213 impl<'a> Replacer for &'a Cow<'a, [u8]> { impl
[all …]
Dlib.rs636 Locations, Match, Matches, NoExpand, Regex, Replacer, ReplacerRef, Split,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DSimplifyLibCalls.h109 function_ref<void(Instruction *, Value *)> Replacer; variable
142 function_ref<void(Instruction *, Value *)> Replacer =
/third_party/rust/crates/regex/
DCHANGELOG.md165 Add missing `Replacer` impls for `Vec<u8>`, `String`, `Cow`, etc.
225 Fix doc example for `Replacer::replace_append`.
552 Generalize impls of the `Replacer` trait.
916 * The `Replacer` trait has been completely overhauled. This should only
919 the `Replacer` trait, please consult the new documentation.
946 The `Replacer` trait has been changed to permit the caller to control
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DMemorySSA.cpp1792 bool MemorySSA::dominatesUse(const MemoryAccess *Replacer, in dominatesUse() argument
1795 return DT->dominates(Replacer->getBlock(), Replacee->getBlock()); in dominatesUse()
1802 !DT->dominates(Replacer->getBlock(), MP->getIncomingBlock(Arg))) in dominatesUse()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp3189 function_ref<void(Instruction *, Value *)> Replacer, in LibCallSimplifier() argument
3192 UnsafeFPShrink(false), Replacer(Replacer), Eraser(Eraser) {} in LibCallSimplifier()
3196 Replacer(I, With); in replaceAllUsesWith()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DCodeGenPrepare.cpp2677 UsesReplacer *Replacer = nullptr; member in __anone6c077230511::TypePromotionTransaction::InstructionRemover
2692 Replacer = new UsesReplacer(Inst, New); in InstructionRemover()
2701 ~InstructionRemover() override { delete Replacer; } in ~InstructionRemover()
2708 if (Replacer) in undo()
2709 Replacer->undo(); in undo()