Lines Matching refs:regexInfo
2464 function find(code, regexInfo) {
2465 function defaultAdd(match, regexInfo) {
2472 process = regexInfo.func ? regexInfo.func : defaultAdd,
2475 while (match = _syntaxhighlighterRegex.XRegExp.exec(code, regexInfo.regex, pos)) {
2476 var resultMatch = process(match, regexInfo);
2478 …esultMatch === 'string') resultMatch = [new _match.Match(resultMatch, match.index, regexInfo.css)];
3896 function hereDocProcess(match, regexInfo) {
4051 function fixComments(match, regexInfo) {
5069 function multiLineCCommentsAdd(match, regexInfo) {
5093 …esult.push(new Match(str.substring(matchStart, pos + 2), matchStart + match.index, regexInfo.css));
5105 function stringAdd(match, regexInfo) {
5115 …esult.push(new Match(str.substring(matchStart, pos + 2), matchStart + match.index, regexInfo.css));
5135 …lt.push(new Match(str.substring(matchStart, str.length), matchStart + match.index, regexInfo.css));
5309 function process(match, regexInfo) {