Home | History | Annotate | Download | only in platform

Lines Matching refs:str

99     RefPtr<StringImpl> str = StringImpl::adopt(spacified);
101 str = str->simplifyWhiteSpace();
103 len = countCharacter(str->characters(), str->length(), ' ') + 1;
110 while ((pos2 = str->find(' ', pos)) != notFound) {
111 r[i++] = parseLength(str->characters() + pos, pos2 - pos);
114 r[i] = parseLength(str->characters() + pos, str->length() - pos);
123 RefPtr<StringImpl> str = string.impl()->simplifyWhiteSpace();
124 if (!str->length()) {
129 len = countCharacter(str->characters(), str->length(), ',') + 1;
136 while ((pos2 = str->find(',', pos)) != notFound) {
137 r[i++] = parseLength(str->characters() + pos, pos2 - pos);
144 if (str->length()-pos > 0)
145 r[i] = parseLength(str->characters() + pos, str->length() - pos);