Searched refs:tokenize_first (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/rtc_base/ |
D | string_encode_unittest.cc | 243 ASSERT_TRUE(tokenize_first("A &*${}", ' ', &token, &rest)); in TEST() 247 ASSERT_TRUE(tokenize_first("A B& *${}", ' ', &token, &rest)); in TEST() 251 ASSERT_TRUE(tokenize_first("A B& *${} ", ' ', &token, &rest)); in TEST() 260 ASSERT_TRUE(tokenize_first(" A B C", ' ', &token, &rest)); in TEST() 264 ASSERT_TRUE(tokenize_first(" A B C ", ' ', &token, &rest)); in TEST() 274 ASSERT_FALSE(tokenize_first("ABC", ' ', &token, &rest)); in TEST() 276 ASSERT_TRUE(tokenize_first("ABC ", ' ', &token, &rest)); in TEST() 280 ASSERT_TRUE(tokenize_first(" ABC ", ' ', &token, &rest)); in TEST()
|
D | string_encode.h | 101 bool tokenize_first(const std::string& source,
|
D | string_encode.cc | 235 bool tokenize_first(const std::string& source, in tokenize_first() function
|
/external/webrtc/pc/ |
D | webrtc_sdp.cc | 595 if (!rtc::tokenize_first(message, kSdpDelimiterColonChar, &leftpart, value)) { in GetValue() 1018 if (rtc::tokenize_first(message, kNewLineChar, &left, &right) && in ParseCandidate() 1036 if (!rtc::tokenize_first(first_line, kSdpDelimiterColonChar, in ParseCandidate() 2037 if (!rtc::tokenize_first(line, kSdpDelimiterEqualChar, &token, &rightpart)) { in ParseConnectionData() 2042 if (!rtc::tokenize_first(rightpart, kSdpDelimiterSpaceChar, &token, in ParseConnectionData() 2052 if (!rtc::tokenize_first(rightpart, kSdpDelimiterSpaceChar, &token, in ParseConnectionData() 2331 if (!rtc::tokenize_first(line.substr(kLinePrefixLength), in ParseMsidAttribute() 3371 if (!rtc::tokenize_first(line.substr(kLinePrefixLength), in ParseSsrcAttribute() 3389 if (!rtc::tokenize_first(field2, kSdpDelimiterColonChar, &attribute, in ParseSsrcAttribute() 3610 if (!rtc::tokenize_first(line, kSdpDelimiterEqualChar, parameter, value)) { in ParseFmtpParam() [all …]
|