Lines Matching refs:s
180 for (const char *s = mStr; *s; s++) { in split() local
181 if (*s == sep && s != mStr && (last == NULL || s > last+1)) { in split()
183 last = s; in split()
190 for (const char *s = mStr; *s; s++) { in split() local
191 if (*s == sep) { in split()
192 if (s != mStr && (last == NULL || s > last+1)) { in split()
194 (*result)[n++].set(start, s-start); in split()
196 last = s+1; in split()
251 CPath& addPath(const CString &s) { in addPath() argument
252 return addPath(s.cstr()); in addPath()
256 CPath& addPath(const char *s) { in addPath() argument
257 _ASSERT(s != NULL); in addPath()
258 if (s != NULL && s[0] != 0) { in addPath()
260 if (n > 0 && s[0] != '\\' && mStr[n-1] != '\\') add("\\"); in addPath()
261 add(s); in addPath()