Home
last modified time | relevance | path

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

1234567891011

/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/is/
H A Dis.txt
/plugin/latexcaption/syntax/
H A Dcaption.php182 list($type,$num) = explode('=',trim($match));
185 $num = (int) trim($num);
192 $this->{'_'.$type.'_count'} = $num-1;
H A Dreference.php77 list($type, $num, $parnum) = $caption;
80 …rkup .= $this->getLang($type.$langset).' '.$parnum.'('.$this->helper->number_to_alphabet($num).')';
83 $markup .= $this->getLang($type.$langset).' '.$num;
/plugin/ckgedit/ckeditor/plugins/geshi/dialogs/
H A Dgeshi.js.unc208 var num = dialog.getValueOf( 'tab-basic', 'linenums' );
209 text = "\n" + hiliting + ', start_line_numbers_at="'+num +'"]' +"*/\n" + text;
212 var num = dialog.getValueOf( 'tab-basic', 'linenums' );
213 text = "\n" + hiliting + ', highlight_lines_extra="'+num +'"]' +"*/\n" + text;
/plugin/ckgedit/scripts/
H A DsafeFN_class.js30 changeSafeBase: function(num, from, to) { argument
34 num = parseInt(num, from);
35 if(from == 36) return num;
36 return num.toString(to);
/plugin/ckgedit/ckeditor/lang/
H A Dfr.js.unc488 "numberedlist": "Insérer/Supprimer la liste numérotée"
503 "numberedTitle": "Propriétés de la liste numérotée",
758 …possède un identifiant sous la forme : <b>fckgL_&lt;n&gt;</b>, où n est le numéro de la note.</li>…
/plugin/ckgedit/action/entities/utils/
H A Dfcked-ents.pl7 my($icon, $num, $character) = split;
8 next if !$icon || !$num || ! $character;
12 print "$icon\n$num\n$character\n\n";
/plugin/ckgedit/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js26 changeSafeBase: function(num, from, to) { argument
30 num = parseInt(num, from);
31 if(from == 36) return num;
32 return num.toString(to);
/plugin/ckgedit/ckeditor/plugins/link/dialogs/
H A Dlink.js.unc1641 * @param num int result div to return
1644 getResult: function(num){
1652 * @param num int result div to return
1655 $getResult: function(num) {
1656 return jQuery(doku_linkwiz.result).find('div').eq(num);
1662 select: function(num){
1663 if(num < 0){
1668 var $obj = doku_linkwiz.$getResult(num);
1692 doku_linkwiz.selected = num;
/plugin/epub/scripts/
H A Depub_utils.php203 static $num = 0;
204 return 'item' . ++$num;
208 static $num = 0;
209 return ++$num;
346 $num = 0;
348 $num++;
354 <navPoint id="np-$num" playOrder="$num">
/plugin/epub/scripts/utils/
H A Dent_ini.php5 list($char,$num,$name) = preg_split('/\s+/',$ent);
6 $entities[$name]=$num;
11 list($num,$name) = preg_split('/\s+/',$ent);
12 $entities[$name]=$num;
/plugin/discussion/
H A Daction.php1187 $num = count($lines);
1188 for ($i=0; $i<$num; $i++) {
1434 $num = $comments['number'];
1435 if ((!$comments['status']) || (($comments['status'] == 2) && (!$num))) return false;
H A Dadmin.php56 $num = ($conf['recent']) ? $conf['recent'] : 20;
63 $more = ((count($threads) > ($first + $num)) ? true : false);
64 $threads = array_slice($threads, $first, $num);
81 $this->_browseDiscussionLinks($more, $first, $num);
305 * @param int $num
308 function _browseDiscussionLinks($more, $first, $num) { argument
314 $last = $first+$num;
318 $first -= $num;
H A Dhelper.php62 * @param null|int $num
65 function td($id, $num = null) { argument
68 if (!isset($num)) {
72 $num = $comments['number'];
76 if ($num == 0) {
78 } elseif ($num == 1) {
93 * @param null|int $num
146 if (is_numeric($num)) $result = array_slice($result, 0, $num);
156 * @param int|null $num
165 if ((!$num) || (!is_numeric($num))) $num = $conf['recent'];
[all …]
/plugin/changes/
H A Dsyntax.php217 * @param int $num
225 protected function getChanges($num, $ns, $excludedpages, $type, $user, $maxage, $excludedusers, $reverse)
270 if (++$count >= $num) break;
223 getChanges($num, $ns, $excludedpages, $type, $user, $maxage, $excludedusers, $reverse) global() argument
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js7881 DayGrid.prototype.getMoreLinkText = function (num) {
7884 return opt(num);
7887 return '+' + num + ' ' + opt;
/plugin/indexmenu/scripts/
H A Dtoolbarindexwizard.js262 let num = parseInt(jQuery('input#' + numid).val());
263 options += num ? '#' + num : '';
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DEvalBarrett.php467 * @param int|float $num
470 private static function float2string($num) argument
472 if (!is_float($num)) {
473 return (string) $num;
476 if ($num < 0) {
477 return '-' . self::float2string(abs($num));
481 while ($num) {
482 $temp = fmod($num, 10) . $temp;
483 $num = floor($num / 10);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php70 public function __construct($instanceID, $num = '') argument
73 if (!strlen($num)) {
77 $this->value = $reduce($num);
/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/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBinaryField.php118 * @param string $num
121 public function newInteger($num) argument
123 return new Integer($this->instanceID, $num instanceof BigInteger ? $num->toBytes() : $num);
H A DPrimeField.php77 public function newInteger(BigInteger $num) argument
79 return new Integer($this->instanceID, $num);
H A DBigInteger.php767 $nums = array_map(function ($num) {
768 return $num->value;
782 $nums = array_map(function ($num) {
783 return $num->value;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DCustomSearchAPI.php148 'num' => [
287 'num' => [
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php70 public function __construct($instanceID, BigInteger $num = null) argument
73 if (!isset($num)) {
77 $this->value = $reduce($num);

1234567891011