Searched refs:tokenStart (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DParsedContentType.cpp60 unsigned tokenStart = startIndex; local
68 return SubstringRange(tokenStart, tokenEnd - tokenStart);
72 return SubstringRange(tokenStart, tokenEnd - tokenStart);
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/
H A DInspectorValues.cpp189 Token parseToken(const UChar* start, const UChar* end, const UChar** tokenStart, const UChar** tokenEnd) argument
197 *tokenStart = start;
338 const UChar* tokenStart; local
340 Token token = parseToken(start, end, &tokenStart, &tokenEnd);
355 double value = charactersToDouble(tokenStart, tokenEnd - tokenStart, &ok);
363 bool ok = decodeString(tokenStart + 1, tokenEnd - 1, &value);
372 token = parseToken(start, end, &tokenStart, &tokenEnd);
381 token = parseToken(start, end, &tokenStart, &tokenEnd);
384 token = parseToken(start, end, &tokenStart,
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/certcrl/
H A Dscript.cpp252 const unsigned char *tokenStart = cp; local
255 unsigned tokenLen = cp - tokenStart;
257 memmove(key, tokenStart, tokenLen);
300 tokenStart = cp;
306 if(cp != tokenStart) {
307 tokenLen = cp - tokenStart;
309 memmove(value, tokenStart, tokenLen);
337 tokenStart = cp;
341 tokenLen = cp - tokenStart;
347 memmove(value, tokenStart, tokenLe
[all...]
/macosx-10.10/apache-793/httpd/docs/manual/style/scripts/
H A Dprettify.js758 var tokenStart = pos;
762 decorations.push(basePos + tokenStart, style);
777 basePos + tokenStart,
782 basePos + tokenStart + embeddedSourceStart,
788 basePos + tokenStart + embeddedSourceEnd,
H A Dprettify.min.js57 var tokenStart=pos;pos+=token.length;if(!isEmbedded){decorations.push(basePos+tokenStart,style);}else{var embeddedSource=match[1];var embeddedSourceStart=token.indexOf(embeddedSource);var embeddedSourceEnd=embeddedSourceStart+embeddedSource.length;if(match[2]){embeddedSourceEnd=token.length-match[2].length;embeddedSourceStart=embeddedSourceEnd-embeddedSource.length;}
58 var lang=style.substring(5);appendDecorations(basePos+tokenStart,token.substring(0,embeddedSourceStart),decorate,decorations);appendDecorations(basePos+tokenStart+embeddedSourceStart,embeddedSource,langHandlerForExtension(lang,embeddedSource),decorations);appendDecorations(basePos+tokenStart+embeddedSourceEnd,token.substring(embeddedSourceEnd),decorate,decorations);}}
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSParser.h436 inline CharacterType* tokenStart();
679 inline void CSSParser::setTokenStart<LChar>(LChar* tokenStart) argument
681 m_tokenStart.ptr8 = tokenStart;
685 inline void CSSParser::setTokenStart<UChar>(UChar* tokenStart) argument
687 m_tokenStart.ptr16 = tokenStart;
H A DCSSParser.cpp10140 inline LChar* CSSParser::tokenStart<LChar>() function in class:WebCore::CSSParser
10146 inline UChar* CSSParser::tokenStart<UChar>() function in class:WebCore::CSSParser
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<CharacterTyp
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DParser.h573 return sourceProvider->getRange(tokenStart(), tokenEndPosition().offset);
586 ALWAYS_INLINE unsigned tokenStart()
603 return tokenStart() - tokenLineStart();
H A DParser.cpp950 int start = tokenStart();

Completed in 139 milliseconds