Lines Matching refs:_value

973         log: function(_value){
980 warn: function(_value){
987 info: function(_value){
994 debug: function(_value){
1001 error: function(_value){
1008 trace: function(_value){
1022 dir:function(_value){
1024 d.console.addLine().attribute.addClass("Arrow").update(">>> console.dir("+_value+")");
1025 d.dom.open(_value,d.console.addLine());
1176 highlight:function(_value,_inObject,_inArray,_link){
1178 var isArray = false, isHash, isElement = false, vtype=typeof _value, result=[];
1181 if(Object.prototype.toString.call(_value) === "[object Date]"){
1183 } else if(Object.prototype.toString.call(_value) === "[object String]"){
1185 } else if(Object.prototype.toString.call(_value) === "[object Boolean]"){
1187 } else if(Object.prototype.toString.call(_value) === "[object RegExp]"){
1193 isArray = lib.util.IsArray(_value);
1194 isHash = lib.util.IsHash(_value);
1195 isElement = _value!=undefined&&Boolean(_value.nodeName)&&Boolean(_value.nodeType);
1198 …if(_value==null||vtype=="number"||vtype=="string"||vtype=="boolean"||(vtype=="function"&&_value.no…
1199 if(_value==null){
1200 if(_value===undefined) {
1206 result.push("<span class='Maroon'>" + _value + "</span>");
1208 result.push("<span class='DarkBlue'>'" + _value + "'</span>");
1210 result.push("<span class='DarkBlue'>" + _value + "</span>");
1214 …sult.push("<span class='Red'>\""+( !_inObject&&!_inArray?_value : _value.substring(0,35)+(_value.l…
1220 if(_value.nodeType==3)
1221 result.push(d.highlight(_value.nodeValue));
1223 result.push("<span class='Gray Italic'>"+_value.nodeName.toLowerCase()+"</span>");
1225 …irebug.d.html.inspect(firebug.d.console.cache[" +( d.console.cache.push( _value ) -1 )+"])'" ) + "…
1228 result.push(_value.nodeName.toLowerCase());
1229 if(_value.getAttribute){
1230 if(_value.getAttribute&&_value.getAttribute("id"))
1231 result.push("<span class='DarkBlue'>#"+_value.getAttribute("id")+"</span>");
1232 … var elClass = _value.getAttribute(lib.env.ie&&!lib.env.ie8?"className":"class")||"";
1237 …result.push("<span class='DarkBlue'>&#60;<span class='Blue TagName'>"+ _value.nodeName.toLowerCase…
1239 if(_value.attributes){
1240 for(var i=0,len=_value.attributes.length; i<len; i++){
1241 var item = _value.attributes[i];
1256 result.push("<span class='Gray Italic'>["+_value.length+"]</span>");
1260 for(var i=0,len=_value.length; i<len; i++){
1265 result.push( (i > 0 ? ", " : "") + d.highlight(_value[i], false, true, true) );
1273 …ink\")' onclick='firebug.d.console.openObject(" +( d.console.cache.push( _value ) -1 )+")'" ) + ">…
1275 for(var key in _value){
1276 var value = _value[key];
1287 result.push(["<span class'Gray Italic'>"+_value+"</span>"]);
1935 count:function(_array,_value){ argument
1938 count+=Number(arguments[0]==_value);
1951 indexOf:function(_array,_value){ argument
1953 return _array.indexOf(_value);
1958 if(_array[i]==_value){
2047 setClass:function(_element,_value){ argument
2049 _element.setAttribute("className", _value );
2050 _element.setAttribute("class", _value );
2052 _element.setAttribute(pi.env.ie?"className":"class", _value );
2069 setOpacity:function(_element,_value){ argument
2071 return pi.util.Element.addStyle(_element,{ "opacity":_value });
2072 _value*=100;
2073 pi.util.Element.addStyle(_element,{ "filter":"alpha(opacity="+_value+")" });
2239 …setter = function(_property,_value){ this[_property] = _value; return _branch._parent_||_branch; }; argument
2321 "update":function(_value){ argument
2322 …oLowerCase()=="textarea"||this.element.nodeName.toLowerCase()=="input"?"value":"innerHTML"]=_value;
2343 "set":function(_name,_value){ argument
2344 this._parent_.environment.getElement().setAttribute(_name,_value);
2363 "setClass":function(_value){ argument
2364 return pi.util.Element.setClass( this._parent_.environment.getElement(), _value );
2407 "setElement":function(_value){ argument
2408 this._parent_.element = _value;
2411 this._setElement(_value);
2508 "setApi":function(_value){ argument
2509 this._parent_.api = _value;
2510 this._setApi(_value);
2516 "addData": function(_key,_value){ argument
2517 this.getData()[_key] = _value;
2520 "setType": function(_value){ argument
2521 this._setType(_value);