• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebCore-7600.1.25/css/

Lines Matching defs:tokenStart

10140 inline LChar* CSSParser::tokenStart<LChar>()
10146 inline UChar* CSSParser::tokenStart<UChar>()
10156 location.token.init(tokenStart<LChar>(), currentCharacter<LChar>() - tokenStart<LChar>());
10158 location.token.init(tokenStart<UChar>(), currentCharacter<UChar>() - tokenStart<UChar>());
10523 CharacterType* name = tokenStart<CharacterType>();
10586 CharacterType* name = tokenStart<CharacterType>();
10730 CharacterType* name = tokenStart<CharacterType>();
10746 CharacterType* name = tokenStart<CharacterType>();
10969 CharacterType* name = tokenStart<CharacterType>();
11011 yylval->string.init(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
11025 detectSupportsToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
11033 bool detected = detectFunctionTypeToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
11037 detectMediaQueryToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
11058 detectMediaQueryToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
11061 detectSupportsToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
11063 else if (m_parsingMode == NthChildMode && isASCIIAlphaCaselessEqual(tokenStart<SrcCharacterType>()[0], 'n')) {
11064 if (result - tokenStart<SrcCharacterType>() == 1) {
11068 yylval->string.m_length = currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>();
11070 } else if (result - tokenStart<SrcCharacterType>() >= 2 && tokenStart<SrcCharacterType>()[1] == '-') {
11074 currentCharacter<SrcCharacterType>() = tokenStart<SrcCharacterType>() + 1;
11077 yylval->string.setLength(currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
11111 yylval->string.init(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
11120 ASSERT(character - tokenStart<SrcCharacterType>() > 0);
11131 if (!parseSVGNumber(tokenStart<SrcCharacterType>(), character - tokenStart<SrcCharacterType>(), yylval->number))
11134 yylval->number = charactersToDouble(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
11149 yylval->string.init(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
11172 detectDashToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>());
11175 } else if (UNLIKELY(m_parsingMode == NthChildMode) && !hasEscape && isASCIIAlphaCaselessEqual(tokenStart<SrcCharacterType>()[1], 'n')) {
11176 if (result - tokenStart<SrcCharacterType>() == 2) {
11182 } else if (result - tokenStart<SrcCharacterType>() >= 3 && tokenStart<SrcCharacterType>()[2] == '-') {
11186 currentCharacter<SrcCharacterType>() = tokenStart<SrcCharacterType>() + 2;
11196 resultString.setLength(result - tokenStart<SrcCharacterType>());
11206 yylval->string.init(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
11327 yylval->string.init(tokenStart<SrcCharacterType>(), currentCharacter<SrcCharacterType>() - tokenStart<SrcCharacterType>());
11344 detectAtToken<SrcCharacterType>(result - tokenStart<SrcCharacterType>(), hasEscape);
11459 m_supportsRuleDataStack->last()->ruleHeaderRange.end = tokenStart<LChar>() - m_dataStart8.get();
11461 m_supportsRuleDataStack->last()->ruleHeaderRange.end = tokenStart<UChar>() - m_dataStart16.get();
11878 CharacterType* listEnd = tokenStart<CharacterType>();