Lines Matching refs:strict

7210 function createUTC (input, format, locale, strict) {
7211 return createLocalOrUTC(input, format, locale, strict, true).utc();
7997 function handleStrictParse(monthName, format, strict) {
8011 if (strict) {
8038 function localeMonthsParse (monthName, format, strict) {
8042 return handleStrictParse.call(this, monthName, format, strict);
8057 if (strict && !this._longMonthsParse[i]) {
8061 if (!strict && !this._monthsParse[i]) {
8066 if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) {
8068 } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) {
8070 } else if (!strict && this._monthsParse[i].test(monthName)) {
8507 function handleStrictParse$1(weekdayName, format, strict) {
8522 if (strict) {
8571 function localeWeekdaysParse (weekdayName, format, strict) {
8575 return handleStrictParse$1.call(this, weekdayName, format, strict);
8589 if (strict && !this._fullWeekdaysParse[i]) {
8599 if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) {
8601 } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) {
8603 } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) {
8605 } else if (!strict && this._weekdaysParse[i].test(weekdayName)) {
9687 function createLocalOrUTC (input, format, locale, strict, isUTC) {
9691 strict = locale;
9706 c._strict = strict;
9711 function createLocal (input, format, locale, strict) {
9712 return createLocalOrUTC(input, format, locale, strict, false);
10604 strict: this._strict
21127 strict: void 0,
29228 if (this.cellProperties.strict === true) {
29606 if (this.cellProperties.strict) {
35300 this.cellProperties.strict = true;
35311 if (cellMeta.strict === void 0) {
35313 cellMeta.strict = true;
48989 if (this.strict && this.source) {