Home
last modified time | relevance | path

Searched refs:StrReplaceAll (Results 1 – 25 of 96) sorted by relevance

1234

/external/webrtc/third_party/abseil-cpp/absl/strings/
Dstr_replace_test.cc25 TEST(StrReplaceAll, OneReplacement) { in TEST() argument
29 s = absl::StrReplaceAll(s, {{"", ""}}); in TEST()
31 s = absl::StrReplaceAll(s, {{"x", ""}}); in TEST()
33 s = absl::StrReplaceAll(s, {{"", "y"}}); in TEST()
35 s = absl::StrReplaceAll(s, {{"x", "y"}}); in TEST()
39 s = absl::StrReplaceAll("abc", {{"", ""}}); in TEST()
41 s = absl::StrReplaceAll("abc", {{"", "y"}}); in TEST()
43 s = absl::StrReplaceAll("abc", {{"x", ""}}); in TEST()
47 s = absl::StrReplaceAll("abc", {{"xyz", "123"}}); in TEST()
51 s = absl::StrReplaceAll("abc", {{"abc", "xyz"}}); in TEST()
[all …]
Dstr_replace.h68 ABSL_MUST_USE_RESULT std::string StrReplaceAll(
97 std::string StrReplaceAll(absl::string_view s,
113 int StrReplaceAll(
131 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target);
194 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
204 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target) { in StrReplaceAll() function
Dstr_replace.cc71 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
73 return StrReplaceAll<strings_internal::FixedMapping>(s, replacements); in StrReplaceAll()
76 int StrReplaceAll(strings_internal::FixedMapping replacements, in StrReplaceAll() function
78 return StrReplaceAll<strings_internal::FixedMapping>(replacements, target); in StrReplaceAll()
Dstr_replace_benchmark.cc99 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}}); in BM_StrReplaceAllOneReplacement()
110 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}, in BM_StrReplaceAll()
/external/angle/third_party/abseil-cpp/absl/strings/
Dstr_replace_test.cc25 TEST(StrReplaceAll, OneReplacement) { in TEST() argument
29 s = absl::StrReplaceAll(s, {{"", ""}}); in TEST()
31 s = absl::StrReplaceAll(s, {{"x", ""}}); in TEST()
33 s = absl::StrReplaceAll(s, {{"", "y"}}); in TEST()
35 s = absl::StrReplaceAll(s, {{"x", "y"}}); in TEST()
39 s = absl::StrReplaceAll("abc", {{"", ""}}); in TEST()
41 s = absl::StrReplaceAll("abc", {{"", "y"}}); in TEST()
43 s = absl::StrReplaceAll("abc", {{"x", ""}}); in TEST()
47 s = absl::StrReplaceAll("abc", {{"xyz", "123"}}); in TEST()
51 s = absl::StrReplaceAll("abc", {{"abc", "xyz"}}); in TEST()
[all …]
Dstr_replace.h68 ABSL_MUST_USE_RESULT std::string StrReplaceAll(
97 std::string StrReplaceAll(absl::string_view s,
113 int StrReplaceAll(
131 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target);
194 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
204 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target) { in StrReplaceAll() function
Dstr_replace.cc71 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
73 return StrReplaceAll<strings_internal::FixedMapping>(s, replacements); in StrReplaceAll()
76 int StrReplaceAll(strings_internal::FixedMapping replacements, in StrReplaceAll() function
78 return StrReplaceAll<strings_internal::FixedMapping>(replacements, target); in StrReplaceAll()
Dstr_replace_benchmark.cc99 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}}); in BM_StrReplaceAllOneReplacement()
110 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}, in BM_StrReplaceAll()
/external/abseil-cpp/absl/strings/
Dstr_replace_test.cc25 TEST(StrReplaceAll, OneReplacement) { in TEST() argument
29 s = absl::StrReplaceAll(s, {{"", ""}}); in TEST()
31 s = absl::StrReplaceAll(s, {{"x", ""}}); in TEST()
33 s = absl::StrReplaceAll(s, {{"", "y"}}); in TEST()
35 s = absl::StrReplaceAll(s, {{"x", "y"}}); in TEST()
39 s = absl::StrReplaceAll("abc", {{"", ""}}); in TEST()
41 s = absl::StrReplaceAll("abc", {{"", "y"}}); in TEST()
43 s = absl::StrReplaceAll("abc", {{"x", ""}}); in TEST()
47 s = absl::StrReplaceAll("abc", {{"xyz", "123"}}); in TEST()
51 s = absl::StrReplaceAll("abc", {{"abc", "xyz"}}); in TEST()
[all …]
Dstr_replace.h68 ABSL_MUST_USE_RESULT std::string StrReplaceAll(
97 std::string StrReplaceAll(absl::string_view s,
113 int StrReplaceAll(
131 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target);
194 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
204 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target) { in StrReplaceAll() function
Dstr_replace.cc71 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
73 return StrReplaceAll<strings_internal::FixedMapping>(s, replacements); in StrReplaceAll()
76 int StrReplaceAll(strings_internal::FixedMapping replacements, in StrReplaceAll() function
78 return StrReplaceAll<strings_internal::FixedMapping>(replacements, target); in StrReplaceAll()
Dstr_replace_benchmark.cc99 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}}); in BM_StrReplaceAllOneReplacement()
110 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}, in BM_StrReplaceAll()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/
Dstr_replace_test.cc25 TEST(StrReplaceAll, OneReplacement) { in TEST() argument
29 s = absl::StrReplaceAll(s, {{"", ""}}); in TEST()
31 s = absl::StrReplaceAll(s, {{"x", ""}}); in TEST()
33 s = absl::StrReplaceAll(s, {{"", "y"}}); in TEST()
35 s = absl::StrReplaceAll(s, {{"x", "y"}}); in TEST()
39 s = absl::StrReplaceAll("abc", {{"", ""}}); in TEST()
41 s = absl::StrReplaceAll("abc", {{"", "y"}}); in TEST()
43 s = absl::StrReplaceAll("abc", {{"x", ""}}); in TEST()
47 s = absl::StrReplaceAll("abc", {{"xyz", "123"}}); in TEST()
51 s = absl::StrReplaceAll("abc", {{"abc", "xyz"}}); in TEST()
[all …]
Dstr_replace.h68 ABSL_MUST_USE_RESULT std::string StrReplaceAll(
97 std::string StrReplaceAll(absl::string_view s,
113 int StrReplaceAll(
131 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target);
194 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
204 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target) { in StrReplaceAll() function
Dstr_replace.cc71 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
73 return StrReplaceAll<strings_internal::FixedMapping>(s, replacements); in StrReplaceAll()
76 int StrReplaceAll(strings_internal::FixedMapping replacements, in StrReplaceAll() function
78 return StrReplaceAll<strings_internal::FixedMapping>(replacements, target); in StrReplaceAll()
Dstr_replace_benchmark.cc99 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}}); in BM_StrReplaceAllOneReplacement()
110 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}, in BM_StrReplaceAll()
/external/openscreen/third_party/abseil/src/absl/strings/
Dstr_replace_test.cc25 TEST(StrReplaceAll, OneReplacement) { in TEST() argument
29 s = absl::StrReplaceAll(s, {{"", ""}}); in TEST()
31 s = absl::StrReplaceAll(s, {{"x", ""}}); in TEST()
33 s = absl::StrReplaceAll(s, {{"", "y"}}); in TEST()
35 s = absl::StrReplaceAll(s, {{"x", "y"}}); in TEST()
39 s = absl::StrReplaceAll("abc", {{"", ""}}); in TEST()
41 s = absl::StrReplaceAll("abc", {{"", "y"}}); in TEST()
43 s = absl::StrReplaceAll("abc", {{"x", ""}}); in TEST()
47 s = absl::StrReplaceAll("abc", {{"xyz", "123"}}); in TEST()
51 s = absl::StrReplaceAll("abc", {{"abc", "xyz"}}); in TEST()
[all …]
Dstr_replace.h68 ABSL_MUST_USE_RESULT std::string StrReplaceAll(
97 std::string StrReplaceAll(absl::string_view s,
113 int StrReplaceAll(
131 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target);
194 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
204 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target) { in StrReplaceAll() function
Dstr_replace.cc71 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
73 return StrReplaceAll<strings_internal::FixedMapping>(s, replacements); in StrReplaceAll()
76 int StrReplaceAll(strings_internal::FixedMapping replacements, in StrReplaceAll() function
78 return StrReplaceAll<strings_internal::FixedMapping>(replacements, target); in StrReplaceAll()
Dstr_replace_benchmark.cc99 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}}); in BM_StrReplaceAllOneReplacement()
110 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}, in BM_StrReplaceAll()
/external/libtextclassifier/abseil-cpp/absl/strings/
Dstr_replace_test.cc25 TEST(StrReplaceAll, OneReplacement) { in TEST() argument
29 s = absl::StrReplaceAll(s, {{"", ""}}); in TEST()
31 s = absl::StrReplaceAll(s, {{"x", ""}}); in TEST()
33 s = absl::StrReplaceAll(s, {{"", "y"}}); in TEST()
35 s = absl::StrReplaceAll(s, {{"x", "y"}}); in TEST()
39 s = absl::StrReplaceAll("abc", {{"", ""}}); in TEST()
41 s = absl::StrReplaceAll("abc", {{"", "y"}}); in TEST()
43 s = absl::StrReplaceAll("abc", {{"x", ""}}); in TEST()
47 s = absl::StrReplaceAll("abc", {{"xyz", "123"}}); in TEST()
51 s = absl::StrReplaceAll("abc", {{"abc", "xyz"}}); in TEST()
[all …]
Dstr_replace.h68 ABSL_MUST_USE_RESULT std::string StrReplaceAll(
97 std::string StrReplaceAll(absl::string_view s,
113 int StrReplaceAll(
131 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target);
194 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
204 int StrReplaceAll(const StrToStrMapping& replacements, std::string* target) { in StrReplaceAll() function
Dstr_replace.cc71 std::string StrReplaceAll(absl::string_view s, in StrReplaceAll() function
73 return StrReplaceAll<strings_internal::FixedMapping>(s, replacements); in StrReplaceAll()
76 int StrReplaceAll(strings_internal::FixedMapping replacements, in StrReplaceAll() function
78 return StrReplaceAll<strings_internal::FixedMapping>(replacements, target); in StrReplaceAll()
Dstr_replace_benchmark.cc99 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}}); in BM_StrReplaceAllOneReplacement()
110 std::string dest = absl::StrReplaceAll(src, {{"the", "box"}, in BM_StrReplaceAll()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dcudnn_fused_conv_rewriter_test.cc49 absl::StrReplaceAll(hlo_string, {{"TYPE", type}}); in TestMatchWithAllTypes()
76 absl::StrReplaceAll(hlo_string, {{"TYPE", type}}); in TestNotMatchWithAllTypes()

1234