Home | History | Annotate | Download | only in docs

Lines Matching refs:sourceCode

516     * where index_n is an index into the sourceCode, and style_n is a style
518 * all characters in sourceCode[index_n-1:index_n].
562 return function (sourceCode, opt_basePos) {
566 var pos = 0; // index into sourceCode
567 var tail = sourceCode;
695 * decorator that takes sourceCode as plain text and that returns a
750 * @param {string} sourceCode as plain text
807 return function (sourceCode) {
812 var decorations = splitStringAndCommentTokens(sourceCode);
815 decorations = splitNonStringNonCommentTokens(sourceCode, decorations);
922 function decorateMarkup(sourceCode) {
940 var decorations = tokenizeMarkup(sourceCode);
941 decorations = splitTagAttributes(sourceCode, decorations);
942 decorations = splitSourceNodes(sourceCode, decorations);
943 decorations = splitSourceAttributes(sourceCode, decorations);