Lines Matching refs:delimiter
64 DelimiterType delimiter, in SplitStringT() argument
75 size_t end = FindFirstOf(str, delimiter, start); in SplitStringT()
96 char delimiter, in AppendStringKeyValue() argument
104 size_t end_key_pos = input.find_first_of(delimiter); in AppendStringKeyValue()
113 size_t begin_value_pos = remains.find_first_not_of(delimiter); in AppendStringKeyValue()
125 std::basic_string_view<char_type> delimiter, in SplitStringUsingSubstrT() argument
134 begin_index = end_index + delimiter.size()) { in SplitStringUsingSubstrT()
135 end_index = input.find(delimiter, begin_index); in SplitStringUsingSubstrT()
223 std::u16string_view delimiter, in SplitStringUsingSubstr() argument
227 SplitStringUsingSubstrT(input, delimiter, whitespace, result_type, &result); in SplitStringUsingSubstr()
232 std::string_view delimiter, in SplitStringUsingSubstr() argument
236 SplitStringUsingSubstrT(input, delimiter, whitespace, result_type, &result); in SplitStringUsingSubstr()
242 std::u16string_view delimiter, in SplitStringPieceUsingSubstr() argument
246 SplitStringUsingSubstrT(input, delimiter, whitespace, result_type, &result); in SplitStringPieceUsingSubstr()
252 std::string_view delimiter, in SplitStringPieceUsingSubstr() argument
256 SplitStringUsingSubstrT(input, delimiter, whitespace, result_type, &result); in SplitStringPieceUsingSubstr()