Lines Matching refs:rawInput
1078 EventSource.parse = function (rawInput, calendar) {
1080 if (typeof rawInput === 'object') {
1081 if (source.applyProps(rawInput)) {
1120 EventSource.prototype.parseEventDef = function (rawInput) {
1124 rawInput = calendarTransform(rawInput, this.calendar); property
1127 rawInput = sourceTransform(rawInput, this.calendar); property
1129 return EventDefParser_1.default.parse(rawInput, this);
3011 EventDef.parse = function (rawInput, source) {
3013 if (def.applyProps(rawInput)) {
3159 parse: function (rawInput, calendar) { argument
3164 eventSource = sourceClasses[i].parse(rawInput, calendar);
5974 ArrayEventSource.parse = function (rawInput, calendar) {
5977 if ($.isArray(rawInput.events)) { // extended form
5978 rawProps = rawInput;
5980 else if ($.isArray(rawInput)) { // short form
5981 rawProps = { events: rawInput };
8529 Constraints.prototype.parseFootprints = function (rawInput) {
8532 if (rawInput.start) {
8533 start = this._calendar.moment(rawInput.start);
8538 if (rawInput.end) {
8539 end = this._calendar.moment(rawInput.end);
9286 FuncEventSource.parse = function (rawInput, calendar) {
9289 if ($.isFunction(rawInput.events)) { // extended form
9290 rawProps = rawInput;
9292 else if ($.isFunction(rawInput)) { // short form
9293 rawProps = { events: rawInput };
9341 JsonFeedEventSource.parse = function (rawInput, calendar) {
9344 if (typeof rawInput.url === 'string') { // extended form
9345 rawProps = rawInput;
9347 else if (typeof rawInput === 'string') { // short form
9348 rawProps = { url: rawInput };