Lines Matching refs:slice

450       var r = t.slice(),
526 type = fabric.util.string.camelize(type.charAt(0).toUpperCase() + type.slice(1));
763 capitalizedPropName = propName.charAt(0).toUpperCase() + propName.slice(1),
1139 var slice = Array.prototype.slice; variable
1317 var args = slice.call(arguments, 2), result = [ ];
1464 (firstLetterOnly ? string.slice(1) : string.slice(1).toLowerCase());
1496 var slice = Array.prototype.slice,
1509 var _this = this, args = slice.call(arguments, 1), bound;
1512 …return apply.call(_this, this instanceof Dummy ? this : thisArg, args.concat(slice.call(arguments)…
1534 var slice = Array.prototype.slice, emptyFunction = function() { },
1587 ? fn.apply(this, slice.call(arguments, 1))
1600 properties = slice.call(arguments, 0);
1639 var methodNames = Array.prototype.slice.call(arguments, 1),
1934 var _slice = Array.prototype.slice;
3041 args = m.slice(2).map(parseFloat);
3902 var gradientId = instanceFillValue.slice(5, instanceFillValue.length - 1);
4827 var value = color.slice(color.indexOf('#') + 1),
4978 this.colorStops = options.colorStops.slice();
6102 this.viewportTransform = this.viewportTransform.slice();
15536 path: this.path.map(function(item) { return item.slice() }),
15617 coordsStr = currentPath.slice(1).trim();
15639 result.push([ command ].concat(coordsParsed.slice(k, k + commandLength)));
17471 alignX = align !== 'none' ? align.slice(1, 4) : 'none';
17472 alignY = align !== 'none' ? align.slice(5, 8) : 'none';
20745 var textBeforeCursor = this.text.slice(0, selectionStart),
21693 return this.text.slice(this.selectionStart, this.selectionEnd);
22026 this.text = this.text.slice(0, start) +
22027 this.text.slice(end);
22036 var isEndOfLine = this.text.slice(this.selectionStart, this.selectionStart + 1) === '\n';
22038 this.text = this.text.slice(0, this.selectionStart) +
22040 this.text.slice(this.selectionEnd);
22678 textBeforeCursor = this.text.slice(0, selectionProp),
22679 textAfterCursor = this.text.slice(selectionProp),
22681 textOnSameLineBeforeCursor = textBeforeCursor.slice(textBeforeCursor.lastIndexOf('\n') + 1),
22827 var textBeforeCursor = this.text.slice(0, selectionProp),
22828 textOnSameLineBeforeCursor = textBeforeCursor.slice(textBeforeCursor.lastIndexOf('\n') + 1),
23132 … var isBeginningOfLine = this.text.slice(this.selectionStart - 1, this.selectionStart) === '\n';
23135 this.text = this.text.slice(0, this.selectionStart) +
23136 this.text.slice(this.selectionStart + 1);