Home
last modified time | relevance | path

Searched refs:num (Results 251 – 258 of 258) sorted by last modified time

1...<<11

/plugin/lastfm/inc/
H A Dlastfmutils.php68 $num = count($data);
71 for($i=0;$i<$num;$i++) {
110 $num = count($data);
113 for($i=0;$i<$num;$i++) {
132 $num = count($data);
135 for($i=0;$i<$num;$i++) {
/plugin/jalbum/syntax/
H A Dslideshow.php104 if (isset($num) && $cc>=$num) { break; }
/plugin/stars/
H A Dreadme.txt18 Usage: [stars=num] where num is a number, eg: 5, or a ratio, eg: 5/7
/plugin/code3/src/
H A Dpsyhi.js96 var getColorizedString = function (num,str) { argument
98 … s += "<li class=\""+(num%2?"odd":"even")+"\" ><pre>"+str+"</pre></li>"//<strong>"+num+".</strong>"
/plugin/nroff/
H A Drenderer.php1046 $num = '';
1047 while(in_array($title.$num,$this->headers)){
1048 ($num) ? $num++ : $num = 1;
1050 $title = $title.$num;
/plugin/galleryv1.5/
H A Dscript.js146 var num = self._imgs.length;
162 _genOpener : function(num) argument
166 self._show(num);
391 var num = self._open + by;
393 if(num < 0) num = self._imgs.length - 1;
394 if(num >= self._imgs.length) num = 0;
399 self._show(num);
401 _show : function(num) argument
405 if (num < 0 || num >= self._imgs.length) return;
430 self._preload_neighbors(num);
[all …]
/plugin/googlesearch/
H A DGoogleAPI.php37 function do_search( $q, $start, $num=10 ){ argument
43 'maxResults' => $num,
/plugin/bibtex/OSBib/
H A DUTF8.php198 function code2utf8($num){ argument
199 if($num<128)return chr($num);
200 if($num<2048)return chr(($num>>6)+192).chr(($num&63)+128);
201 if($num<65536)return chr(($num>>12)+224).chr((($num>>6)&63)+128).chr(($num&63)+128);
202 …if($num<2097152)return chr(($num>>18)+240).chr((($num>>12)&63)+128).chr((($num>>6)&63)+128). chr((…

1...<<11