Lines Matching refs:addRegexToken

7839 function addRegexToken (token, regex, strictRegex) {
7951 addRegexToken('M', match1to2);
7952 addRegexToken('MM', match1to2, match2);
7953 addRegexToken('MMM', function (isStrict, locale) {
7956 addRegexToken('MMMM', function (isStrict, locale) {
8216 addRegexToken('Y', matchSigned);
8217 addRegexToken('YY', match1to2, match2);
8218 addRegexToken('YYYY', match1to4, match4);
8219 addRegexToken('YYYYY', match1to6, match6);
8220 addRegexToken('YYYYYY', match1to6, match6);
8358 addRegexToken('w', match1to2);
8359 addRegexToken('ww', match1to2, match2);
8360 addRegexToken('W', match1to2);
8361 addRegexToken('WW', match1to2, match2);
8432 addRegexToken('d', match1to2);
8433 addRegexToken('e', match1to2);
8434 addRegexToken('E', match1to2);
8435 addRegexToken('dd', function (isStrict, locale) {
8438 addRegexToken('ddd', function (isStrict, locale) {
8441 addRegexToken('dddd', function (isStrict, locale) {
8807 addRegexToken('a', matchMeridiem);
8808 addRegexToken('A', matchMeridiem);
8809 addRegexToken('H', match1to2);
8810 addRegexToken('h', match1to2);
8811 addRegexToken('k', match1to2);
8812 addRegexToken('HH', match1to2, match2);
8813 addRegexToken('hh', match1to2, match2);
8814 addRegexToken('kk', match1to2, match2);
8816 addRegexToken('hmm', match3to4);
8817 addRegexToken('hmmss', match5to6);
8818 addRegexToken('Hmm', match3to4);
8819 addRegexToken('Hmmss', match5to6);
9878 addRegexToken('Z', matchShortOffset);
9879 addRegexToken('ZZ', matchShortOffset);
10640 addRegexToken('G', matchSigned);
10641 addRegexToken('g', matchSigned);
10642 addRegexToken('GG', match1to2, match2);
10643 addRegexToken('gg', match1to2, match2);
10644 addRegexToken('GGGG', match1to4, match4);
10645 addRegexToken('gggg', match1to4, match4);
10646 addRegexToken('GGGGG', match1to6, match6);
10647 addRegexToken('ggggg', match1to6, match6);
10719 addRegexToken('Q', match1);
10743 addRegexToken('D', match1to2);
10744 addRegexToken('DD', match1to2, match2);
10745 addRegexToken('Do', function (isStrict, locale) {
10774 addRegexToken('DDD', match1to3);
10775 addRegexToken('DDDD', match3);
10803 addRegexToken('m', match1to2);
10804 addRegexToken('mm', match1to2, match2);
10825 addRegexToken('s', match1to2);
10826 addRegexToken('ss', match1to2, match2);
10874 addRegexToken('S', match1to3, match1);
10875 addRegexToken('SS', match1to3, match2);
10876 addRegexToken('SSS', match1to3, match3);
10880 addRegexToken(token, matchUnsigned);
11541 addRegexToken('x', matchSigned);
11542 addRegexToken('X', matchTimestamp);