/external/clang/test/SemaTemplate/ |
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 68 typedef TT<typename Replace<T1, Arg1, Arg2>::type, 69 typename Replace<T2, Arg1, Arg2>::type> type; argument [all …]
|
/external/capstone/bindings/vb6/ |
D | mMisc.bas | 56 str = Replace(Trim(str), "0x", "") 57 str = Replace(str, " ", "") 58 str = Replace(str, "`", "") 180 str = Replace(hexstr, vbCr, Empty) 181 str = Replace(str, vbLf, Empty) 182 str = Replace(str, vbTab, Empty) 183 str = Replace(str, Chr(0), Empty) 184 str = Replace(str, "{", Empty) 185 str = Replace(str, "}", Empty) 186 str = Replace(str, ";", Empty) [all …]
|
/external/pdfium/core/fxcrt/xml/ |
D | cfx_xmlnode.cpp | 27 ret.Replace(L"&", L"&"); in EncodeEntities() 28 ret.Replace(L"<", L"<"); in EncodeEntities() 29 ret.Replace(L">", L">"); in EncodeEntities() 30 ret.Replace(L"\'", L"'"); in EncodeEntities() 31 ret.Replace(L"\"", L"""); in EncodeEntities()
|
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/ |
D | ZipExtractorTask.java | 43 private static enum Replace { enum in ZipExtractorTask 177 Replace answer = showDialog(entry.getName()); in unzip() 217 private Replace showDialog(final String name) { in showDialog() 218 final FutureResult<Replace> mResult = new FutureResult<Replace>(); in showDialog() 230 Replace result = Replace.SKIPALL; in showDialog() 233 result = Replace.YES; in showDialog() 236 result = Replace.NO; in showDialog() 239 result = Replace.YESTOALL; in showDialog() 253 mResult.set(Replace.SKIPALL); in showDialog()
|
/external/swiftshader/third_party/subzero/unittest/ |
D | IceParseInstsTest.cpp | 154 NaClMungedBitcode::Replace, in TEST() 169 NaClMungedBitcode::Replace, in TEST() 190 NaClMungedBitcode::Replace, in TEST() 279 NaClMungedBitcode::Replace, in TEST() 298 NaClMungedBitcode::Replace, in TEST() 317 NaClMungedBitcode::Replace, in TEST() 336 NaClMungedBitcode::Replace, in TEST() 432 NaClMungedBitcode::Replace, in TEST() 451 NaClMungedBitcode::Replace, in TEST() 466 NaClMungedBitcode::Replace, in TEST() [all …]
|
/external/clang/unittests/Tooling/ |
D | RefactoringTest.cpp | 48 Replacement Replace(createReplacement(Location, 4, "")); in TEST_F() local 49 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 56 Replacement Replace(createReplacement(Location, 17, "")); in TEST_F() local 57 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 64 Replacement Replace(createReplacement(Location, 0, "result")); in TEST_F() local 65 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 73 Replacement Replace(createReplacement(Location, 12, "x")); in TEST_F() local 74 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 95 Replacement Replace("nonexistent-file.cpp", 0, 1, ""); in TEST_F() local 96 EXPECT_FALSE(Replace.apply(Context.Rewrite)); in TEST_F() [all …]
|
/external/clang/lib/Tooling/ |
D | RefactoringCallbacks.cpp | 20 return Replace; in getReplacements() 43 Replace.insert(tooling::Replacement( in run() 58 Replace.insert(replaceStmtWithStmt( in run() 71 Replace.insert(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body)); in run() 75 Replace.insert(replaceStmtWithText(*Result.SourceManager, *Node, "")); in run()
|
/external/lzma/CPP/7zip/Archive/Common/ |
D | ItemNameUtils.cpp | 17 name.Replace(kOsPathSepar, kUnixPathSepar); in ReplaceSlashes_OsToUnix() 28 newName.Replace(kUnixPathSepar, kOsPathSepar); in GetOsPath() 52 name.Replace(kUnixPathSepar, kOsPathSepar); in ReplaceToOsSlashes_Remove_TailSlash() 83 newName.Replace(L'\\', WCHAR_PATH_SEPARATOR); in WinPathToOsPath()
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | deduction.cpp | 39 struct Replace { struct 45 struct Replace<_1, Arg1, Arg2> { argument 50 struct Replace<_2, Arg1, Arg2> { struct 56 struct Replace<const T, Arg1, Arg2> { argument 57 typedef typename Replace<T, Arg1, Arg2>::type const type; argument 62 struct Replace<TT<T1>, Arg1, Arg2> { struct 63 typedef TT<typename Replace<T1, Arg1, Arg2>::type> type; argument 68 struct Replace<TT<T1, T2>, Arg1, Arg2> { struct 69 typedef TT<typename Replace<T1, Arg1, Arg2>::type, 70 typename Replace<T2, Arg1, Arg2>::type> type; argument [all …]
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | TokenRewriteStream.cs | 275 public virtual void Replace(int index, object text) { in Replace() method in Antlr.Runtime.TokenRewriteStream 276 Replace(DEFAULT_PROGRAM_NAME, index, index, text); in Replace() 279 public virtual void Replace(int from, int to, object text) { in Replace() method in Antlr.Runtime.TokenRewriteStream 280 Replace(DEFAULT_PROGRAM_NAME, from, to, text); in Replace() 283 public virtual void Replace(IToken indexT, object text) { in Replace() method in Antlr.Runtime.TokenRewriteStream 284 Replace(DEFAULT_PROGRAM_NAME, indexT, indexT, text); in Replace() 287 public virtual void Replace(IToken from, IToken to, object text) { in Replace() method in Antlr.Runtime.TokenRewriteStream 288 Replace(DEFAULT_PROGRAM_NAME, from, to, text); in Replace() 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 [all …]
|
D | ClassicToken.cs | 165 txt = txt.Replace("\n", "\\\\n"); in ToString() 166 txt = txt.Replace("\r", "\\\\r"); in ToString() 167 txt = txt.Replace("\t", "\\\\t"); in ToString()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | TokenRewriteStream.cs | 312 public virtual void Replace( int index, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream 314 Replace( DEFAULT_PROGRAM_NAME, index, index, text ); in Replace() 317 public virtual void Replace( int from, int to, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream 319 Replace( DEFAULT_PROGRAM_NAME, from, to, text ); in Replace() 322 public virtual void Replace( IToken indexT, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream 324 Replace( DEFAULT_PROGRAM_NAME, indexT, indexT, text ); in Replace() 327 public virtual void Replace( IToken from, IToken to, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream 329 Replace( DEFAULT_PROGRAM_NAME, from, to, text ); in Replace() 332 public virtual void Replace( string programName, int from, int to, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream 344 public virtual void Replace( string programName, IToken from, IToken to, object text ) in Replace() method in Antlr.Runtime.TokenRewriteStream [all …]
|
D | ClassicToken.cs | 201 txt = txt.Replace( "\n", "\\\\n" ); in ToString() 202 txt = txt.Replace( "\r", "\\\\r" ); in ToString() 203 txt = txt.Replace( "\t", "\\\\t" ); in ToString()
|
D | CommonToken.cs | 242 txt = Regex.Replace( txt, "\n", "\\\\n" ); in ToString() 243 txt = Regex.Replace( txt, "\r", "\\\\r" ); in ToString() 244 txt = Regex.Replace( txt, "\t", "\\\\t" ); in ToString()
|
/external/rust/crates/pin-project/tests/ui/pin_project/ |
D | visibility.rs | 11 pub struct Replace(()); struct 26 pub use crate::pub_::{Default, Replace}; 41 pub(crate) struct Replace(()); struct
|
D | import_unnamed.rs | 11 pub struct Replace(()); struct 27 pub use crate::pub_::{Default, Replace};
|
/external/antlr/runtime/Ruby/lib/antlr3/streams/ |
D | rewrite.rb | 127 class Replace < RewriteOperation class in ANTLR3.TokenRewriteStream 165 class Delete < Replace 183 op = Replace.new( @stream, range, text ) 220 when Replace 227 when Replace 245 when Replace
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | DotTreeGenerator.cs | 204 text = System.Text.RegularExpressions.Regex.Replace( text, "\"", "\\\\\"" ); in FixString() 205 text = System.Text.RegularExpressions.Regex.Replace( text, "\\t", " " ); in FixString() 206 text = System.Text.RegularExpressions.Regex.Replace( text, "\\n", "\\\\n" ); in FixString() 207 text = System.Text.RegularExpressions.Regex.Replace( text, "\\r", "\\\\r" ); in FixString()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/ |
D | DOTTreeGenerator.cs | 187 text = System.Text.RegularExpressions.Regex.Replace(text, "\"", "\\\\\""); in FixString() 188 text = System.Text.RegularExpressions.Regex.Replace(text, "\\t", " "); in FixString() 189 text = System.Text.RegularExpressions.Regex.Replace(text, "\\n", "\\\\n"); in FixString() 190 text = System.Text.RegularExpressions.Regex.Replace(text, "\\r", "\\\\r"); in FixString()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | DotTreeGenerator.cs | 204 text = System.Text.RegularExpressions.Regex.Replace( text, "\"", "\\\\\"" ); in FixString() 205 text = System.Text.RegularExpressions.Regex.Replace( text, "\\t", " " ); in FixString() 206 text = System.Text.RegularExpressions.Regex.Replace( text, "\\n", "\\\\n" ); in FixString() 207 text = System.Text.RegularExpressions.Regex.Replace( text, "\\r", "\\\\r" ); in FixString()
|
/external/rust/crates/csv/ |
D | ISSUE_TEMPLATE.md | 8 Replace this text with the version. (The version can be found in your 13 Replace this text with a description. 33 Replace this text with the output of the program. 37 Replace this text with the expected or desired output of the program.
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
D | StringExtensions.cs | 99 return str.Replace(oldValue, newValue); in replace() 105 return Regex.Replace( str, regex, newValue ); in replaceAll() 111 return Regex.Replace( str, regex, replacement ); in replaceFirst()
|
/external/llvm-project/clang/lib/Tooling/ |
D | RefactoringCallbacks.cpp | 24 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()
|
/external/llvm-project/clang/unittests/Tooling/ |
D | RefactoringTest.cpp | 39 Replacement Replace(createReplacement(Location, 4, "")); in TEST_F() local 40 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 47 Replacement Replace(createReplacement(Location, 17, "")); in TEST_F() local 48 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 55 Replacement Replace(createReplacement(Location, 0, "result")); in TEST_F() local 56 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 64 Replacement Replace(createReplacement(Location, 12, "x")); in TEST_F() local 65 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 86 Replacement Replace("nonexistent-file.cpp", 0, 1, ""); in TEST_F() local 87 EXPECT_FALSE(Replace.apply(Context.Rewrite)); in TEST_F() [all …]
|
/external/llvm-project/llvm/test/tools/llvm-ar/ |
D | replace-update.test | 20 ## Replace single member with newer file: 37 ## Replace new single member with older file: 45 ## Replace multiple members with newer files: 62 ## Replace newer members with multiple older files: 70 ## Replace same member with newer files: 89 ## Replace multiple members with an older file and a newer file: 98 ## Replace same member with an older file and a newer file:
|