Home
last modified time | relevance | path

Searched refs:StrAppend (Results 1 - 25 of 39) sorted by relevance

12

/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstr_cat_test.cc319 TEST(StrAppend, Basics) { in TEST()
342 absl::StrAppend(&result); in TEST()
346 absl::StrAppend(&result, strs[0]); in TEST()
350 absl::StrAppend(&result, strs[1], pieces[2]); in TEST()
354 absl::StrAppend(&result, stdstrs[0], ", ", pieces[2]); in TEST()
358 absl::StrAppend(&result, strs[0], ", ", stdstrs[1], " ", strs[2], "!"); in TEST()
362 absl::StrAppend(&result, pieces[0], ", ", pieces[1], " ", pieces[2]); in TEST()
366 absl::StrAppend(&result, c_strs[0], ", ", c_strs[1], " ", c_strs[2]); in TEST()
370 absl::StrAppend(&result, "ASCII ", i32s[0], ", ", i32s[1], " ", i32s[2], "!"); in TEST()
374 absl::StrAppend( in TEST()
[all...]
H A Dstr_cat.h21 // strings: `StrCat()` and `StrAppend()`. Most of the work within these routines
48 // `StrCat()` or `StrAppend()`. You may specify a minimum hex field width using
208 // `StrAppend()`, providing efficient conversion of numeric, boolean, and
305 // string. Use `StrAppend()` instead. In particular, avoid using any of these
316 // See `StrAppend()` below for more information.
350 // StrAppend()
356 // WARNING: `StrAppend(&str, a, b, c, ...)` requires that none of the
357 // a, b, c, parameters be a reference into str. For speed, `StrAppend()` does
367 // StrAppend(&s, s);
374 // StrAppend(
376 inline void StrAppend(std::string*) {} StrAppend() function
386 inline void StrAppend(std::string* dest, const AlphaNum& a, const AlphaNum& b, StrAppend() function
[all...]
H A Dstr_cat.cc160 // It's possible to call StrAppend with an absl::string_view that is itself a
193 void StrAppend(std::string* dest, const AlphaNum& a) { in StrAppend() function
198 void StrAppend(std::string* dest, const AlphaNum& a, const AlphaNum& b) { in StrAppend() function
211 void StrAppend(std::string* dest, const AlphaNum& a, const AlphaNum& b, in StrAppend() function
227 void StrAppend(std::string* dest, const AlphaNum& a, const AlphaNum& b, in StrAppend() function
H A Dstr_join_test.cc179 absl::StrAppend(out, "(", in, ")"); in TEST()
187 absl::StrAppend(out, "(", in, ")"); in TEST()
198 absl::StrAppend(out, "(", in, ")"); in TEST()
201 absl::StrAppend(out, "[", in, "]"); in TEST()
280 absl::StrAppend(s, "(", t, ")"); in operator ()()
H A Dstr_replace.cc40 StrAppend(result_ptr, s.substr(pos, sub.offset - pos), sub.replacement); in ApplySubstitutions()
H A Descaping_benchmark.cc71 absl::StrAppend(&src, string_value); in CEscapeBenchmarkHelper()
H A Dstr_cat_benchmark.cc146 absl::StrAppend(&result, chunks...); in BM_StrAppendImpl()
/third_party/libphonenumber/cpp/test/phonenumbers/
H A Dstringutil_test.cc267 // Test the StrAppend implementations.
268 TEST(StringUtilTest, StrAppend) { in TEST()
272 StrAppend(&s, "a"); in TEST()
276 StrAppend(&s, "b", "c"); in TEST()
280 StrAppend(&s, "d", "e", "f"); in TEST()
284 StrAppend(&s, "g", "h", "i", "j"); in TEST()
288 StrAppend(&s, "k", "l", "m", "n", "o"); in TEST()
292 StrAppend(&s, 42); in TEST()
/third_party/libphonenumber/cpp/src/phonenumbers/
H A Dstringutil.cc36 absl::StrAppend(&result,s,n); in operator +()
269 // StrAppend
271 void StrAppend(string* dest, const StringHolder& s1) { in StrAppend() function
272 absl::StrAppend(dest, s1); in StrAppend()
275 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2) { in StrAppend() function
276 absl::StrAppend(dest, s1, s2); in StrAppend()
279 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2, in StrAppend() function
281 absl::StrAppend(dest, s1, s2, s3); in StrAppend()
284 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2, in StrAppend() function
286 absl::StrAppend(des in StrAppend()
289 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2, StrAppend() function
[all...]
H A Dstringutil.h185 void StrAppend(string* dest, const StringHolder& s1);
187 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2);
189 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2,
192 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2,
195 void StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2,
H A Dphonenumberutil.cc1657 StrAppend(formatted_number, country_code, " ", raw_input_copy); in FormatOutOfCountryKeepingAlphaChars()
1701 StrAppend(formatted_number, international_prefix_for_formatting, " ", in FormatOutOfCountryKeepingAlphaChars()
1851 StrAppend(formatted_number, kRfc3966ExtnPrefix, number.extension()); in MaybeAppendFormattedExtension()
1854 StrAppend(formatted_number, metadata.preferred_extn_prefix(), in MaybeAppendFormattedExtension()
1857 StrAppend(formatted_number, kDefaultExtnPrefix, number.extension()); in MaybeAppendFormattedExtension()
2178 StrAppend( in BuildNationalNumberForParsing()
2182 StrAppend(national_number, number_to_parse.substr(phone_context_start)); in BuildNationalNumberForParsing()
2194 StrAppend( in BuildNationalNumberForParsing()
2621 StrAppend(national_number, number.italian_leading_zero() ? in GetNationalSignificantNumber()
2623 StrAppend(national_numbe in GetNationalSignificantNumber()
[all...]
H A Dasyoutypeformatter.cc541 StrAppend(phone_number, national_number); in AppendNationalNumber()
695 StrAppend(&prefix_before_national_number_, country_code); in AttemptToExtractCountryCode()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Ddiscrete_distribution_test.cc192 absl::StrAppend(&msg, i, ": ", counts[i], " vs ", weights[i], "\n"); in TEST()
194 absl::StrAppend(&msg, kChiSquared, " p-value ", p_value, "\n"); in TEST()
195 absl::StrAppend(&msg, "High ", kChiSquared, " value: ", chi_square, " > ", in TEST()
H A Duniform_real_distribution_test.cc288 absl::StrAppend(&msg, a, "\n"); in TYPED_TEST()
290 absl::StrAppend(&msg, kChiSquared, " p-value ", p_value, "\n"); in TYPED_TEST()
291 absl::StrAppend(&msg, "High ", kChiSquared, " value: ", chi_square, " > ", in TYPED_TEST()
H A Duniform_int_distribution_test.cc207 absl::StrAppend(&msg, a, "\n"); in TYPED_TEST()
209 absl::StrAppend(&msg, kChiSquared, " p-value ", p_value, "\n"); in TYPED_TEST()
210 absl::StrAppend(&msg, "High ", kChiSquared, " value: ", chi_square, " > ", in TYPED_TEST()
/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil.h699 // quadratic time operation with O(n) dynamic allocations. StrAppend
701 // of StrAppend(&str, a, b, c, ...) that none of the a, b, c, ... may
733 // StrAppend()
735 // WARNING: For speed, StrAppend does not try to check each of its input
745 // StrAppend(&s, s);
747 // Note: while StrCat supports appending up to 9 arguments, StrAppend
749 // automatically transforming StrCat to StrAppend, and can easily be
750 // worked around as consecutive calls to StrAppend are quite efficient.
753 PROTOBUF_EXPORT void StrAppend(string* dest, const AlphaNum& a);
754 PROTOBUF_EXPORT void StrAppend(strin
[all...]
H A Dstrutil.cc1568 // It's possible to call StrAppend with a char * pointer that is partway into
1576 void StrAppend(string *result, const AlphaNum &a) { in StrAppend() function
1581 void StrAppend(string *result, const AlphaNum &a, const AlphaNum &b) { in StrAppend() function
1591 void StrAppend(string *result, in StrAppend() function
1604 void StrAppend(string *result, in StrAppend() function
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dlayout.h303 absl::StrAppend(&out, "<", demangled, ">"); in TypeName()
307 absl::StrAppend(&out, "<", typeid(T).name(), ">"); in TypeName()
653 absl::StrAppend(&res, "[", size_[i], "]; @", offsets[i + 1], types[i + 1],
660 absl::StrAppend(&res, "[", size_[last], "]");
/third_party/protobuf/src/google/protobuf/util/internal/
H A Djson_stream_parser_test.cc875 StrAppend(&str, "{'a':"); in TEST_F()
877 StrAppend(&str, "{'nest64':'v1', 'nest64': false, 'nest64': ['v2']}"); in TEST_F()
879 StrAppend(&str, "}"); in TEST_F()
901 StrAppend(&str, "{'a':"); in TEST_F()
904 StrAppend(&str, in TEST_F()
908 StrAppend(&str, "}"); in TEST_F()
H A Djson_stream_parser.cc95 StrAppend(dst, valid_part); in ReplaceInvalidCodePoints()
102 StrAppend(dst, replacement); in ReplaceInvalidCodePoints()
178 StrAppend(&chunk_storage_, json); in Parse()
189 StrAppend(&leftover_, chunk.substr(n)); in Parse()
306 StrAppend(&key_storage_, key_); in RunParser()
H A Dproto_writer.cc416 StrAppend(&loc, ".", name); in ToString()
419 StrAppend(&loc, "[\"", CEscape(name), "\"]"); in ToString()
425 StrAppend(&loc, "[", array_index_now - 1, "]"); in ToString()
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Dexception_safety_testing.cc54 absl::StrAppend(&out, sep, s); in GetSpecString()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dstr_join_internal.h63 StrAppend(out, AlphaNum(t)); in operator ()()
67 StrAppend(out, t); in operator ()()
/third_party/skia/third_party/externals/abseil-cpp/absl/status/
H A Dstatus.cc288 absl::StrAppend(&text, absl::StatusCodeToString(code()), ": ", message()); in ToStringSlow()
300 absl::StrAppend( in ToStringSlow()
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
H A Dparse_test.cc109 absl::StrAppend(&temp_dir_name, "parse_test.", GetCurrentProcessId()); in GetTestTempDir()
188 absl::StrAppend(&flagfile_flag, separator, flagfile_name); in GetFlagfileFlag()

Completed in 27 milliseconds

12