Searched defs:Replace (Results 1 - 25 of 44) sorted by relevance

12

/external/chromium/chrome/browser/ui/views/tabs/
H A Dnative_view_photobooth_gtk.cc26 void NativeViewPhotoboothGtk::Replace(gfx::NativeView new_view) { function in class:NativeViewPhotoboothGtk
H A Dnative_view_photobooth_win.cc61 Replace(NULL);
65 void NativeViewPhotoboothWin::Replace(HWND new_hwnd) { function in class:NativeViewPhotoboothWin
92 // us until someone calls Replace(NULL).
95 Replace(current_hwnd_);
164 Replace(initial_hwnd);
/external/chromium_org/remoting/host/setup/
H A Doauth_helper_unittest.cc11 std::string Replace(const std::string& s, const std::string& old_substr, function in namespace:__anon9788
65 url = Replace(url, "https:", "http");
71 url = Replace(url, "google", "goggle");
/external/openfst/src/include/fst/script/
H A Dreplace.h36 void Replace(ReplaceArgs *args) { function in namespace:fst::script
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/openfst/src/script/
H A Dreplace.cc24 void Replace(const vector<pair<int64, const FstClass *> > &tuples, function in namespace:fst::script
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/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h47 Replacements Replace; member in class:clang::tooling::RefactoringCallback
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
H A DRefactoring.h192 Replacements Replace; member in class:clang::tooling::RefactoringTool
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb61 The three subclasses of RewriteOperation, InsertBefore, Delete, and Replace,
118 =begin rdoc ANTLR3::TokenRewriteStream::Replace
127 class Replace < RewriteOperation class in class:ANTLR3
165 class Delete < Replace
183 op = Replace.new( @stream, range, text )
220 when Replace
227 when Replace
245 when Replace
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dnative_view_photobooth_win.cc60 Replace(NULL);
64 void NativeViewPhotoboothWin::Replace(HWND new_hwnd) { function in class:NativeViewPhotoboothWin
91 // us until someone calls Replace(NULL).
94 Replace(current_hwnd_);
164 Replace(initial_hwnd);
/external/chromium_org/ppapi/generators/
H A Didl_propertynode.py71 def Replace(self, text): member in class:IDLPropertyNode
83 out += self.Replace(str(val))
136 found = node.Replace(text)
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dregexp_adapter.h48 // 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, function in class:i18n::phonenumbers::RegExp
141 return Replace(string_to_process, false, replacement_string);
146 return Replace(string_to_process, true, replacement_string);
H A Dregexp_adapter_re2.cc133 virtual bool Replace(string* string_to_process, function in class:i18n::phonenumbers::RE2RegExp
143 return RE2::Replace(string_to_process, utf8_regexp_,
H A Dregexp_adapter_icu.cc179 bool Replace(string* string_to_process, function in class:i18n::phonenumbers::IcuRegExp
/external/chromium_org/tools/grit/grit/gather/
H A Drc.py50 def Replace(match): function in function:Section.Escape
52 return _NEED_ESCAPE.sub(Replace, text)
57 def Replace(match): function in function:Section.UnEscape
59 return _NEED_UNESCAPE.sub(Replace, text)
/external/chromium_org/chrome/browser/notifications/
H A Dnotification_ui_manager_impl.cc37 void Replace(const Notification& new_notification) { function in class:QueuedNotification
92 (*iter)->Replace(notification);
/external/clang/test/SemaTemplate/
H A Ddeduction.cpp38 struct Replace { struct
44 struct Replace<_1, Arg1, Arg2> { struct
49 struct Replace<_2, Arg1, Arg2> { struct
55 struct Replace<const T, Arg1, Arg2> { struct
56 typedef typename Replace<T, Arg1, Arg2>::type const type;
61 struct Replace<TT<T1>, Arg1, Arg2> { struct
62 typedef TT<typename Replace<T1, Arg1, Arg2>::type> type;
67 struct Replace<TT<T1, T2>, Arg1, Arg2> { struct
68 typedef TT<typename Replace<T1, Arg1, Arg2>::type,
69 typename Replace<T
75 struct Replace<TT<T1, _2>, Arg1, Arg2> { struct
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs275 public virtual void Replace(int index, object text) { method in class:Antlr.Runtime.TokenRewriteStream
276 Replace(DEFAULT_PROGRAM_NAME, index, index, text);
279 public virtual void Replace(int from, int to, object text) { method in class:Antlr.Runtime.TokenRewriteStream
280 Replace(DEFAULT_PROGRAM_NAME, from, to, text);
283 public virtual void Replace(IToken indexT, object text) { method in class:Antlr.Runtime.TokenRewriteStream
284 Replace(DEFAULT_PROGRAM_NAME, indexT, indexT, text);
287 public virtual void Replace(IToken from, IToken to, object text) { method in class:Antlr.Runtime.TokenRewriteStream
288 Replace(DEFAULT_PROGRAM_NAME, from, to, text);
291 public virtual void Replace(string programName, int from, int to, object text) { method in class:Antlr.Runtime.TokenRewriteStream
301 public virtual void Replace(strin method in class:Antlr.Runtime.TokenRewriteStream
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs312 public virtual void Replace( int index, object text ) method in class:Antlr.Runtime.TokenRewriteStream
314 Replace( DEFAULT_PROGRAM_NAME, index, index, text );
317 public virtual void Replace( int from, int to, object text ) method in class:Antlr.Runtime.TokenRewriteStream
319 Replace( DEFAULT_PROGRAM_NAME, from, to, text );
322 public virtual void Replace( IToken indexT, object text ) method in class:Antlr.Runtime.TokenRewriteStream
324 Replace( DEFAULT_PROGRAM_NAME, indexT, indexT, text );
327 public virtual void Replace( IToken from, IToken to, object text ) method in class:Antlr.Runtime.TokenRewriteStream
329 Replace( DEFAULT_PROGRAM_NAME, from, to, text );
332 public virtual void Replace( string programName, int from, int to, object text ) method in class:Antlr.Runtime.TokenRewriteStream
344 public virtual void Replace( strin method in class:Antlr.Runtime.TokenRewriteStream
[all...]
/external/chromium/chrome/browser/notifications/
H A Dnotification_ui_manager.cc36 void Replace(const Notification& new_notification) { function in class:QueuedNotification
193 (*iter)->Replace(notification);
/external/chromium_org/chrome/browser/plugins/
H A Dplugin_infobar_delegates.cc300 PluginInstallerInfoBarDelegate::Replace(
331 void PluginInstallerInfoBarDelegate::Replace( function in class:PluginInstallerInfoBarDelegate
440 Replace(this, installer(), plugin_metadata_->Clone(), new_install_, message);
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dmetafunctions.cpp54 namespace Replace { namespace
/external/clang/unittests/Tooling/
H A DRefactoringTest.cpp47 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
280 expectReplacementAt(const Replacement &Replace, StringRef File, unsigned Offset, unsigned Length) argument
296 Replacement Replace; member in class:clang::tooling::ClassDeclXVisitor
319 Replacement Replace; member in class:clang::tooling::CallToFVisitor
[all...]
/external/openfst/src/include/fst/extensions/pdt/
H A Dreplace.h51 void Replace(const vector<pair<typename Arc::Label, function in namespace:fst
/external/openfst/src/include/fst/
H A Drational.h96 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 { function in class:fst::RationalFstImpl
281 GetImpl()->Replace()->InitStateIterator(data);
285 GetImpl()->Replace()->InitArcIterator(s, data);
313 : StateIterator< ReplaceFst<A> >(*(fst.GetImpl()->Replace())) {}
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DR600KernelParameters.cpp72 void Replace(Function *Fun);
222 void R600KernelParameters::Replace(Function* Fun) { function in class:__anon12236::R600KernelParameters
432 Replace(&F);

Completed in 1175 milliseconds

12