• Home
  • Raw
  • Download

Lines Matching refs:StringPiece16

50 BASE_EXPORT void CopyToString(const StringPiece16& self, string16* target);
53 BASE_EXPORT void AppendToString(const StringPiece16& self, string16* target);
59 BASE_EXPORT size_t copy(const StringPiece16& self,
67 BASE_EXPORT size_t find(const StringPiece16& self,
68 const StringPiece16& s,
73 BASE_EXPORT size_t find(const StringPiece16& self,
80 BASE_EXPORT size_t rfind(const StringPiece16& self,
81 const StringPiece16& s,
86 BASE_EXPORT size_t rfind(const StringPiece16& self,
93 BASE_EXPORT size_t find_first_of(const StringPiece16& self,
94 const StringPiece16& s,
100 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self,
101 const StringPiece16& s,
106 BASE_EXPORT size_t find_first_not_of(const StringPiece16& self,
113 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
114 const StringPiece16& s,
119 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
126 BASE_EXPORT size_t find_last_not_of(const StringPiece16& self,
127 const StringPiece16& s,
129 BASE_EXPORT size_t find_last_not_of(const StringPiece16& self,
139 BASE_EXPORT StringPiece16 substr(const StringPiece16& self,
417 inline bool operator==(const StringPiece16& x, const StringPiece16& y) {
421 return CharTraits<StringPiece16::value_type>::compare(x.data(), y.data(),
425 inline bool operator!=(const StringPiece16& x, const StringPiece16& y) {
429 inline bool operator<(const StringPiece16& x, const StringPiece16& y) {
430 const int r = CharTraits<StringPiece16::value_type>::compare(
435 inline bool operator>(const StringPiece16& x, const StringPiece16& y) {
439 inline bool operator<=(const StringPiece16& x, const StringPiece16& y) {
443 inline bool operator>=(const StringPiece16& x, const StringPiece16& y) {
471 std::size_t operator()(const StringPiece16& sp16) const { in operator()
472 HASH_STRING_PIECE(StringPiece16, sp16); in operator()