Home | History | Annotate | Download | only in css

Lines Matching refs:tokenStart

336     location.token.init(tokenStart<CharacterType>(), currentCharacter<CharacterType>() - tokenStart<CharacterType>());
338 location.offset = tokenStart<CharacterType>() - dataStart<CharacterType>();
771 CharacterType* name = tokenStart<CharacterType>();
821 CharacterType* name = tokenStart<CharacterType>();
935 CharacterType* name = tokenStart<CharacterType>();
954 CharacterType* name = tokenStart<CharacterType>();
1107 CharacterType* name = tokenStart<CharacterType>();
1150 yylval->string.init(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
1163 detectSupportsToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
1170 detectFunctionTypeToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
1187 detectMediaQueryToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
1189 detectSupportsToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
1190 } else if (m_parsingMode == NthChildMode && isASCIIAlphaCaselessEqual(tokenStart<SrcCharacterType>()[0], 'n')) {
1191 if (result - tokenStart<SrcCharacterType>() == 1) {
1195 yylval->string.m_length = currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>();
1197 } else if (result - tokenStart<SrcCharacterType>() >= 2 && tokenStart<SrcCharacterType>()[1] == '-') {
1201 currentCharacter<SrcCharacterType>() = tokenStart<SrcCharacterType>() + 1;
1204 yylval->string.setLength(currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
1238 yylval->string.init(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
1247 ASSERT(character - tokenStart<SrcCharacterType>() > 0);
1258 if (!parseSVGNumber(tokenStart<SrcCharacterType>(), character - tokenStart<SrcCharacterType>(), yylval->number))
1261 yylval->number = charactersToDouble(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
1277 yylval->string.init(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
1301 detectDashToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
1304 } else if (UNLIKELY(m_parsingMode == NthChildMode) && !hasEscape && isASCIIAlphaCaselessEqual(tokenStart<SrcCharacterType>()[1], 'n')) {
1305 if (result - tokenStart<SrcCharacterType>() == 2) {
1311 } else if (result - tokenStart<SrcCharacterType>() >= 3 && tokenStart<SrcCharacterType>()[2] == '-') {
1315 currentCharacter<SrcCharacterType>() = tokenStart<SrcCharacterType>() + 2;
1325 resultString.setLength(result - tokenStart<SrcCharacterType>());
1335 yylval->string.init(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
1467 yylval->string.init(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
1528 inline void CSSTokenizer::setTokenStart<LChar>(LChar* tokenStart)
1530 m_tokenStart.ptr8 = tokenStart;
1534 inline void CSSTokenizer::setTokenStart<UChar>(UChar* tokenStart)
1536 m_tokenStart.ptr16 = tokenStart;