Home | History | Annotate | Download | only in css

Lines Matching refs:characters

103         if (a.characters[i] != b[i])
115 if (toASCIILower(a.characters[i]) != b[i])
192 if (charactersAreAllASCII(characters, length)) {
195 characters[i] = toASCIILower(characters[i]);
198 characters[i] = Unicode::toLower(characters[i]);
211 memcpy(m_data + strlen(prefix), string.characters(), string.length() * sizeof(UChar));
2238 // But HTML attribute names can't have those characters, and we should not
3209 currFamily->appendSpaceSeparated(value->string.characters, value->string.length);
3223 currFamily->appendSpaceSeparated(value->string.characters, value->string.length);
4714 yylval->string.characters = t;
5361 return cssPropertyID(string.characters(), string.length());
5366 return cssPropertyID(string.characters, string.length);
5380 UChar c = string.characters[i];
5405 // The following line makes sure we treat non-Latin-1 Unicode characters correctly.