Home | History | Annotate | Download | only in foundation

Lines Matching refs:AString

25 struct AString {
26 AString();
27 AString(const char *s);
28 AString(const char *s, size_t size);
29 AString(const AString &from);
30 AString(const AString &from, size_t offset, size_t n);
31 ~AString();
33 AString &operator=(const AString &from);
36 void setTo(const AString &from, size_t offset, size_t n);
50 void append(const AString &from);
51 void append(const AString &from, size_t offset, size_t n);
62 void insert(const AString &from, size_t insertionPos);
69 bool operator==(const AString &other) const;
70 bool operator<(const AString &other) const;
71 bool operator>(const AString &other) const;
73 int compare(const AString &other) const;
90 AString StringPrintf(const char *format, ...);