Lines Matching refs:do_copy
102 UnicodeText::UnicodeText(const UnicodeText& src, bool do_copy) { in UnicodeText() argument
103 if (do_copy) { in UnicodeText()
248 int end_codepoint, bool do_copy) { in Substring() argument
254 return Substring(it_begin, it_end, do_copy); in Substring()
258 const const_iterator& it_end, bool do_copy) { in Substring() argument
259 if (do_copy) { in Substring()
318 UnicodeText UTF8ToUnicodeText(const char* utf8_buf, int len, bool do_copy) { in UTF8ToUnicodeText() argument
320 if (do_copy) { in UTF8ToUnicodeText()
328 UnicodeText UTF8ToUnicodeText(const char* utf8_buf, bool do_copy) { in UTF8ToUnicodeText() argument
329 return UTF8ToUnicodeText(utf8_buf, strlen(utf8_buf), do_copy); in UTF8ToUnicodeText()
332 UnicodeText UTF8ToUnicodeText(const std::string& str, bool do_copy) { in UTF8ToUnicodeText() argument
333 return UTF8ToUnicodeText(str.data(), str.size(), do_copy); in UTF8ToUnicodeText()
336 UnicodeText UTF8ToUnicodeText(StringPiece str, bool do_copy) { in UTF8ToUnicodeText() argument
337 return UTF8ToUnicodeText(str.data(), str.size(), do_copy); in UTF8ToUnicodeText()
340 UnicodeText UTF8ToUnicodeText(absl::string_view str, bool do_copy) { in UTF8ToUnicodeText() argument
341 return UTF8ToUnicodeText(str.data(), str.size(), do_copy); in UTF8ToUnicodeText()