/aosp_15_r20/external/clang/test/SemaTemplate/ |
H A D | deduction.cpp | 38 struct Replace { struct 44 struct Replace<_1, Arg1, Arg2> { argument 49 struct Replace<_2, Arg1, Arg2> { argument 55 struct Replace<const T, Arg1, Arg2> { argument 56 typedef typename Replace<T, Arg1, Arg2>::type const type; argument 61 struct Replace<TT<T1>, Arg1, Arg2> { struct 62 typedef TT<typename Replace<T1, Arg1, Arg2>::type> type; argument 67 struct Replace<TT<T1, T2>, Arg1, Arg2> { struct 69 typename Replace<T2, Arg1, Arg2>::type> type; argument 75 struct Replace<TT<T1, _2>, Arg1, Arg2> { struct [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/strings/ |
D | replace.go | 22 Replace(s string) string methodSpec 95 func (r *Replacer) Replace(s string) string { func 330 func (r *genericReplacer) Replace(s string) string { func 389 func (r *singleStringReplacer) Replace(s string) string { func 440 func (r *byteReplacer) Replace(s string) string { func 510 func (r *byteStringReplacer) Replace(s string) string { func
|
/aosp_15_r20/external/clang/unittests/Tooling/ |
H A D | RefactoringTest.cpp | 48 Replacement Replace(createReplacement(Location, 4, "")); in TEST_F() local 56 Replacement Replace(createReplacement(Location, 17, "")); in TEST_F() local 64 Replacement Replace(createReplacement(Location, 0, "result")); in TEST_F() local 73 Replacement Replace(createReplacement(Location, 12, "x")); in TEST_F() local 95 Replacement Replace("nonexistent-file.cpp", 0, 1, ""); in TEST_F() local 100 Replacement Replace("/path/to/file.cpp", 0, 1, ""); in TEST_F() local 361 void expectReplacementAt(const Replacement &Replace, in expectReplacementAt() 377 Replacement Replace; member in clang::tooling::ClassDeclXVisitor 400 Replacement Replace; member in clang::tooling::CallToFVisitor 430 Replacement Replace; member in clang::tooling::NestedNameSpecifierAVisitor
|
/aosp_15_r20/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
H A D | TokenRewriteStream.cs | 275 public virtual void Replace(int index, object text) { in Replace() method in Antlr.Runtime.TokenRewriteStream 279 public virtual void Replace(int from, int to, object text) { in Replace() method in Antlr.Runtime.TokenRewriteStream 283 public virtual void Replace(IToken indexT, object text) { in Replace() method in Antlr.Runtime.TokenRewriteStream 287 public virtual void Replace(IToken from, IToken to, object text) { in Replace() method in Antlr.Runtime.TokenRewriteStream 291 public virtual void Replace(string programName, int from, int to, object text) { in Replace() method in Antlr.Runtime.TokenRewriteStream 301 public virtual void Replace(string programName, IToken from, IToken to, object text) { in Replace() method in Antlr.Runtime.TokenRewriteStream
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/mod/modfile/ |
D | rule.go | 44 Replace []*Replace member 83 type Replace struct { struct 84 Old module.Version 85 New module.Version 86 Syntax *Line 1482 func addReplace(syntax *FileSyntax, replace *[]*Replace, oldPath, oldVers, newPath, newVers string)… 1611 func removeDups(syntax *FileSyntax, exclude *[]*Exclude, replace *[]*Replace) {
|
/aosp_15_r20/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/ |
H A D | Antlr.Runtime.pas | 1313 procedure Replace(const Index: Integer; const Text: IANTLRInterface); overload; procedure 1314 procedure Replace(const Start, Stop: Integer; const Text: IANTLRInterface); overload; procedure 1315 procedure Replace(const IndexT: IToken; const Text: IANTLRInterface); overload; procedure 1316 procedure Replace(const Start, Stop: IToken; const Text: IANTLRInterface); overload; procedure 1317 procedure Replace(const ProgramName: String; const Start, Stop: Integer; procedure 1319 procedure Replace(const ProgramName: String; const Start, Stop: IToken; procedure 1321 procedure Replace(const Index: Integer; const Text: String); overload; procedure 1322 procedure Replace(const Start, Stop: Integer; const Text: String); overload; procedure 1323 procedure Replace(const IndexT: IToken; const Text: String); overload; procedure 1324 procedure Replace(const Start, Stop: IToken; const Text: String); overload; procedure [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/pin-project/tests/ui/pin_project/ |
D | visibility.rs | 11 pub struct Replace(()); struct 41 pub(crate) struct Replace(()); struct
|
D | import_unnamed.rs | 11 pub struct Replace(()); struct
|
/aosp_15_r20/external/cronet/base/containers/ |
H A D | intrusive_heap.h | 447 const_iterator Replace(size_type pos, const T& element) { in Replace() function 450 const_iterator Replace(size_type pos, T&& element) { in Replace() function 456 const_iterator Replace(P pos, const T& element) { in Replace() function 460 const_iterator Replace(P pos, T&& element) { in Replace() function
|
/aosp_15_r20/external/lzma/CPP/Common/ |
H A D | MyString.cpp | 900 void AString::Replace(char oldChar, char newChar) throw() in Replace() function in AString 919 void AString::Replace(const AString &oldString, const AString &newString) in Replace() function in AString 1538 void UString::Replace(wchar_t oldChar, wchar_t newChar) throw() in Replace() function in UString 1557 void UString::Replace(const UString &oldString, const UString &newString) in Replace() function in UString
|
/aosp_15_r20/system/core/fastboot/ |
H A D | vendor_boot_img_utils.cpp | 51 [[nodiscard]] Result<void> Replace(uint32_t old_num_bytes, const std::string& new_data) { in Replace() function in __anon932a32300111::DataUpdater 54 [[nodiscard]] Result<void> Replace(uint32_t old_num_bytes, const void* new_data, in Replace() function in __anon932a32300111::DataUpdater
|
/aosp_15_r20/external/clang/lib/Tooling/Core/ |
H A D | Replacement.cpp | 271 Replacement Replace("<stdin>", I->getOffset(), I->getLength(), in applyAllReplacements() local 433 for (const auto &Replace : Replaces) { in groupReplacementsByFile() local
|
/aosp_15_r20/libcore/ojluni/src/test/java/lang/StringBuffer/ |
H A D | Replace.java | 33 public class Replace { class
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/algorithm/string/example/ |
D | replace_example.cpp | 33 const iterator_range<string::const_iterator>& Replace ) in upcase_formatter()
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/jit/ |
H A D | shape_inference_helpers.cc | 52 Status BackEdgeHelper::Replace() { in Replace() function in tensorflow::BackEdgeHelper
|
/aosp_15_r20/external/pdfium/core/fxge/dib/ |
H A D | cfx_bitmapstorer.cpp | 25 void CFX_BitmapStorer::Replace(RetainPtr<CFX_DIBitmap>&& pBitmap) { in Replace() function in CFX_BitmapStorer
|
/aosp_15_r20/libcore/ojluni/src/test/java/lang/String/CompactString/ |
H A D | Replace.java | 39 public class Replace extends CompactString { class
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/lldb/Utility/ |
D | FileSpecList.h | 187 bool Replace(size_t idx, const FileSpec &file) { in Replace() function
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/ |
H A D | ExpandLargeDivRem.cpp | 57 SmallVector<BinaryOperator *, 4> Replace; in runImpl() local
|
/aosp_15_r20/system/extras/simpleperf/ |
H A D | RegEx.cpp | 56 std::optional<std::string> Replace(const std::string& s, in Replace() function in simpleperf::RegExImpl
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/internal/edit/ |
D | edit.go | 59 func (b *Buffer) Replace(start, end int, new string) { func
|
/aosp_15_r20/external/bazelbuild-rules_go/go/tools/builders/ |
H A D | edit.go | 61 func (b *Buffer) Replace(start, end int, new string) { func
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/Utility/ |
D | FileSpecList.h | 222 bool Replace(size_t idx, const FileSpec &file) { in Replace() function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/lldb/Utility/ |
D | FileSpecList.h | 222 bool Replace(size_t idx, const FileSpec &file) { in Replace() function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/lldb/Utility/ |
D | FileSpecList.h | 222 bool Replace(size_t idx, const FileSpec &file) { in Replace() function
|