Lines Matching refs:t

1957 	  var i, t;
1961 for (i = 0; (t = transforms[i]); i++) {
1962 transformList.appendItem(wrapMatrix(transformList, t));
2923 var attrs = reduce(traits, function(attrs, t) { argument
2924 return assign(attrs, defaultTraits[t] || {});
3267 var paramCounts = { a: 7, c: 6, h: 1, l: 2, m: 2, q: 4, s: 4, t: 2, v: 1, z: 0 }, property in parsePathString.paramCounts
3357 function findDotsAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { argument
3358 var t1 = 1 - t,
3361 t2 = t * t,
3362 t3 = t2 * t,
3363 x = t13 * p1x + t12 * 3 * t * c1x + t1 * 3 * t * t * c2x + t3 * p2x,
3364 y = t13 * p1y + t12 * 3 * t * c1y + t1 * 3 * t * t * c2y + t3 * p2y;
3408 function base3(t, p1, p2, p3, p4) { argument
3410 t2 = t * t1 + 6 * p1 - 12 * p2 + 6 * p3;
3411 return t * t2 - 3 * p1 + 3 * p2;
3506 dots1.push({ x: p.x, y: p.y, t: i / n1 });
3511 dots2.push({ x: p.x, y: p.y, t: i / n2 });
3535 var t1 = di.t + abs$7((is[ci] - di[ci]) / (di1[ci] - di[ci])) * (di1.t - di.t),
3536 t2 = dj.t + abs$7((is[cj] - dj[cj]) / (dj1[cj] - dj[cj])) * (dj1.t - dj.t);
3863 t = math.tan(df / 4),
3864 hx = 4 / 3 * rx * t,
3865 hy = 4 / 3 * ry * t,
3895 a, b, c, t, t1, t2, b2ac, sqrtb2ac;
3915 t = -c / b;
3917 if (0 < t && t < 1) {
3918 tvalues.push(t);
3949 t = tvalues[j];
3950 mt = 1 - t;
3951 …bounds[0][j] = (mt * mt * mt * x0) + (3 * mt * mt * t * x1) + (3 * mt * t * t * x2) + (t * t * t *…
3952 …bounds[1][j] = (mt * mt * mt * y0) + (3 * mt * mt * t * y1) + (3 * mt * t * t * y2) + (t * t * t *…
7779 DescriptorBuilder.prototype.addTrait = function(t, inherited) { argument
7784 var typeName = t.name;
7790 forEach(t.properties, bind$2(function(p) {
7799 value: t
7819 types.push(t);
7820 typesByName[typeName] = t;
23906 var t = this.lastTouches[i];
23907 var dx = Math.abs(x - t.x), dy = Math.abs(y - t.y);
26338 return some(types, function(t) { argument
26339 return is$1(element, t);
52685 t: /top/,
52696 t: /top/,
53311 return directions && /^h|v|t|r|b|l:h|v|t|r|b|l$/.test(directions);
53315 return directions && /t|r|b|l/.test(directions);
57282 tokens.forEach(function(t) { argument
57283 if (t.matched) {
57284 …htmlText += '<strong class="' + SearchPad.RESULT_HIGHLIGHT_CLASS + '">' + escapeHTML(t.matched) + …
57286 htmlText += escapeHTML(t.normal);
57405 var matched = filter(tokens, function(t) { argument
57406 return !!t.matched;