Home
last modified time | relevance | path

Searched refs:tokenize_first (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/rtc_base/
Dstring_encode_unittest.cc243 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()
Dstring_encode.h101 bool tokenize_first(const std::string& source,
Dstring_encode.cc235 bool tokenize_first(const std::string& source, in tokenize_first() function
/external/webrtc/pc/
Dwebrtc_sdp.cc595 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 …]