Home | History | Annotate | Download | only in utils

Lines Matching defs:char

42     explicit                    String8(const char* o);
43 explicit String8(const char* o, size_t numChars);
54 static String8 format(const char* fmt, ...) __attribute__((format (printf, 1, 2)));
55 static String8 formatV(const char* fmt, va_list args);
57 inline const char* string() const;
68 status_t setTo(const char* other);
69 status_t setTo(const char* other, size_t numChars);
75 status_t append(const char* other);
76 status_t append(const char* other, size_t numChars);
78 status_t appendFormat(const char* fmt, ...)
80 status_t appendFormatV(const char* fmt, va_list args);
90 inline String8& operator=(const char* other);
95 inline String8& operator+=(const char* other);
96 inline String8 operator+(const char* 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;
114 inline operator const char*() const;
116 char* lockBuffer(size_t size);
122 ssize_t find(const char* other, size_t start = 0) const;
138 void setPathName(const char* name);
139 void setPathName(const char* name, size_t numChars);
197 String8& appendPath(const char* leaf);
203 String8 appendPathCopy(const char* leaf) const
217 status_t real_append(const char* other, size_t numChars);
218 char* find_extension(void) const;
220 const char* mString;
246 inline const char* String8::string() const
282 inline String8& String8::operator=(const char* other)
301 inline String8& String8::operator+=(const char* other)
307 inline String8 String8::operator+(const char* other) const
349 inline bool String8::operator<(const char* other) const
354 inline bool String8::operator<=(const char* other) const
359 inline bool String8::operator==(const char* other) const
364 inline bool String8::operator!=(const char* other) const
369 inline bool String8::operator>=(const char* other) const
374 inline bool String8::operator>(const char* other) const
379 inline String8::operator const char*() const