Home
last modified time | relevance | path

Searched refs:num (Results 126 – 150 of 258) sorted by relevance

1234567891011

/plugin/authucenter/lib/uc_client/control/
H A Dtag.php35 foreach($nums as $k => $num) {
/plugin/stats/
H A Dsyntax.php767 function getAllChanges($directory='',$first=0,$num=0,$ns='',$flags=0) { argument
793 $this->parseChanges($directory,$first,$num,$ns,$flags);
816 function parseChanges($directory='',$first=0,$num=0,$ns='',$flags=0) { argument
850 if(!$num==0) {
851 if($count >= $num) {
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
H A Dcss_optimiser.php149 $num = ($_REQUEST['template']) ? intval($_REQUEST['template']) : 1; variable
150 …ng[$l][13], 2 => $lang[$l][14], 1 => $lang[$l][15], 0 => $lang[$l][16], 4 => $lang[$l][17]), $num);
/plugin/elwikiupgrade/lang/is/
H A Dstep0.txt7 Við mælum með því að þú takir afrit af wiki-inum þínum áður en þú heldur áfram.
/plugin/upgrade/lang/is/
H A Dstep0.txt
/plugin/task/
H A Dhelper.php72 function getTasks($ns, $num = NULL, $filter = '', $user = NULL) { argument
149 if (is_numeric($num)) $result = array_slice($result, 0, $num);
/plugin/passpolicy/_test/
H A DHelperTest.php23 * @param boolean $num
36 $num, argument
50 'numeric' => $num,
/plugin/subjectindex/plugins/
H A Dbible_abbr.txt4 nu num
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Dfunctions.js582 var num = 0;
583 var increment = _.once(function(){ return ++num; });
586 assert.equal(num, 1);
677 var context = {num: 0}; property in AnonymousFunction105fccb05600.context
678 var increment = _.before(3, function(){ return ++this.num; });
681 assert.equal(context.num, 2, 'provides context');
/plugin/odp/
H A Drenderer.php1238 $num = '';
1239 while(in_array($title.$num,$this->headers)){
1240 ($num) ? $num++ : $num = 1;
1242 $title = $title.$num;
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.ruleset.class.php195 if ($num = preg_match_all("/@import[^;]+;/",$css, $matches, PREG_PATTERN_ORDER)) {
196 for ($i=0; $i<$num; $i++) {
H A Doutput._generic.class.php280 function set_expected_pages($num) { argument
281 $this->expected_pages = $num;
/plugin/autolink2/
H A Dhelper.php270 foreach ($nums as $page=>$num){
271 $docs[$page] = trim($this->page_idx[$num]);
/plugin/include/
H A Daction.php151 $num = count($ins);
152 for($i=0; $i<$num; $i++) {
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DBerEncoder.php638 * @param int $num
642 protected function encodeLongDefiniteLength(int $num)
645 while ($num) {
646 $bytes = (chr((int) ($num % 256))) . $bytes;
647 $num = (int) ($num / 256);
603 encodeLongDefiniteLength(int $num) global() argument
/plugin/ipban/ip-lib/src/Address/
H A DIPv6.php138 function ($num) {
139 return sprintf('%04x', $num);
/plugin/freechat/phpfreechat/data/public/js/
H A Dmd5.js240 'bit_rol' : function(num, cnt) argument
242 return (num << cnt) | (num >>> (32 - cnt));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DEngine.php1216 $num = clone $this;
1219 while (!$num->equals(static::$zero[static::class])) {
1220 $vals[] = $num->bitwise_and($mask);
1221 $num = $num->bitwise_rightShift($split);
/plugin/scrape/HTMLPurifier/Printer/
H A DHTMLDefinition.php
/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/diagramsnet/lib/math/jax/input/MathML/entities/
H A Dn.js19 …ntrianglelefteq:"\u22EC",ntriangleright:"\u22EB",ntrianglerighteq:"\u22ED",num:"\u0023",numero:"\u…
/plugin/tablecalc/
H A Dscript.js167 function round(num,digits) { argument
172 var n=Math.round(num*d)/d;
/plugin/extlist/
H A Dsyntax.php127 'list' => 'ol', 'item' => 'li', 'num' => $matches[1]
181 $num = $this->olist_info[$level];
182 //error_log('olist lv='.$level.' list_class='.$this->list_class['ol'].' num='.$num);
186 $modulus = ($num -1) % 26;
235 $attr = isset($m['num']) ? 'start="'.$m['num'].'"' : '';
276 $this->olist_info[$this->olist_level] = $m['num'];
278 $attr = ' value="'.$m['num'].'"';
372 if (($m1['list'] == 'ol') && !isset($m1['num'])) {
[all...]
/plugin/botbouncer/lib/
H A Dbotbouncer.php822 $num = $this->stopForumSpamCheck($data);
823 if ($num) {
827 $isSpam += $num;
/plugin/database2/
H A Ddatabase2.php1776 unset( $skip, $num );
1779 $rows = $this->__recordsList( $cols, true, $skip, $num, $customQuery );
1783 $code = $this->__renderTable( $idCol, $cols, $rows, $count, $num,
1795 public function __renderTable( $idCol, $cols, $rows, $count, $num, $skip, argument
2199 * @param integer $num number of records to list per page at most
2206 protected function getPagerElements( $skip, $num, $count ) argument
2212 if ( $num > 0 )
2215 for ( $i = $skip; $i > 0; $i -= $num )
2220 for ( $i = $skip + $num; $i < $count - $num; $i += $num )
2224 array_push( $skips, $count - $num );
[all …]

1234567891011