HomeSort by relevance Sort by last modified time
    Searched refs:Replace (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/clang/test/SemaTemplate/
deduction.cpp 38 struct Replace {
44 struct Replace<_1, Arg1, Arg2> {
49 struct Replace<_2, Arg1, Arg2> {
55 struct Replace<const T, Arg1, Arg2> {
56 typedef typename Replace<T, Arg1, Arg2>::type const type;
61 struct Replace<TT<T1>, Arg1, Arg2> {
62 typedef TT<typename Replace<T1, Arg1, Arg2>::type> type;
67 struct Replace<TT<T1, T2>, Arg1, Arg2> {
68 typedef TT<typename Replace<T1, Arg1, Arg2>::type,
69 typename Replace<T2, Arg1, Arg2>::type> type
    [all...]
  /external/openfst/src/script/
replace.cc 19 #include <fst/script/replace.h>
24 void Replace(const vector<pair<int64, const FstClass *> > &tuples,
28 if (!ArcTypesMatch(*tuples[i].second, *tuples[i+1].second, "Replace")) {
33 if (!ArcTypesMatch(*tuples[0].second, *ofst, "Replace")) return;
37 Apply<Operation<ReplaceArgs> >("Replace", ofst->ArcType(), &args);
40 REGISTER_FST_OPERATION(Replace, StdArc, ReplaceArgs);
41 REGISTER_FST_OPERATION(Replace, LogArc, ReplaceArgs);
42 REGISTER_FST_OPERATION(Replace, Log64Arc, ReplaceArgs);
  /external/chromium/chrome/browser/ui/views/tabs/
native_view_photobooth.h 37 virtual void Replace(gfx::NativeView new_view) = 0;
native_view_photobooth_gtk.cc 26 void NativeViewPhotoboothGtk::Replace(gfx::NativeView new_view) {
native_view_photobooth_gtk.h 20 virtual void Replace(gfx::NativeView new_view) OVERRIDE;
native_view_photobooth_win.h 38 virtual void Replace(gfx::NativeView new_view) OVERRIDE;
native_view_photobooth_win.cc 61 Replace(NULL);
65 void NativeViewPhotoboothWin::Replace(HWND new_hwnd) {
92 // us until someone calls Replace(NULL).
95 Replace(current_hwnd_);
164 Replace(initial_hwnd);
  /external/openfst/src/include/fst/script/
replace.h 27 #include <fst/replace.h>
36 void Replace(ReplaceArgs *args) {
38 // pair<real label, real fst> that the real Replace will use
52 Replace(fst_tuples, ofst, args->arg3, args->arg4);
55 void Replace(const vector<pair<int64, const FstClass *> > &tuples,
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ClassicToken.cs 165 txt = txt.Replace("\n", "\\\\n");
166 txt = txt.Replace("\r", "\\\\r");
167 txt = txt.Replace("\t", "\\\\t");
TokenRewriteStream.cs 45 * You can insert stuff, replace, and delete chunks. Note that the
275 public virtual void Replace(int index, object text) {
276 Replace(DEFAULT_PROGRAM_NAME, index, index, text);
279 public virtual void Replace(int from, int to, object text) {
280 Replace(DEFAULT_PROGRAM_NAME, from, to, text);
283 public virtual void Replace(IToken indexT, object text) {
284 Replace(DEFAULT_PROGRAM_NAME, indexT, indexT, text);
287 public virtual void Replace(IToken from, IToken to, object text) {
288 Replace(DEFAULT_PROGRAM_NAME, from, to, text);
291 public virtual void Replace(string programName, int from, int to, object text)
    [all...]
CommonToken.cs 205 txt = Regex.Replace(txt, "\n", "\\\\n");
206 txt = Regex.Replace(txt, "\r", "\\\\r");
207 txt = Regex.Replace(txt, "\t", "\\\\t");
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ClassicToken.cs 201 txt = txt.Replace( "\n", "\\\\n" );
202 txt = txt.Replace( "\r", "\\\\r" );
203 txt = txt.Replace( "\t", "\\\\t" );
CommonToken.cs 242 txt = Regex.Replace( txt, "\n", "\\\\n" );
243 txt = Regex.Replace( txt, "\r", "\\\\r" );
244 txt = Regex.Replace( txt, "\t", "\\\\t" );
TokenRewriteStream.cs 48 * You can insert stuff, replace, and delete chunks. Note that the
312 public virtual void Replace( int index, object text )
314 Replace( DEFAULT_PROGRAM_NAME, index, index, text );
317 public virtual void Replace( int from, int to, object text )
319 Replace( DEFAULT_PROGRAM_NAME, from, to, text );
322 public virtual void Replace( IToken indexT, object text )
324 Replace( DEFAULT_PROGRAM_NAME, indexT, indexT, text );
327 public virtual void Replace( IToken from, IToken to, object text )
329 Replace( DEFAULT_PROGRAM_NAME, from, to, text );
332 public virtual void Replace( string programName, int from, int to, object text
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringExtensions.cs 97 public static string replace(this string str, char oldValue, char newValue) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
99 return str.Replace(oldValue, newValue);
105 return Regex.Replace( str, regex, newValue );
110 return Regex.Replace( str, regex, replacement );
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DotTreeGenerator.cs 204 text = System.Text.RegularExpressions.Regex.Replace( text, "\"", "\\\\\"" );
205 text = System.Text.RegularExpressions.Regex.Replace( text, "\\t", " " );
206 text = System.Text.RegularExpressions.Regex.Replace( text, "\\n", "\\\\n" );
207 text = System.Text.RegularExpressions.Regex.Replace( text, "\\r", "\\\\r" );
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
DOTTreeGenerator.cs 187 text = System.Text.RegularExpressions.Regex.Replace(text, "\"", "\\\\\"");
188 text = System.Text.RegularExpressions.Regex.Replace(text, "\\t", " ");
189 text = System.Text.RegularExpressions.Regex.Replace(text, "\\n", "\\\\n");
190 text = System.Text.RegularExpressions.Regex.Replace(text, "\\r", "\\\\r");
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DotTreeGenerator.cs 204 text = System.Text.RegularExpressions.Regex.Replace( text, "\"", "\\\\\"" );
205 text = System.Text.RegularExpressions.Regex.Replace( text, "\\t", " " );
206 text = System.Text.RegularExpressions.Regex.Replace( text, "\\n", "\\\\n" );
207 text = System.Text.RegularExpressions.Regex.Replace( text, "\\r", "\\\\r" );
  /external/skia/src/animator/
SkDisplayAdd.h 66 DECLARE_MEMBER_INFO(Replace);
  /external/openfst/src/include/fst/
rational.h 31 #include <fst/replace.h>
96 StateId Start() { return Replace()->Start(); }
98 Weight Final(StateId s) { return Replace()->Final(s); }
100 size_t NumArcs(StateId s) { return Replace()->NumArcs(s); }
103 return Replace()->NumInputEpsilons(s);
107 return Replace()->NumOutputEpsilons(s);
114 if ((mask & kError) && Replace()->Properties(kError, false))
242 ReplaceFst<A> *Replace() const {
281 GetImpl()->Replace()->InitStateIterator(data);
285 GetImpl()->Replace()->InitArcIterator(s, data)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringExtensions.cs 96 public static string replace( string str, char oldValue, char newValue ) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
109 return System.Text.RegularExpressions.Regex.Replace( str, regex, newValue );
114 return System.Text.RegularExpressions.Regex.Replace( str, regex, replacement );
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ST.stg 103 ((TokenRewriteStream)input.TokenStream).Replace(
108 ((TokenRewriteStream)input).Replace(
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ST.stg 80 ((TokenRewriteStream)input.TokenStream).Replace(
85 ((TokenRewriteStream)input).Replace(
  /external/openfst/src/bin/
fstreplace.cc 19 #include <fst/script/replace.h>
60 Replace(fst_tuples, &ofst, root, FLAGS_epsilon_on_replace);
  /cts/tests/tests/example/
Android.mk 19 # Replace "Example" with your name.

Completed in 1086 milliseconds

1 2 3 4