Lines Matching refs:value

867     R.snapTo = function (values, value, tolerance) {  argument
871 while (i--) if (abs(values[i] - value) <= tolerance) {
876 var rem = value % values;
878 return value - rem;
881 return value - rem + values;
884 return value;
936 var value = range.queryCommandValue("ForeColor");
937 value = ((value & 255) << 16) | (value & 65280) | ((value & 16711680) >>> 16);
938 return "#" + ("000000" + value.toString(16)).slice(-6);
1395 R.getColor = function (value) { argument
1396 var start = this.getColor.start = this.getColor.start || {h: 0, s: 1, b: value || .75},
3478 elproto.data = function (key, value) { argument
3493 data[key] = value;
3494 eve("raphael.data.set." + this.id, this, value, key);
5035 elproto.setTime = function (anim, value) { argument
5036 if (anim && value != null) {
5037 this.status(anim, mmin(value, anim.ms) / anim.ms);
5062 elproto.status = function (anim, value) { argument
5067 if (value != null) {
5068 runAnimation(anim, this, -1, mmin(value, 1));
5241 setproto.attr = function (name, value) { argument
5248 this.items[i].attr(name, value);
5898 addArrow = function (o, value, isEnd) { argument
5900 var values = Str(value).toLowerCase().split("-"),
6015 o._.arrows[se + "String"] = value;
6051 addDashes = function (o, value, params) { argument
6052 value = dasharray[Str(value).toLowerCase()];
6053 if (value) {
6057 i = value.length;
6059 dashes[i] = value[i] * width + ((i % 2) ? 1 : -1) * butt;
6074 var value = params[att];
6075 attrs[att] = value;
6078 o.blur(value);
6085 title.firstChild.nodeValue = value;
6088 var val = R._g.doc.createTextNode(value);
6103 pn.setAttributeNS(xlink, "show", value == "blank" ? "new" : value);
6105 pn.setAttributeNS(xlink, att, value);
6109 node.style.cursor = value;
6112 o.transform(value);
6115 addArrow(o, value);
6118 addArrow(o, value, 1);
6121 var rect = Str(value).split(separator);
6138 if (!value) {
6150 $(node, {d: value ? attrs.path = R._pathToAbsolute(value) : "M0,0"});
6159 node.setAttribute(att, value);
6163 value = attrs.x;
6169 value = -attrs.x - (attrs.width || 0);
6176 node.setAttribute(att, value);
6181 node.setAttribute(att, value);
6185 value = attrs.y;
6191 value = -attrs.y - (attrs.height || 0);
6198 node.setAttribute(att, value);
6204 $(node, {rx: value, ry: value});
6206 node.setAttribute(att, value);
6212 node.setAttributeNS(xlink, "href", value);
6217 value /= mmax(abs(o._.sx), abs(o._.sy)) || 1;
6220 value *= o.paper._vbSize;
6222 node.setAttribute(att, value);
6232 addDashes(o, value, params);
6235 var isURL = Str(value).match(R._ISURL);
6259 var clr = R.getRGB(value);
6269 …((o.type == "circle" || o.type == "ellipse" || Str(value).charAt() != "r") && addGradientFill(o, v…
6277 attrs.gradient = value;
6283 clr = R.getRGB(value);
6292 …(o.type == "circle" || o.type == "ellipse" || Str(value).charAt() != "r") && addGradientFill(o, va…
6296 $(node, {"stroke-opacity": value > 1 ? value / 100 : value});
6304 $(stops[stops.length - 1], {"stop-opacity": value});
6309 att == "font-size" && (value = toInt(value, 10) + "px");
6313 node.style[cssrule] = value;
6315 node.setAttribute(att, value);
6756 elproto.attr = function (name, value) { argument
6769 if (value == null && R.is(name, "string")) {
6790 if (value == null && R.is(name, "array")) {
6797 if (value != null) {
6799 params[name] = value;
7177 args.replace(val, function (value) { argument
7182 vals.push(round(value * zoom));
7253 var addArrow = function (o, value, isEnd) { argument
7254 var values = Str(value).toLowerCase().split("-"),
7733 elproto.attr = function (name, value) { argument
7746 if (value == null && R.is(name, "string")) {
7764 if (this.attrs && value == null && R.is(name, "array")) {
7772 if (value != null) {
7774 params[name] = value;
7776 value == null && R.is(name, "object") && (params = name);