Searched refs:tokenize_first (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/webrtc/base/ |
D | stringencode_unittest.cc | 322 ASSERT_TRUE(tokenize_first("A &*${}", ' ', &token, &rest)); in TEST() 326 ASSERT_TRUE(tokenize_first("A B& *${}", ' ', &token, &rest)); in TEST() 330 ASSERT_TRUE(tokenize_first("A B& *${} ", ' ', &token, &rest)); in TEST() 339 ASSERT_TRUE(tokenize_first(" A B C", ' ', &token, &rest)); in TEST() 343 ASSERT_TRUE(tokenize_first(" A B C ", ' ', &token, &rest)); in TEST() 353 ASSERT_FALSE(tokenize_first("ABC", ' ', &token, &rest)); in TEST() 355 ASSERT_TRUE(tokenize_first("ABC ", ' ', &token, &rest)); in TEST() 359 ASSERT_TRUE(tokenize_first(" ABC ", ' ', &token, &rest)); in TEST()
|
D | stringencode.h | 171 bool tokenize_first(const std::string& source,
|
D | stringencode.cc | 628 bool tokenize_first(const std::string& source, in tokenize_first() function
|
/external/webrtc/talk/app/webrtc/ |
D | webrtcsdp.cc | 546 if (!rtc::tokenize_first(message, kSdpDelimiterColon, &leftpart, value)) { in GetValue() 956 if (rtc::tokenize_first(message, kNewLine, &left, &right) && in ParseCandidate() 974 if (!rtc::tokenize_first(first_line, kSdpDelimiterColon, &attribute_candidate, in ParseCandidate() 2707 if (!rtc::tokenize_first(line.substr(kLinePrefixLength), kSdpDelimiterSpace, in ParseSsrcAttribute() 2725 if (!rtc::tokenize_first(field2, kSdpDelimiterColon, &attribute, &value)) { in ParseSsrcAttribute() 2973 if (!rtc::tokenize_first(line, kSdpDelimiterEqual, parameter, value)) { in ParseFmtpParam() 2996 if (!rtc::tokenize_first(line.substr(kLinePrefixLength), kSdpDelimiterSpace, in ParseFmtpAttributes()
|