Home
last modified time | relevance | path

Searched refs:format (Results 101 – 125 of 1384) sorted by relevance

12345678910>>...56

/plugin/nonblank/
H A Drenderer.php22 * @param string $format requested format
24 public function canRender($format) { argument
25 return $format == 'xhtml';
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AdExchangeBuyerII/
H A DFilterSet.php44 public $format; variable in Google\\Service\\AdExchangeBuyerII\\FilterSet
147 public function setFormat($format) argument
149 $this->format = $format;
156 return $this->format;
/plugin/combo/syntax/
H A Dheadingatx.php112 * @param string $format
120 function render($format, Doku_Renderer $renderer, $data): bool argument
128 if ($format == 'xhtml') {
153 } else if ($format == renderer_plugin_combo_analytics::RENDERER_FORMAT) {
160 } else if ($format == "metadata") {
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DDateRange.php17 * @param string $format see documentation for formatting options
21 public function setFormat(string $format): self argument
23 return $this->setParam('format', $format);
/plugin/dokupp/
H A Dsyntax.php27 static $format= '%u';
28 if ('#' === $match) return array('N', $format); //< use and increment current counter
34 list ($match, $format) = explode(':', $match);
35 return array(null, $format);
/plugin/davcal/fullcalendar-3.10.5/
H A Dmoment.js445 return format;
494 return isFunction(format) ? format(output) : format.replace(/%s/i, output);
617 format = expandFormat(format, m.localeData());
618 formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format);
637 return format;
2626 c._f = format;
3177 …var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[f…
3838 proto.format = format;
3997 format = format || '';
4026 format = format || '';
[all …]
/plugin/tagsections/syntax/
H A Dtag.php109 $format = $this->getConf('alternateLinkFormat');
110 if ( !empty($format) ) {
111 …$format = str_replace(array( "{TAG}", "{NAME}", "{RAW}" ), array( urlencode(cleanID($entry)), urle…
112 $link = tpl_link($format, $name, 'rel="tag" title="'.$entry.'"', true);
/plugin/timetrack/
H A Dsyntax.php91 …$dateStartCopy->add(new DateInterval('P7D')) && $dateStart->format('W') !== $dateEnd->format('W'))…
107 $week = $date->format("W");
108 $content = ($last_year !== $date->format("Y")) ? $date->format("Y") . '/' : '';
115 $last_year = $date->format("Y");
131 $week = $date->format("YW");
154 $week = $date->format("YW");
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php102 $format = $this->sigFormat;
103 if ($format === false) {
162 … return $shortFormat == 'SSH2' ? $format::save($r, $s, $this->getCurve()) : $format::save($r, $s);
211 … return $shortFormat == 'SSH2' ? $format::save($r, $s, $this->getCurve()) : $format::save($r, $s);
237 $format = 'PKCS8';
239 $format = 'MontgomeryPublic';
242 $type = self::validatePlugin('Keys', $format, 'savePublicKey');
245 $key = EC::loadFormat($format, $key);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dhelp.phpt17 --coverage-clover <file> Generate code coverage report in Clover XML format.
18 --coverage-crap4j <file> Generate code coverage report in Crap4J XML format.
19 --coverage-html <dir> Generate code coverage report in HTML format.
21 --coverage-text=<file> Generate code coverage report in text format.
23 --coverage-xml <dir> Generate code coverage report in PHPUnit XML format.
29 --log-junit <file> Log test execution in JUnit XML format to file.
30 --log-teamcity <file> Log test execution in TeamCity format to file.
31 --testdox-html <file> Write agile documentation in HTML format to file.
32 --testdox-text <file> Write agile documentation in Text format to file.
33 --testdox-xml <file> Write agile documentation in XML format to file.
[all …]
H A Dhelp2.phpt18 --coverage-clover <file> Generate code coverage report in Clover XML format.
19 --coverage-crap4j <file> Generate code coverage report in Crap4J XML format.
20 --coverage-html <dir> Generate code coverage report in HTML format.
22 --coverage-text=<file> Generate code coverage report in text format.
24 --coverage-xml <dir> Generate code coverage report in PHPUnit XML format.
30 --log-junit <file> Log test execution in JUnit XML format to file.
31 --log-teamcity <file> Log test execution in TeamCity format to file.
32 --testdox-html <file> Write agile documentation in HTML format to file.
33 --testdox-text <file> Write agile documentation in Text format to file.
34 --testdox-xml <file> Write agile documentation in XML format to file.
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
H A Dwith_filters.test41 ( the output of |format is "<b>" ~ var ~ "</b>",
43 {{ "<b>%s</b>"|format(var) }}
46 ( the output of |format is "<b>" ~ var ~ "</b>",
49 {{ "<b>%s</b>"|raw|format(var) }}
52 ( the output of |format is "<b>" ~ var ~ "</b>",
54 {{ "<b>%s</b>"|format(var)|raw }}
57 ( the output of |format is "<b>" ~ var ~ "</b>",
60 {{ "<b>%s</b>"|format(var|raw)|raw }}
108 ( the output of |format is "<b>" ~ var ~ "</b>",
114 ( the output of |format is "<b>" ~ var ~ "</b>",
[all …]
/plugin/diagramsnet/lib/
H A Delectron.js99 let ourl = url.format(
292 var format = null;
319 format = null;
324 if (format == null)
326 format = options.format;
342 format: format,
1189 if (args.format == 'vsdx')
1295 else if (args.format == 'png' || args.format == 'jpg' || args.format == 'jpeg')
1348 else if (args.format == 'pdf')
1396 else if (args.format == 'svg')
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DLogglyFormatter.php36 public function format(array $record): string function in Monolog\\Formatter\\LogglyFormatter
39 $record["timestamp"] = $record["datetime"]->format("Y-m-d\TH:i:s.uO");
43 return parent::format($record);
/plugin/pgn4web/pgn4web/fonts/
H A Dpgn4web-font-ChessInformantReader.css19format('embedded-opentype'), url('ChessInformantReader.woff') format('woff'), url('ChessInformantR…
H A Dpgn4web-font-ChessOleFigurin.css19format('embedded-opentype'), url('ChessOleFigurin.woff') format('woff'), url('ChessOleFigurin.ttf'…
H A Dpgn4web-font-ChessSansAlpha.css19format('embedded-opentype'), url('ChessSansAlpha.woff') format('woff'), url('ChessSansAlpha.ttf')
H A Dpgn4web-font-ChessSansMerida.css19format('embedded-opentype'), url('ChessSansMerida.woff') format('woff'), url('ChessSansMerida.ttf'…
H A Dpgn4web-font-ChessSansPiratf.css19format('embedded-opentype'), url('ChessSansPiratf.woff') format('woff'), url('ChessSansPiratf.ttf'…
H A Dpgn4web-font-ChessSansUscf.css19format('embedded-opentype'), url('ChessSansUscf.woff') format('woff'), url('ChessSansUscf.ttf') fo…
H A Dpgn4web-font-ChessSansUsual.css19format('embedded-opentype'), url('ChessSansUsual.woff') format('woff'), url('ChessSansUsual.ttf')
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DMinutesField.php15 return $this->isSatisfied($date->format('i'), $value);
35 $current_minute = $date->format('i');
49 $date->setTime($date->format('H'), $invert ? 59 : 0);
52 $date->setTime($date->format('H'), $minutes[$position]);
/plugin/poem/
H A Deol.php30 function render($format, Doku_Renderer $renderer, $data) { argument
31 if($format == 'xhtml'){
34 } else if ($format == 'metadata') {
/plugin/findologicxmlexport/vendor/hoa/file/
H A DReadWrite.php204 * @param string $format Format (see printf's formats).
207 public function readArray($format = null) argument
209 return $this->scanf($format);
236 * @param string $format Format (see printf's formats).
239 public function scanf($format) argument
241 return fscanf($this->getStream(), $format);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DDateHandlerTest.php75 if ('00:00:00' === $expectedDateTime->format('H:i:s')) {
109 $expectedDateTime->format(\DateTime::RFC3339),
110 $actualDateTime->format(\DateTime::RFC3339)
128 $expectedDateTime->format(\DateTime::RFC3339),
129 $actualDateTime->format(\DateTime::RFC3339)

12345678910>>...56