Lines Matching refs:C

4894   C: 67,
11852 case _unicode.KEY_CODES.C:
13715 var C = Base;
13717 var proto = C && C.prototype;
13732 if (typeof C != 'function' || !(IS_WEAK || proto.forEach && !fails(function () {
13733 new C().entries().next();
13736 C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);
13737 redefineAll(C.prototype, methods);
13740 var instance = new C();
13746 …var ACCEPT_ITERABLES = $iterDetect(function (iter) { new C(iter); }); // eslint-disable-line no-new
13750 var $instance = new C();
13756 C = wrapper(function (target, iterable) {
13757 anInstance(target, C, NAME);
13758 var that = inheritIfRequired(new Base(), target, C);
13762 C.prototype = proto;
13763 proto.constructor = C;
13775 setToStringTag(C, NAME);
13777 O[NAME] = C;
13778 $export($export.G + $export.W + $export.F * (C != Base), O);
13780 if (!IS_WEAK) common.setStrong(C, NAME, IS_MAP);
13782 return C;
21585 var C = typeof this == 'function' ? this : Array;
21594 if (iterFn != undefined && !(C == Array && isArrayIter(iterFn))) {
21595 for (iterator = iterFn.call(O), result = new C(); !(step = iterator.next()).done; index++) {
21600 for (result = new C(length); length > index; index++) {
22011 newPromiseCapabilityModule.f = newPromiseCapability = function (C) {
22012 return C === $Promise || C === Wrapper
22013 ? new OwnPromiseCapability(C)
22014 : newGenericPromiseCapability(C);
22044 var C = this;
22045 var capability = newPromiseCapability(C);
22057 C.resolve(promise).then(function (value) {
22071 var C = this;
22072 var capability = newPromiseCapability(C);
22076 C.resolve(promise).then(capability.resolve, reject);
29081 if (event.keyCode === _unicode.KEY_CODES.C && (event.ctrlKey || event.metaKey)) {
30789 var C = wrapper(function (that, iterable) {
30790 anInstance(that, C, NAME, '_i');
30798 redefineAll(C.prototype, {
30845 if (DESCRIPTORS) dP(C.prototype, 'size', {
30850 return C;
30876 setStrong: function (C, NAME, IS_MAP) {
30879 $iterDefine(C, NAME, function (iterated, kind) {
30962 var C = wrapper(function (that, iterable) {
30963 anInstance(that, C, NAME, '_i');
30969 redefineAll(C.prototype, {
30987 return C;
31180 function PromiseCapability(C) {
31182 this.promise = new C(function ($$resolve, $$reject) {
31191 module.exports.f = function (C) {
31192 return new PromiseCapability(C);
31325 var C = global[KEY];
31326 if (DESCRIPTORS && C && !C[SPECIES]) dP.f(C, SPECIES, {
41790 if (event.keyCode == _unicode.KEY_CODES.C) {
49287 var C;
49289 C = original.constructor;
49291 if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
49292 if (isObject(C)) {
49293 C = C[SPECIES];
49294 if (C === null) C = undefined;
49296 } return C === undefined ? Array : C;
49359 module.exports = function (that, target, C) {
49362 …if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPr…
49584 module.exports = function (C, x) {
49585 anObject(C);
49586 if (isObject(x) && x.constructor === C) return x;
49587 var promiseCapability = newPromiseCapability.f(C);
49614 var C = anObject(O).constructor;
49616 return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S);