Home | History | Annotate | Download | only in core

Lines Matching full:len

43     explicit    SkString(size_t len);
45 SkString(const char text[], size_t len);
56 bool equals(const char text[], size_t len) const;
84 void resize(size_t len) { this->set(NULL, len); }
87 void set(const char text[], size_t len);
89 void setUTF16(const uint16_t[], size_t len);
93 void insert(size_t offset, const char text[], size_t len);
101 void append(const char text[], size_t len) { this->insert((size_t)-1, text, len); }
109 void prepend(const char text[], size_t len) { this->insert(0, text, len); }
146 static Rec* AllocRec(const char text[], U16CPU len);