Home | History | Annotate | Download | only in strings

Lines Matching defs:base

36 #include "base/base_export.h"
41 namespace base {
47 } // namespace base
53 namespace base {
137 typedef std::basic_string<char16, base::string16_char_traits> string16;
145 } // namespace base
187 class BASE_EXPORT std::basic_string<base::char16, base::string16_char_traits>;
189 // Specialize std::hash for base::string16. Although the style guide forbids
191 // platforms, where base::string16 is a type alias for std::wstring.
194 struct hash<base::string16> {
195 std::size_t operator()(const base::string16& s) const {
197 for (base::char16 c : s)