Lines Matching refs:type

319 …R.type = (g.win.SVGAngle || g.doc.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Ba…
320 if (R.type == "VML") {
327 return (R.type = E);
343 R.svg = !(R.vml = R.type == "VML");
383 R.is = function (o, type) { argument
384 type = lowerCase.call(type);
385 if (type == "finite") {
388 if (type == "array") {
391 return (type == "null" && o === null) ||
392 (type == typeof o && o !== null) ||
393 (type == "object" && o === Object(o)) ||
394 (type == "array" && Array.isArray && Array.isArray(o)) ||
395 objectToString.call(o).slice(8, -1).toLowerCase() == type;
2722 return function (obj, type, fn, element) { argument
2727 obj.addEventListener(type, f, false);
2729 if (supportsTouch && touchMap[type]) {
2746 obj.addEventListener(touchMap[type], _f, false);
2750 obj.removeEventListener(type, f, false);
2752 if (supportsTouch && touchMap[type])
2753 obj.removeEventListener(touchMap[type], _f, false);
2759 return function (obj, type, fn, element) { argument
2770 obj.attachEvent("on" + type, f);
2772 obj.detachEvent("on" + type, f);
3706 var rp = this.realPath = getPath[this.type](this);
3738 this.realPath = getPath[this.type](this);
3748 this.realPath = getPath[this.type](this);
3767 var out = this.paper[this.type]().attr(this.attr());
3793 if (this.type == "text") {
3808 path = this.realPath || getPath[this.type](this);
3981 getPath = R._getPath[this.type];
3983 if (this.type == "text" || this.type == "set") {
4820 this.type = "set";
5270 elements[has](j.type) && res.push(this[j.type]().attr(j));