/external/clang/test/SemaTemplate/ |
D | deduction.cpp | 38 struct Replace { struct 44 struct Replace<_1, Arg1, Arg2> { struct 49 struct Replace<_2, Arg1, Arg2> { argument 55 struct Replace<const T, Arg1, Arg2> { struct 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/clang/unittests/Tooling/ |
D | RefactoringTest.cpp | 47 Replacement Replace(createReplacement(Location, 4, "")); in TEST_F() local 48 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 55 Replacement Replace(createReplacement(Location, 17, "")); in TEST_F() local 56 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 63 Replacement Replace(createReplacement(Location, 0, "result")); in TEST_F() local 64 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 72 Replacement Replace(createReplacement(Location, 12, "x")); in TEST_F() local 73 EXPECT_TRUE(Replace.apply(Context.Rewrite)); in TEST_F() 94 Replacement Replace("nonexistent-file.cpp", 0, 1, ""); in TEST_F() local 95 EXPECT_FALSE(Replace.apply(Context.Rewrite)); in TEST_F() [all …]
|
/external/openfst/src/script/ |
D | replace.cc | 24 void Replace(const vector<pair<int64, const FstClass *> > &tuples, in Replace() function 40 REGISTER_FST_OPERATION(Replace, StdArc, ReplaceArgs); 41 REGISTER_FST_OPERATION(Replace, LogArc, ReplaceArgs); 42 REGISTER_FST_OPERATION(Replace, Log64Arc, ReplaceArgs);
|
/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/antlr/antlr-3.4/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()
|
D | CommonToken.cs | 205 txt = Regex.Replace(txt, "\n", "\\\\n"); in ToString() 206 txt = Regex.Replace(txt, "\r", "\\\\r"); in ToString() 207 txt = Regex.Replace(txt, "\t", "\\\\t"); in ToString()
|
/external/openfst/src/include/fst/ |
D | rational.h | 96 StateId Start() { return Replace()->Start(); } in Start() 98 Weight Final(StateId s) { return Replace()->Final(s); } in Final() 100 size_t NumArcs(StateId s) { return Replace()->NumArcs(s); } in NumArcs() 103 return Replace()->NumInputEpsilons(s); in NumInputEpsilons() 107 return Replace()->NumOutputEpsilons(s); in NumOutputEpsilons() 114 if ((mask & kError) && Replace()->Properties(kError, false)) in Properties() 242 ReplaceFst<A> *Replace() const { in Replace() function 281 GetImpl()->Replace()->InitStateIterator(data); in InitStateIterator() 285 GetImpl()->Replace()->InitArcIterator(s, data); in InitArcIterator() 313 : StateIterator< ReplaceFst<A> >(*(fst.GetImpl()->Replace())) {} in StateIterator() [all …]
|
/external/antlr/antlr-3.4/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/openfst/src/include/fst/script/ |
D | replace.h | 36 void Replace(ReplaceArgs *args) { in Replace() function 52 Replace(fst_tuples, ofst, args->arg3, args->arg4); in Replace() 55 void Replace(const vector<pair<int64, const FstClass *> > &tuples,
|
/external/antlr/antlr-3.4/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/antlr/antlr-3.4/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/antlr-3.4/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/antlr-3.4/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/chromium/chrome/browser/ui/views/tabs/ |
D | native_view_photobooth_win.cc | 61 Replace(NULL); in ~NativeViewPhotoboothWin() 65 void NativeViewPhotoboothWin::Replace(HWND new_hwnd) { in Replace() function in NativeViewPhotoboothWin 95 Replace(current_hwnd_); in PaintScreenshotIntoCanvas() 164 Replace(initial_hwnd); in CreateCaptureWindow()
|
D | native_view_photobooth_gtk.cc | 26 void NativeViewPhotoboothGtk::Replace(gfx::NativeView new_view) { in Replace() function in NativeViewPhotoboothGtk
|
D | native_view_photobooth.h | 37 virtual void Replace(gfx::NativeView new_view) = 0;
|
D | native_view_photobooth_gtk.h | 20 virtual void Replace(gfx::NativeView new_view) OVERRIDE;
|
/external/antlr/antlr-3.4/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() 110 return Regex.Replace( str, regex, replacement ); in replaceFirst()
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.pas | 1313 procedure Replace(const Index: Integer; const Text: IANTLRInterface); overload; 1314 procedure Replace(const Start, Stop: Integer; const Text: IANTLRInterface); overload; 1315 procedure Replace(const IndexT: IToken; const Text: IANTLRInterface); overload; 1316 procedure Replace(const Start, Stop: IToken; const Text: IANTLRInterface); overload; 1317 procedure Replace(const ProgramName: String; const Start, Stop: Integer; 1319 procedure Replace(const ProgramName: String; const Start, Stop: IToken; 1321 procedure Replace(const Index: Integer; const Text: String); overload; 1322 procedure Replace(const Start, Stop: Integer; const Text: String); overload; 1323 procedure Replace(const IndexT: IToken; const Text: String); overload; 1324 procedure Replace(const Start, Stop: IToken; const Text: String); overload; [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
D | StringExtensions.cs | 109 return System.Text.RegularExpressions.Regex.Replace( str, regex, newValue ); in replaceAll() 114 return System.Text.RegularExpressions.Regex.Replace( str, regex, replacement ); in replaceFirst()
|
/external/chromium/third_party/libjingle/source/talk/site_scons/ |
D | talk.py | 469 env.Replace(**{field : value}) 482 env_64bit.Replace(OBJSUFFIX = '64' + env_64bit['OBJSUFFIX']) 483 env_64bit.Replace(SHOBJSUFFIX = '64' + env_64bit['SHOBJSUFFIX']) 495 env_64bit.Replace(LIBS = libs)
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
D | DebugEventSocketProxy.cs | 437 txt = txt.Replace( "%", "%25" ); // escape all escape char ;) in EscapeNewlines() 438 txt = txt.Replace( "\n", "%0A" ); // escape \n in EscapeNewlines() 439 txt = txt.Replace( "\r", "%0D" ); // escape \r in EscapeNewlines()
|