Lines Matching refs:addRegexToken

667 function addRegexToken (token, regex, strictRegex) {  function
757 addRegexToken('Y', matchSigned);
758 addRegexToken('YY', match1to2, match2);
759 addRegexToken('YYYY', match1to4, match4);
760 addRegexToken('YYYYY', match1to6, match6);
761 addRegexToken('YYYYYY', match1to6, match6);
907 addRegexToken('M', match1to2);
908 addRegexToken('MM', match1to2, match2);
909 addRegexToken('MMM', function (isStrict, locale) {
912 addRegexToken('MMMM', function (isStrict, locale) {
1248 addRegexToken('w', match1to2);
1249 addRegexToken('ww', match1to2, match2);
1250 addRegexToken('W', match1to2);
1251 addRegexToken('WW', match1to2, match2);
1322 addRegexToken('d', match1to2);
1323 addRegexToken('e', match1to2);
1324 addRegexToken('E', match1to2);
1325 addRegexToken('dd', function (isStrict, locale) {
1328 addRegexToken('ddd', function (isStrict, locale) {
1331 addRegexToken('dddd', function (isStrict, locale) {
1697 addRegexToken('a', matchMeridiem);
1698 addRegexToken('A', matchMeridiem);
1699 addRegexToken('H', match1to2);
1700 addRegexToken('h', match1to2);
1701 addRegexToken('k', match1to2);
1702 addRegexToken('HH', match1to2, match2);
1703 addRegexToken('hh', match1to2, match2);
1704 addRegexToken('kk', match1to2, match2);
1706 addRegexToken('hmm', match3to4);
1707 addRegexToken('hmmss', match5to6);
1708 addRegexToken('Hmm', match3to4);
1709 addRegexToken('Hmmss', match5to6);
2799 addRegexToken('Z', matchShortOffset);
2800 addRegexToken('ZZ', matchShortOffset);
3562 addRegexToken('G', matchSigned);
3563 addRegexToken('g', matchSigned);
3564 addRegexToken('GG', match1to2, match2);
3565 addRegexToken('gg', match1to2, match2);
3566 addRegexToken('GGGG', match1to4, match4);
3567 addRegexToken('gggg', match1to4, match4);
3568 addRegexToken('GGGGG', match1to6, match6);
3569 addRegexToken('ggggg', match1to6, match6);
3641 addRegexToken('Q', match1);
3665 addRegexToken('D', match1to2);
3666 addRegexToken('DD', match1to2, match2);
3667 addRegexToken('Do', function (isStrict, locale) {
3696 addRegexToken('DDD', match1to3);
3697 addRegexToken('DDDD', match3);
3725 addRegexToken('m', match1to2);
3726 addRegexToken('mm', match1to2, match2);
3747 addRegexToken('s', match1to2);
3748 addRegexToken('ss', match1to2, match2);
3796 addRegexToken('S', match1to3, match1);
3797 addRegexToken('SS', match1to3, match2);
3798 addRegexToken('SSS', match1to3, match3);
3802 addRegexToken(token, matchUnsigned);
4476 addRegexToken('x', matchSigned);
4477 addRegexToken('X', matchTimestamp);