/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_helpers.cc | 55 return StringReplace(name, ".", "_", true); 59 return StringReplace(name, ".", "::", true); 387 return StringReplace(to_escape, "?", "\\?", true);
|
cpp_extension.cc | 146 string global_name = StringReplace(name, "::", "_", true);
|
/external/protobuf/src/google/protobuf/compiler/ |
importer.cc | 251 path = "\\\\" + StringReplace(path.substr(2), "\\", "/", true); 253 path = StringReplace(path, "\\", "/", true);
|
command_line_interface_unittest.cc | 307 args[i] = StringReplace(args[i], "$tmpdir", temp_directory_, true); 361 EXPECT_EQ(StringReplace(expected_text, "$tmpdir", temp_directory_, true), [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_name_resolver.cc | 244 result += StringReplace(name_without_package, ".", "$", true);
|
java_helpers.cc | 152 return "static_" + StringReplace(descriptor->full_name(), ".", "_", true); 186 StringReplace(package_name, ".", "/", true);
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_generator.cc | 171 StringReplace(file_generator.java_package(), ".", "/", true);
|
javamicro_message.cc | 88 return "static_" + StringReplace(descriptor->full_name(), ".", "_", true);
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_generator.cc | 196 StringReplace(file_generator.java_package(), ".", "/", true);
|
/external/protobuf/src/google/protobuf/stubs/ |
strutil.h | 159 // StringReplace() 166 LIBPROTOBUF_EXPORT string StringReplace(const string& s, const string& oldsub,
|
strutil.cc | 98 // StringReplace() 104 void StringReplace(const string& s, const string& oldsub, 127 // StringReplace() 135 string StringReplace(const string& s, const string& oldsub, 138 StringReplace(s, oldsub, newsub, replace_all, &ret); [all...] |
/external/v8/src/js/ |
string.js | 210 function StringReplace(search, replace) { 749 return %_Call(StringReplace, TO_STRING(str), /"/g, """); 1067 "replace", StringReplace, 1105 to.StringReplace = StringReplace;
|
i18n.js | 42 var StringReplace; 61 StringReplace = from.StringReplace; 315 var locale = %_Call(StringReplace, 435 var locale = %_Call(StringReplace, requestedLocales[i], 616 return %_Call(StringReplace, resolved, resolvedBase, locales[0].base); [all...] |
/external/protobuf/src/google/protobuf/ |
text_format_unittest.cc | 693 text = StringReplace(text, "e+0", "e+", true); 694 text = StringReplace(text, "e-0", "e-", true); [all...] |