Home | History | Annotate | Download | only in utils

Lines Matching defs:char

41     explicit                    String8(const char* o);
42 explicit String8(const char* o, size_t numChars);
53 static String8 format(const char* fmt, ...) __attribute__((format (printf, 1, 2)));
54 static String8 formatV(const char* fmt, va_list args);
56 inline const char* string() const;
67 status_t setTo(const char* other);
68 status_t setTo(const char* other, size_t numChars);
74 status_t append(const char* other);
75 status_t append(const char* other, size_t numChars);
77 status_t appendFormat(const char* fmt, ...)
79 status_t appendFormatV(const char* fmt, va_list args);
89 inline String8& operator=(const char* other);
94 inline String8& operator+=(const char* other);
95 inline String8 operator+(const char* other) const;
106 inline bool 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;
113 inline operator const char*() const;
115 char* lockBuffer(size_t size);
121 ssize_t find(const char* other, size_t start = 0) const;
137 void setPathName(const char* name);
138 void setPathName(const char* name, size_t numChars);
196 String8& appendPath(const char* leaf);
202 String8 appendPathCopy(const char* leaf) const
216 status_t real_append(const char* other, size_t numChars);
217 char* find_extension(void) const;
219 const char* mString;
241 inline const char* String8::string() const
277 inline String8& String8::operator=(const char* other)
296 inline String8& String8::operator+=(const char* other)
302 inline String8 String8::operator+(const char* other) const
344 inline bool 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 String8::operator const char*() const