Home
last modified time | relevance | path

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

/external/webrtc/webrtc/base/
Dstringencode_unittest.cc322 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()
Dstringencode.h171 bool tokenize_first(const std::string& source,
Dstringencode.cc628 bool tokenize_first(const std::string& source, in tokenize_first() function
/external/webrtc/talk/app/webrtc/
Dwebrtcsdp.cc546 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()