Lines Matching refs:x

6386 for (var x = 0; x < vendors.length && !_requestAnimationFrame; ++x) {
6387 _requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];
6388 …_cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'Cancel…
9013 localeFamilies[name].forEach(function (x) {
9014 defineLocale(x.name, x.config);
13366 function multiplier(x) {
13367 var parts = x.toString().split('.');
22035 resolve: function resolve(x) {
22036 return promiseResolve(LIBRARY && this === Wrapper ? $Promise : this, x);
22299 fromCodePoint: function fromCodePoint(x) { // eslint-disable-line no-unused-vars
35482 MobileTextEditor.prototype.updateEditorPosition = function (x, y) {
35483 if (x && y) {
35484 x = parseInt(x, 10);
35488 this.editorContainer.style.left = x + 'px';
35513 x: scrollLeft,
35526 …t.offset)(this.editorContainer).left + selectedCellWidth / 2 - currentScrollPosition.x, 10) + 'px';
35589 x: that.editorContainer.offsetLeft,
35593 x: touch.pageX - onTouchPosition.x,
35599 that.updateEditorPosition(touch.pageX - onTouchOffset.x, touch.pageY - onTouchOffset.y);
42058 DragToScroll.prototype.check = function (x, y) {
42070 if (x < this.boundaries.left) {
42072 diffX = x - this.boundaries.left;
42073 } else if (x > this.boundaries.right) {
42075 diffX = x - this.boundaries.right;
48111 var eventX = event.x || event.clientX;
49584 module.exports = function (C, x) {
49586 if (isObject(x) && x.constructor === C) return x;
49589 resolve(x);
49599 module.exports = Object.is || function is(x, y) {
49601 return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;