Lines Matching refs:other

75             void                setTo(const String8& other);
76 status_t setTo(const char* other);
77 status_t setTo(const char* other, size_t numChars);
78 status_t setTo(const char16_t* other, size_t numChars);
79 status_t setTo(const char32_t* other,
82 status_t append(const String8& other);
83 status_t append(const char* other);
84 status_t append(const char* other, size_t numChars);
90 inline String8& operator=(const String8& other);
91 inline String8& operator=(const char* other);
93 inline String8& operator+=(const String8& other);
94 inline String8 operator+(const String8& other) const;
96 inline String8& operator+=(const char* other);
97 inline String8 operator+(const char* other) const;
99 inline int compare(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;
106 inline bool operator>(const String8& 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;
113 inline bool operator>(const char* other) const;
123 ssize_t find(const char* other, size_t start = 0) const;
126 inline bool contains(const char* other) const;
130 bool removeAll(const char* other);
215 status_t real_append(const char* other, size_t numChars);
276 inline bool String8::contains(const char* other) const in contains() argument
278 return find(other) >= 0; in contains()
281 inline String8& String8::operator=(const String8& other)
283 setTo(other);
287 inline String8& String8::operator=(const char* other)
289 setTo(other);
293 inline String8& String8::operator+=(const String8& other)
295 append(other);
299 inline String8 String8::operator+(const String8& other) const
302 tmp += other;
306 inline String8& String8::operator+=(const char* other)
308 append(other);
312 inline String8 String8::operator+(const char* other) const
315 tmp += other;
319 inline int String8::compare(const String8& other) const in compare() argument
321 return strcmp(mString, other.mString); in compare()
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 String8& other) const
351 return strcmp(mString, other.mString) > 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;
379 inline bool String8::operator>(const char* other) const
381 return strcmp(mString, other) > 0;