Lines Matching refs:_value
984 log: function(_value){ argument
991 warn: function(_value){ argument
998 info: function(_value){ argument
1005 debug: function(_value){ argument
1012 error: function(_value){ argument
1019 trace: function(_value){ argument
1033 dir:function(_value){ argument
1035 d.console.addLine().attribute.addClass("Arrow").update(">>> console.dir("+_value+")");
1036 d.dom.open(_value,d.console.addLine());
1187 highlight:function(_value,_inObject,_inArray,_link){ argument
1189 var isArray = false, isHash, isElement = false, vtype=typeof _value, result=[];
1192 if(Object.prototype.toString.call(_value) === "[object Date]"){
1194 } else if(Object.prototype.toString.call(_value) === "[object String]"){
1196 } else if(Object.prototype.toString.call(_value) === "[object Boolean]"){
1198 } else if(Object.prototype.toString.call(_value) === "[object RegExp]"){
1204 isArray = lib.util.IsArray(_value);
1205 isHash = lib.util.IsHash(_value);
1206 isElement = _value!=undefined&&Boolean(_value.nodeName)&&Boolean(_value.nodeType);
1209 …if(_value==null||vtype=="number"||vtype=="string"||vtype=="boolean"||(vtype=="function"&&_value.no…
1210 if(_value==null){
1211 if(_value===undefined) {
1217 result.push("<span class='Maroon'>" + _value + "</span>");
1219 result.push("<span class='DarkBlue'>'" + _value + "'</span>");
1221 result.push("<span class='DarkBlue'>" + _value + "</span>");
1225 …sult.push("<span class='Red'>\""+( !_inObject&&!_inArray?_value : _value.substring(0,35)+(_value.l…
1231 if(_value.nodeType==3)
1232 result.push(d.highlight(_value.nodeValue));
1234 result.push("<span class='Gray Italic'>"+_value.nodeName.toLowerCase()+"</span>");
1236 …irebug.d.html.inspect(firebug.d.console.cache[" +( d.console.cache.push( _value ) -1 )+"])'" ) + "…
1239 result.push(_value.nodeName.toLowerCase());
1240 if(_value.getAttribute){
1241 if(_value.getAttribute&&_value.getAttribute("id"))
1242 result.push("<span class='DarkBlue'>#"+_value.getAttribute("id")+"</span>");
1243 … var elClass = _value.getAttribute(lib.env.ie&&!lib.env.ie8?"className":"class")||"";
1248 …result.push("<span class='DarkBlue'><<span class='Blue TagName'>"+ _value.nodeName.toLowerCase…
1250 if(_value.attributes){
1251 for(var i=0,len=_value.attributes.length; i<len; i++){
1252 var item = _value.attributes[i];
1267 result.push("<span class='Gray Italic'>["+_value.length+"]</span>");
1271 for(var i=0,len=_value.length; i<len; i++){
1276 result.push( (i > 0 ? ", " : "") + d.highlight(_value[i], false, true, true) );
1284 …ink\")' onclick='firebug.d.console.openObject(" +( d.console.cache.push( _value ) -1 )+")'" ) + ">…
1286 for(var key in _value){
1287 var value = _value[key];
1298 result.push(["<span class'Gray Italic'>"+_value+"</span>"]);
1946 count:function(_array,_value){ argument
1949 count+=Number(arguments[0]==_value);
1962 indexOf:function(_array,_value){ argument
1964 return _array.indexOf(_value);
1969 if(_array[i]==_value){
2058 setClass:function(_element,_value){ argument
2060 _element.setAttribute("className", _value );
2061 _element.setAttribute("class", _value );
2063 _element.setAttribute(pi.env.ie?"className":"class", _value );
2080 setOpacity:function(_element,_value){ argument
2082 return pi.util.Element.addStyle(_element,{ "opacity":_value });
2083 _value*=100;
2084 pi.util.Element.addStyle(_element,{ "filter":"alpha(opacity="+_value+")" });
2250 …setter = function(_property,_value){ this[_property] = _value; return _branch._parent_||_branch; }; argument
2332 "update":function(_value){ argument
2333 …oLowerCase()=="textarea"||this.element.nodeName.toLowerCase()=="input"?"value":"innerHTML"]=_value;
2354 "set":function(_name,_value){ argument
2355 this._parent_.environment.getElement().setAttribute(_name,_value);
2374 "setClass":function(_value){ argument
2375 return pi.util.Element.setClass( this._parent_.environment.getElement(), _value );
2418 "setElement":function(_value){ argument
2419 this._parent_.element = _value;
2422 this._setElement(_value);
2519 "setApi":function(_value){ argument
2520 this._parent_.api = _value;
2521 this._setApi(_value);
2527 "addData": function(_key,_value){ argument
2528 this.getData()[_key] = _value;
2531 "setType": function(_value){ argument
2532 this._setType(_value);