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

1 2

  /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_gtk.cc 26 void NativeViewPhotoboothGtk::Replace(gfx::NativeView new_view) {
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/chromium_org/remoting/host/setup/
oauth_helper_unittest.cc 11 std::string Replace(const std::string& s, const std::string& old_substr,
65 url = Replace(url, "https:", "http");
71 url = Replace(url, "google", "goggle");
  /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/chromium_org/chrome/browser/ui/views/tabs/
native_view_photobooth_win.cc 60 Replace(NULL);
64 void NativeViewPhotoboothWin::Replace(HWND new_hwnd) {
91 // us until someone calls Replace(NULL).
94 Replace(current_hwnd_);
164 Replace(initial_hwnd);
  /external/clang/include/clang/Tooling/
RefactoringCallbacks.h 13 // subtree match on the AST and then replace the corresponding source code
25 // This will replace all integer literals with "42".
47 Replacements Replace;
50 /// \brief Replace the text of the statement bound to \c FromId with the text in
62 /// \brief Replace the text of the statement bound to \c FromId with the text of
74 /// \brief Replace an if-statement bound to \c Id with the outdented text of its
Refactoring.h 192 Replacements Replace;
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter.h 48 // phonenumberutil.cc. Consume(), Match() and Replace() methods must be
134 virtual bool Replace(string* string_to_process,
138 // Helper methods calling the Replace method with the right arguments.
139 inline bool Replace(string* string_to_process,
141 return Replace(string_to_process, false, replacement_string);
146 return Replace(string_to_process, true, replacement_string);
regexp_adapter_re2.cc 87 // escaped and that we need to retain it. To do this, we replace pairs of
133 virtual bool Replace(string* string_to_process,
143 return RE2::Replace(string_to_process, utf8_regexp_,
regexp_adapter_icu.cc 179 bool Replace(string* string_to_process,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 61 The three subclasses of RewriteOperation, InsertBefore, Delete, and Replace,
118 =begin rdoc ANTLR3::TokenRewriteStream::Replace
127 class Replace < RewriteOperation
129 @operation_name = 'replace'.freeze
165 class Delete < Replace
180 def replace( *range_arguments ) method in class:ANTLR3.RewriteProgram
183 op = Replace.new( @stream, range, text )
220 when Replace
227 when Replace
245 when Replace
408 def replace( *args ) method
    [all...]
  /external/chromium_org/ppapi/generators/
idl_propertynode.py 71 def Replace(self, text):
83 out += self.Replace(str(val))
136 found = node.Replace(text)
  /external/chromium_org/tools/grit/grit/gather/
rc.py 50 def Replace(match):
52 return _NEED_ESCAPE.sub(Replace, text)
57 def Replace(match):
59 return _NEED_UNESCAPE.sub(Replace, text)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
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...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
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/chromium/chrome/browser/notifications/
notification_ui_manager.cc 36 void Replace(const Notification& new_notification) {
193 (*iter)->Replace(notification);
  /external/chromium_org/chrome/browser/notifications/
notification_ui_manager_impl.cc 37 void Replace(const Notification& new_notification) {
92 (*iter)->Replace(notification);
  /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/include/fst/extensions/pdt/
replace.h 0 // replace.h
19 // Recursively replace Fst arcs with other Fst(s) returning a PDT.
28 #include <fst/replace.h>
45 // identical to that in fst/lib/replace.h. The result is a PDT
51 void Replace(const vector<pair<typename Arc::Label,
71 // Queue of non-terminals to replace
73 // Map of non-terminals to replace to count
78 // PDT state corr. to ith replace FST start state.
80 // PDT state, weight pairs corr. to ith replace FST final state & weights.
  /external/chromium_org/chrome/browser/plugins/
plugin_infobar_delegates.cc 300 PluginInstallerInfoBarDelegate::Replace(
331 void PluginInstallerInfoBarDelegate::Replace(
440 Replace(this, installer(), plugin_metadata_->Clone(), new_install_, message);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 72 void Replace(Function *Fun);
222 void R600KernelParameters::Replace(Function* Fun) {
432 Replace(&F);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 54 namespace Replace {
  /external/clang/unittests/Tooling/
RefactoringTest.cpp 47 Replacement Replace(createReplacement(Location, 4, ""));
48 EXPECT_TRUE(Replace.apply(Context.Rewrite));
55 Replacement Replace(createReplacement(Location, 17, ""));
56 EXPECT_TRUE(Replace.apply(Context.Rewrite));
63 Replacement Replace(createReplacement(Location, 0, "result"));
64 EXPECT_TRUE(Replace.apply(Context.Rewrite));
72 Replacement Replace(createReplacement(Location, 12, "x"));
73 EXPECT_TRUE(Replace.apply(Context.Rewrite));
94 Replacement Replace("nonexistent-file.cpp", 0, 1, "");
95 EXPECT_FALSE(Replace.apply(Context.Rewrite))
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 72 void Replace(Function *Fun);
222 void R600KernelParameters::Replace(Function* Fun) {
432 Replace(&F);

Completed in 910 milliseconds

1 2