Home
last modified time | relevance | path

Searched refs:number (Results 26 – 50 of 1459) sorted by relevance

12345678910>>...59

/plugin/autonumbering/
H A Dsyntax.php135 $number = "<span class=\"$class\">";
138 $number .= $period . $COUNTER[$counterID][$i];
145 $number .= '</span>';
146 return array($number, NULL);
158 list($number, $null) = $data;
159 $renderer->doc .= $number;
172 … list($number, $null) = $this->handle($matches[0][$i], DOKU_LEXER_SPECIAL, NULL, $handler);
173 $pageContent = preg_replace('(' . $matches[0][$i] . ')', $number, $pageContent, 1);
/plugin/commonmark/vendor/league/commonmark/src/Util/
H A DHtml5EntityDecoder.php45 * @param mixed $number
49 private static function fromDecimal($number): string
53 if (empty($number) || $number > 0x2FFFF) {
57 $entity = '&#' . $number . ';';
41 fromDecimal($number) global() argument
/plugin/numberedheadings/
H A Dsyntax.php87 // == -#n title == ; "#" is a parameter indicates number
97 list($number, $title) = array('', trim($text));
101 // == - #12 title == ; "#" is numbering label with number
105 $number = $part[0] +0;
110 case '#': // numeric numbering, (integer) $number
111 list($number, $title) = explode(' ', substr($text, 1), 2);
112 $number = ctype_digit($number) ? $number +0 : '';
115 case '"': // alpha-numeric numbering, (string) $number
[all...]
H A Daction.php43 unset($dash, $level, $number, $title, $format);
63 // set the heading counter only if number seems meaningful
64 if ($number !== '') {
65 $numbering->setHeadingCounter($level, $number);
72 } elseif ($dash > 2 || $number === '' && $title === '' && $tier == 1) {
84 $numbering->setHeadingCounter($level, $number);
89 // append double spaces after tiered number to distinguish title
H A Dhelper.php72 public function setHeadingCounter($level=null, $number=null) argument
79 if ($number === '') $number = null;
80 $this->HeadingCount[$level] = isset($number)
81 ? $number
83 // reset the number of the subheadings
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ChromePolicy/
H A DProto2FieldDescriptorProto.php41 public $number; variable in Google\\Service\\ChromePolicy\\Proto2FieldDescriptorProto
118 public function setNumber($number) argument
120 $this->number = $number;
127 return $this->number;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceConsumerManagement/
H A DField.php46 public $number; variable in Google\\Service\\ServiceConsumerManagement\\Field
135 public function setNumber($number) argument
137 $this->number = $number;
144 return $this->number;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
H A DField.php46 public $number; variable in Google\\Service\\Monitoring\\Field
135 public function setNumber($number) argument
137 $this->number = $number;
144 return $this->number;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/
H A DField.php46 public $number; variable in Google\\Service\\ServiceNetworking\\Field
135 public function setNumber($number) argument
137 $this->number = $number;
144 return $this->number;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/
H A DField.php46 public $number; variable in Google\\Service\\ServiceUsage\\Field
135 public function setNumber($number) argument
137 $this->number = $number;
144 return $this->number;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/
H A DField.php46 public $number; variable in Google\\Service\\ServiceManagement\\Field
135 public function setNumber($number) argument
137 $this->number = $number;
144 return $this->number;
/plugin/linkback/
H A Dhelper.php24 'desc' => 'returns the link to the linkback section with number of comments',
27 'number of linkbacks (optional)' => 'integer'
38 'number (optional)' => 'integer'
55 * Returns the link to the linkback section with number of comments
57 function td($ID, $number = NULL) { argument
60 if (!isset ($number)) {
65 $number = $linkbacks['number'];
74 if ($number == 0) {
76 } elseif ($number
[all...]
/plugin/indexmenu/scripts/
H A Dtoolbarindexwizard.js86 '<div><label class="number">' + LANG.plugins.indexmenu.nsdepth + ' #<input id="nsdepth" type="text" value=1></label></div>' +
94 '<label class="number">' + LANG.plugins.indexmenu.metanum + '<input type="text" id="metanumber"></label>' +
126 //number inputs
131 .addClass("number " + props.tlbclass)
156 //interactive number fields
157 jQuery('label.number input').on('keydown keyup', function () {
160 //checked the option if a number in input
217 * Allow only number, by direct removing other characters from input
226 * When a number larger than zero is inputted, check the checkbox
231 //exception for second number fiel
60 max: {tlbclass: 'js', number: ['maxn', 'maxm']}, global() property in indexmenu_wiz.fields.div6.elems.max
61 maxjs: {tlbclass: 'js', number: ['maxjsn']}, global() property in indexmenu_wiz.fields.div6.elems.maxjs
62 id: {tlbclass: 'js', number: ['idn']} global() property in indexmenu_wiz.fields.div6.elems.id
[all...]
/plugin/gitlabapi/
H A Dsyntax.php169 function renderProjectCommits($renderer, $gitlab, $project_id, $number) { argument
185 $total = count($commits) < $number ? count($commits) : $number;
198 function renderProjectIssues($renderer, $gitlab, $project_id, $number) { argument
215 $total = count($issues) < $number ? count($issues) : $number;
238 function renderProjectMilestones($renderer, $gitlab, $project_id, $number) { argument
254 $total = count($milestones) < $number ? count($milestones) : $number;
268 function renderProjectPipelines($renderer, $gitlab, $project_id, $number) { argument
283 $total = count($pipelines) < $number ? count($pipelines) : $number;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudNaturalLanguage/
H A DPartOfSpeech.php45 public $number; variable in Google\\Service\\CloudNaturalLanguage\\PartOfSpeech
144 public function setNumber($number) argument
146 $this->number = $number;
153 return $this->number;
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D30.30.js1number.semver"],[/\d*\.\d+([eE][\-+]?\d+)?/,"number.float"],[/0[xX][0-9a-fA-F]+/,"number.hex"],[/\…
H A D55.55.js1number.float","@allowMethod"],[/(@digits)\.(@digits)([eE][\-+]?(@digits))?[fFdD]?/,"number.float",…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CivicInfo/
H A DPrecinct.php58 public $number; variable in Google\\Service\\CivicInfo\\Precinct
195 public function setNumber($number) argument
197 $this->number = $number;
204 return $this->number;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Durlencode.test6 {{ {foo: "bar", number: 3, "spéßi%l": "e%c0d@d", "spa ce": ""}|url_encode }}
7 {{ {foo: "bar", number: 3, "spéßi%l": "e%c0d@d", "spa ce": ""}|url_encode|raw }}
13 foo=bar&amp;number=3&amp;sp%C3%A9%C3%9Fi%25l=e%25c0d%40d&amp;spa%20ce=
14 foo=bar&number=3&sp%C3%A9%C3%9Fi%25l=e%25c0d%40d&spa%20ce=
H A Durlencode_deprecated.test6 {{ {foo: "bar", number: 3, "spéßi%l": "e%c0d@d", "spa ce": ""}|url_encode }}
7 {{ {foo: "bar", number: 3, "spéßi%l": "e%c0d@d", "spa ce": ""}|url_encode|raw }}
13 foo=bar&amp;number=3&amp;sp%C3%A9%C3%9Fi%25l=e%25c0d%40d&amp;spa%20ce=
14 foo=bar&number=3&sp%C3%A9%C3%9Fi%25l=e%25c0d%40d&spa%20ce=
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DImb.php23 * - The Mailer or Customer Identifier shall be assigned by USPS as a unique, 6 or 9 digit number that identifies
289 // if we don't have the right number of bits on, go on to the next value
313 * Convert large integer number to hexadecimal representation.
315 * @param int $number
318 private function decToHex($number) argument
322 if ($number == 0) {
326 while ($number > 0) {
327 if ($number == 0) {
330 array_push($hex, strtoupper(dechex(bcmod($number, '16'))));
331 $number
[all...]
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/py/
H A Dfckoutput.py89 def sendError(self, number, text): argument
94 self.sendErrorNode (number, text) +
97 def sendErrorNode(self, number, text): argument
98 return """<Error number="%s" text="%s" />""" % (number, convertToXmlAttribute(text))
/plugin/pdfjs/pdfjs/web/locale/lo/
H A Dviewer.properties23 # LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
24 # representing the total number of pages in the document.
27 # will be replaced by a number representing the currently visible page,
28 # respectively a number representing the total number of pages in the document.
108 # number.
110 # number.
116 # "{{current}}" and "{{total}}" will be replaced by a number representing the
117 # index of the currently active find result, respectively a number representing
118 # the total number of matches in the document.
134 # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
/plugin/pdfjs/pdfjs/web/locale/ta-LK/
H A Dviewer.properties18 # LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
19 # representing the total number of pages in the document.
21 # will be replaced by a number representing the currently visible page,
22 # respectively a number representing the total number of pages in the document.
48 # number.
50 # number.
64 # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
/plugin/pdfjs/pdfjs/web/locale/tsz/
H A Dviewer.properties18 # LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
19 # representing the total number of pages in the document.
21 # will be replaced by a number representing the currently visible page,
22 # respectively a number representing the total number of pages in the document.
47 # number.
49 # number.
62 # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number

12345678910>>...59