Home | History | Annotate | Download | only in ports

Lines Matching full:suffix

136 static uint16_t* concat_to_16(const char src[], const char suffix[]) {
138 size_t len2 = 3 + (suffix ? strlen(suffix) : 0);
150 if (suffix) {
151 while (*suffix) {
152 dst[i++] = *suffix++;
163 SkOSFile::Iter::Iter(const char path[], const char suffix[]) {
165 this->reset(path, suffix);
177 void SkOSFile::Iter::reset(const char path[], const char suffix[]) {
188 self.fPath16 = concat_to_16(path, suffix);