/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);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/ |
formatter.hpp | 22 // generic replace functors -----------------------------------------------// 71 const RangeT& operator()(const Range2T& Replace) const 73 return RangeT(::boost::begin(Replace), ::boost::end(Replace)); 105 operator()(const RangeT& Replace) const 107 return m_Finder(::boost::begin(Replace), ::boost::end(Replace));
|
/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;
|
/external/chromium_org/chrome/browser/ui/views/tabs/ |
native_view_photobooth.h | 36 virtual void Replace(gfx::NativeView new_view) = 0;
|
native_view_photobooth_win.h | 37 virtual void Replace(gfx::NativeView new_view) OVERRIDE;
|
/external/clang/lib/Tooling/ |
RefactoringCallbacks.cpp | 20 return Replace; 43 Replace.insert(tooling::Replacement( 58 Replace.insert(replaceStmtWithStmt( 71 Replace.insert(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body)); 75 Replace.insert(replaceStmtWithText(*Result.SourceManager, *Node, ""));
|
/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/chromium_org/third_party/mesa/src/src/gallium/targets/ |
SConscript.dri | 11 drienv.Replace(CPPPATH = [
|
/external/mesa3d/src/gallium/targets/ |
SConscript.dri | 11 drienv.Replace(CPPPATH = [
|
/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);
|
/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/lzma/CPP/7zip/Archive/Common/ |
ItemNameUtils.cpp | 18 zipName.Replace(kOSDirDelimiter, kDirDelimiter);
25 newName.Replace(kDirDelimiter, kOSDirDelimiter);
56 newName.Replace(L'\\', kOSDirDelimiter);
|
/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");
|
/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" );
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/ |
infobar.js | 8 // Replace the placeholder text with the actual count.
|
/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" );
|