Home | History | Annotate | Download | only in fxcrt

Lines Matching full:operator

106   const WideString& operator=(const wchar_t* str);
107 const WideString& operator=(const WideString& stringSrc);
108 const WideString& operator=(const WideStringView& stringSrc);
110 const WideString& operator+=(const wchar_t* str);
111 const WideString& operator+=(wchar_t ch);
112 const WideString& operator+=(const WideString& str);
113 const WideString& operator+=(const WideStringView& str);
115 bool operator==(const wchar_t* ptr) const;
116 bool operator==(const WideStringView& str) const;
117 bool operator==(const WideString& other) const;
119 bool operator!=(const wchar_t* ptr) const { return !(*this == ptr); }
120 bool operator!=(const WideStringView& str) const { return !(*this == str); }
121 bool operator!=(const WideString& other) const { return !(*this == other); }
123 bool operator<(const wchar_t* ptr) const;
124 bool operator<(const WideStringView& str) const;
125 bool operator<(const WideString& other) const;
127 CharType operator[](const size_t index) const {
208 inline WideString operator+(const WideStringView& str1,
212 inline WideString operator+(const WideStringView& str1, const wchar_t* str2) {
215 inline WideString operator+(const wchar_t* str1, const WideStringView& str2) {
218 inline WideString operator+(const WideStringView& str1, wchar_t ch) {
221 inline WideString operator+(wchar_t ch, const WideStringView& str2) {
224 inline WideString operator+(const WideString& str1, const WideString& str2) {
227 inline WideString operator+(const WideString& str1, wchar_t ch) {
230 inline WideString operator+(wchar_t ch, const WideString& str2) {
233 inline WideString operator+(const WideString& str1, const wchar_t* str2) {
236 inline WideString operator+(const wchar_t* str1, const WideString& str2) {
239 inline WideString operator+(const WideString& str1,
243 inline WideString operator+(const WideStringView& str1,
247 inline bool operator==(const wchar_t* lhs, const WideString& rhs) {
250 inline bool operator==(const WideStringView& lhs, const WideString& rhs) {
253 inline bool operator!=(const wchar_t* lhs, const WideString& rhs) {
256 inline bool operator!=(const WideStringView& lhs, const WideString& rhs) {
259 inline bool operator<(const wchar_t* lhs, const WideString& rhs) {
263 std::wostream& operator<<(std::wostream& os, const WideString& str);
264 std::ostream& operator<<(std::ostream& os, const WideString& str);
265 std::wostream& operator<<(std::wostream& os, const WideStringView& str);
266 std::ostream& operator<<(std::ostream& os, const WideStringView& str);
278 std::size_t operator()(const WideString& str) const {