Lines Matching refs:proto

10909 var proto = Moment.prototype;
10911 proto.add = add;
10912 proto.calendar = calendar$1;
10913 proto.clone = clone;
10914 proto.diff = diff;
10915 proto.endOf = endOf;
10916 proto.format = format;
10917 proto.from = from;
10918 proto.fromNow = fromNow;
10919 proto.to = to;
10920 proto.toNow = toNow;
10921 proto.get = stringGet;
10922 proto.invalidAt = invalidAt;
10923 proto.isAfter = isAfter;
10924 proto.isBefore = isBefore;
10925 proto.isBetween = isBetween;
10926 proto.isSame = isSame;
10927 proto.isSameOrAfter = isSameOrAfter;
10928 proto.isSameOrBefore = isSameOrBefore;
10929 proto.isValid = isValid$2;
10930 proto.lang = lang;
10931 proto.locale = locale;
10932 proto.localeData = localeData;
10933 proto.max = prototypeMax;
10934 proto.min = prototypeMin;
10935 proto.parsingFlags = parsingFlags;
10936 proto.set = stringSet;
10937 proto.startOf = startOf;
10938 proto.subtract = subtract;
10939 proto.toArray = toArray;
10940 proto.toObject = toObject;
10941 proto.toDate = toDate;
10942 proto.toISOString = toISOString;
10943 proto.inspect = inspect;
10944 proto.toJSON = toJSON;
10945 proto.toString = toString;
10946 proto.unix = unix;
10947 proto.valueOf = valueOf;
10948 proto.creationData = creationData;
10951 proto.year = getSetYear;
10952 proto.isLeapYear = getIsLeapYear;
10955 proto.weekYear = getSetWeekYear;
10956 proto.isoWeekYear = getSetISOWeekYear;
10959 proto.quarter = proto.quarters = getSetQuarter;
10962 proto.month = getSetMonth;
10963 proto.daysInMonth = getDaysInMonth;
10966 proto.week = proto.weeks = getSetWeek;
10967 proto.isoWeek = proto.isoWeeks = getSetISOWeek;
10968 proto.weeksInYear = getWeeksInYear;
10969 proto.isoWeeksInYear = getISOWeeksInYear;
10972 proto.date = getSetDayOfMonth;
10973 proto.day = proto.days = getSetDayOfWeek;
10974 proto.weekday = getSetLocaleDayOfWeek;
10975 proto.isoWeekday = getSetISODayOfWeek;
10976 proto.dayOfYear = getSetDayOfYear;
10979 proto.hour = proto.hours = getSetHour;
10982 proto.minute = proto.minutes = getSetMinute;
10985 proto.second = proto.seconds = getSetSecond;
10988 proto.millisecond = proto.milliseconds = getSetMillisecond;
10991 proto.utcOffset = getSetOffset;
10992 proto.utc = setOffsetToUTC;
10993 proto.local = setOffsetToLocal;
10994 proto.parseZone = setOffsetToParsedOffset;
10995 proto.hasAlignedHourOffset = hasAlignedHourOffset;
10996 proto.isDST = isDaylightSavingTime;
10997 proto.isLocal = isLocal;
10998 proto.isUtcOffset = isUtcOffset;
10999 proto.isUtc = isUtc;
11000 proto.isUTC = isUtc;
11003 proto.zoneAbbr = getZoneAbbr;
11004 proto.zoneName = getZoneName;
11007 proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth);
11008 proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth);
11009 proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear);
11010 proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momen…
11011 proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnin…
11557 hooks.fn = proto;
11583 hooks.prototype = proto;
13717 var proto = C && C.prototype;
13720 var fn = proto[KEY];
13721 redefine(proto, KEY,
13732 if (typeof C != 'function' || !(IS_WEAK || proto.forEach && !fails(function () {
13762 C.prototype = proto;
13763 proto.constructor = C;
13772 if (IS_WEAK && proto.clear) delete proto.clear;
15779 var proto = void 0;
15790 proto = priv.columnSettings[j].prototype;
15801 (0, _object.extend)(proto, column);
15802 (0, _object.extend)(proto, expandType(column));
22688 var proto = $WeakMap.prototype;
22689 var method = proto[key];
22690 redefine(proto, key, function (a, b) {
22888 var proto = Collection && Collection.prototype;
22890 if (proto) {
22891 if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);
22892 if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);
22894 …if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);
31111 if (!BUGGY && kind in proto) return proto[kind];
31120 var proto = Base.prototype;
31121 var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];
31124 var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;
31142 if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {
31143 hide(proto, ITERATOR, $default);
31155 if (!(key in proto)) redefine(proto, key, methods[key]);
31290 var check = function (O, proto) {
31292 if (!isObject(proto) && proto !== null) throw TypeError(proto + ": can't set as prototype!");
31302 return function setPrototypeOf(O, proto) {
31303 check(O, proto);
31304 if (buggy) O.__proto__ = proto;
31305 else set(O, proto);