Lines Matching refs:ByteStringView
176 ByteString::ByteString(const ByteStringView& stringSrc) { in ByteString()
182 ByteString::ByteString(const ByteStringView& str1, const ByteStringView& str2) { in ByteString()
196 ByteString::ByteString(const std::initializer_list<ByteStringView>& list) { in ByteString()
232 const ByteString& ByteString::operator=(const ByteStringView& stringSrc) { in operator =()
267 const ByteString& ByteString::operator+=(const ByteStringView& str) { in operator +=()
285 bool ByteString::operator==(const ByteStringView& str) const { in operator ==()
321 bool ByteString::operator<(const ByteStringView& str) const { in operator <()
335 bool ByteString::EqualNoCase(const ByteStringView& str) const { in EqualNoCase()
567 Optional<size_t> ByteString::Find(const ByteStringView& subStr, in Find()
644 size_t ByteString::Replace(const ByteStringView& pOld, in Replace()
645 const ByteStringView& pNew) { in Replace()
704 int ByteString::Compare(const ByteStringView& str) const { in Compare()
725 ByteStringView targets(target); in Trim()
730 void ByteString::Trim(const ByteStringView& targets) { in Trim()
740 TrimLeft(ByteStringView(target)); in TrimLeft()
743 void ByteString::TrimLeft(const ByteStringView& targets) { in TrimLeft()
774 TrimRight(ByteStringView(target)); in TrimRight()
777 void ByteString::TrimRight(const ByteStringView& targets) { in TrimRight()
804 std::ostream& operator<<(std::ostream& os, const ByteStringView& str) { in operator <<()