Lines Matching refs:b

34         numsort = function (a, b) {  argument
35 return a - b;
629 sortByKey = function (a, b) { argument
630 return a.key - b.key;
632 sortByNumber = function (a, b) { argument
633 return toFloat(a) - toFloat(b);
718 b;
720 b = d.firstChild;
721 b.style.behavior = "url(#default#VML)";
722 if (!(b && typeof b.adj == "object")) {
956 return "hsb(" + [this.h, this.s, this.b] + ")";
964 prepareRGB = function (r, g, b) { argument
966 b = r.b;
974 b = clr.b;
976 if (r > 1 || g > 1 || b > 1) {
979 b /= 255;
982 return [r, g, b];
984 packageRGB = function (r, g, b, o) { argument
987 b *= 255;
991 b: b, property in AnonymousFunctionfecc8d702600.rgb
992 hex: R.rgb(r, g, b),
1025 clr.b = rgb.b;
1031 clr.b = rgb.b;
1043 clr.v = rgb.b;
1046 clr.r = clr.g = clr.b = clr.h = clr.s = clr.v = clr.l = -1;
1071 v = h.b;
1146 R.rgb2hsb = function (r, g, b) { argument
1147 b = prepareRGB(r, g, b);
1148 r = b[0];
1149 g = b[1];
1150 b = b[2];
1153 V = mmax(r, g, b);
1154 C = V - mmin(r, g, b);
1156 V == r ? (g - b) / C :
1157 V == g ? (b - r) / C + 2 :
1162 return {h: H, s: S, b: V, toString: hsbtoString};
1180 R.rgb2hsl = function (r, g, b) { argument
1181 b = prepareRGB(r, g, b);
1182 r = b[0];
1183 g = b[1];
1184 b = b[2];
1187 M = mmax(r, g, b);
1188 m = mmin(r, g, b);
1191 M == r ? (g - b) / C :
1192 M == g ? (b - r) / C + 2 :
1275 return {r: -1, g: -1, b: -1, hex: "none", error: 1, toString: clrToString};
1278 return {r: -1, g: -1, b: -1, hex: "none", toString: clrToString};
1337 rgb = {r: red, g: green, b: blue, toString: clrToString}; property in AnonymousFunctionfecc8d702e00.rgb
1342 return {r: -1, g: -1, b: -1, hex: "none", error: 1, toString: clrToString};
1355 R.hsb = cacher(function (h, s, b) { argument
1356 return R.hsb2rgb(h, s, b).hex;
1383 R.rgb = cacher(function (r, g, b) { argument
1384 return "#" + (16777216 | b | (g << 8) | (r << 16)).toString(16).slice(1);
1396 var start = this.getColor.start = this.getColor.start || {h: 0, s: 1, b: value || .75},
1397 rgb = this.hsb2rgb(start.h, start.s, start.b);
1402 start.s <= 0 && (this.getColor.start = {h: 0, s: 1, b: start.b});
1480 Str(pathString).replace(pathCommand, function (a, b, c) { argument
1482 name = b.toLowerCase();
1483 c.replace(pathValues, function (a, b) { argument
1484 b && params.push(+b);
1487 data.push([b][concat](params.splice(0, 2)));
1489 b = b == "m" ? "l" : "L";
1492 data.push([b][concat](params));
1494 data.push([b][concat](params.splice(0, paramCounts[name])));
1526 Str(TString).replace(tCommand, function (a, b, c) { argument
1528 name = lowerCase.call(b);
1529 c.replace(pathValues, function (a, b) { argument
1530 b && params.push(+b);
1532 data.push([b][concat](params));
2314 b = 2 * (c1x - p1x) - 2 * (c2x - c1x),
2316 t1 = (-b + math.sqrt(b * b - 4 * a * c)) / 2 / a,
2317 t2 = (-b - math.sqrt(b * b - 4 * a * c)) / 2 / a,
2334 b = 2 * (c1y - p1y) - 2 * (c2y - c1y);
2336 t1 = (-b + math.sqrt(b * b - 4 * a * c)) / 2 / a;
2337 t2 = (-b - math.sqrt(b * b - 4 * a * c)) / 2 / a;
2801 R.matrix = function (a, b, c, d, e, f) { argument
2802 return new Matrix(a, b, c, d, e, f);
2804 function Matrix(a, b, c, d, e, f) { argument
2807 this.b = +b;
2814 this.b = 0;
2837 matrixproto.add = function (a, b, c, d, e, f) { argument
2839 m = [[this.a, this.c, this.e], [this.b, this.d, this.f], [0, 0, 1]],
2840 matrix = [[a, c, e], [b, d, f], [0, 0, 1]],
2844 matrix = [[a.a, a.c, a.e], [a.b, a.d, a.f], [0, 0, 1]];
2857 this.b = out[1][0];
2872 x = me.a * me.d - me.b * me.c;
2873 …return new Matrix(me.d / x, -me.b / x, -me.c / x, me.a / x, (me.c * me.f - me.d * me.e) / x, (me.b
2883 return new Matrix(this.a, this.b, this.c, this.d, this.e, this.f);
2957 return x * this.b + y * this.d + this.f;
3004 var row = [[this.a, this.c], [this.b, this.d]];
4506 upto255(round(from[attr].b + pos * ms * diff[attr].b))
4806 b: (toColour.b - from[attr].b) / ms property in runAnimation.diff
4845 m.b,
4855 (to2.matrix.b - m.b) / ms,