• Home
  • Raw
  • Download

Lines Matching refs:other

67             void                setTo(const String8& other);
68 status_t setTo(const char* other);
69 status_t setTo(const char* other, size_t numChars);
70 status_t setTo(const char16_t* other, size_t numChars);
71 status_t setTo(const char32_t* other,
74 status_t append(const String8& other);
75 status_t append(const char* other);
76 status_t append(const char* other, size_t numChars);
89 inline String8& operator=(const String8& other);
90 inline String8& operator=(const char* other);
92 inline String8& operator+=(const String8& other);
93 inline String8 operator+(const String8& other) const;
95 inline String8& operator+=(const char* other);
96 inline String8 operator+(const char* other) const;
98 inline int compare(const String8& other) const;
100 inline bool operator<(const String8& other) const;
101 inline bool operator<=(const String8& other) const;
102 inline bool operator==(const String8& other) const;
103 inline bool operator!=(const String8& other) const;
104 inline bool operator>=(const String8& other) const;
105 inline bool operator>(const String8& other) const;
107 inline bool operator<(const char* other) const;
108 inline bool operator<=(const char* other) const;
109 inline bool operator==(const char* other) const;
110 inline bool operator!=(const char* other) const;
111 inline bool operator>=(const char* other) const;
112 inline bool operator>(const char* other) const;
122 ssize_t find(const char* other, size_t start = 0) const;
217 status_t real_append(const char* other, size_t numChars);
276 inline String8& String8::operator=(const String8& other)
278 setTo(other);
282 inline String8& String8::operator=(const char* other)
284 setTo(other);
288 inline String8& String8::operator+=(const String8& other)
290 append(other);
294 inline String8 String8::operator+(const String8& other) const
297 tmp += other;
301 inline String8& String8::operator+=(const char* other)
303 append(other);
307 inline String8 String8::operator+(const char* other) const
310 tmp += other;
314 inline int String8::compare(const String8& other) const in compare() argument
316 return strcmp(mString, other.mString); in compare()
319 inline bool String8::operator<(const String8& other) const
321 return strcmp(mString, other.mString) < 0;
324 inline bool String8::operator<=(const String8& other) const
326 return strcmp(mString, other.mString) <= 0;
329 inline bool String8::operator==(const String8& other) const
331 return strcmp(mString, other.mString) == 0;
334 inline bool String8::operator!=(const String8& other) const
336 return strcmp(mString, other.mString) != 0;
339 inline bool String8::operator>=(const String8& other) const
341 return strcmp(mString, other.mString) >= 0;
344 inline bool String8::operator>(const String8& other) const
346 return strcmp(mString, other.mString) > 0;
349 inline bool String8::operator<(const char* other) const
351 return strcmp(mString, other) < 0;
354 inline bool String8::operator<=(const char* other) const
356 return strcmp(mString, other) <= 0;
359 inline bool String8::operator==(const char* other) const
361 return strcmp(mString, other) == 0;
364 inline bool String8::operator!=(const char* other) const
366 return strcmp(mString, other) != 0;
369 inline bool String8::operator>=(const char* other) const
371 return strcmp(mString, other) >= 0;
374 inline bool String8::operator>(const char* other) const
376 return strcmp(mString, other) > 0;