Lines Matching refs:str2
222 const ByteStringView& str2) {
223 return ByteString(str1, str2);
225 inline ByteString operator+(const ByteStringView& str1, const char* str2) {
226 return ByteString(str1, str2);
228 inline ByteString operator+(const char* str1, const ByteStringView& str2) {
229 return ByteString(str1, str2);
234 inline ByteString operator+(char ch, const ByteStringView& str2) {
235 return ByteString(ch, str2);
237 inline ByteString operator+(const ByteString& str1, const ByteString& str2) {
238 return ByteString(str1.AsStringView(), str2.AsStringView());
243 inline ByteString operator+(char ch, const ByteString& str2) {
244 return ByteString(ch, str2.AsStringView());
246 inline ByteString operator+(const ByteString& str1, const char* str2) {
247 return ByteString(str1.AsStringView(), str2);
249 inline ByteString operator+(const char* str1, const ByteString& str2) {
250 return ByteString(str1, str2.AsStringView());
253 const ByteStringView& str2) {
254 return ByteString(str1.AsStringView(), str2);
257 const ByteString& str2) {
258 return ByteString(str1, str2.AsStringView());