Home
last modified time | relevance | path

Searched refs:code (Results 51 – 75 of 2534) sorted by relevance

12345678910>>...102

/plugin/codehighlight/cp/engines/
H A Dgecko.js88 else if(mid+2000>code.length) {ini=code.length-4000;end=code.length;}
90 code = code.substring(ini,end);
237 code = code.replace(/<br>/g,'\n');
238 code = code.replace(/\u2009/g,'');
239 code = code.replace(/<.*?>/g,'');
240 code = code.replace(/&lt;/g,'<');
241 code = code.replace(/&gt;/g,'>');
242 code = code.replace(/&amp;/gi,'&');
249 code = code.replace(/\u2009/gi,'');
251 code = code.replace(/</g,'&lt;');
[all …]
/plugin/swiftmail/Swift/Events/
H A DCommandEvent.php29 protected $code = null; variable in Swift_Events_CommandEvent
36 public function __construct($string, $code=null) argument
39 $this->setCode($code);
61 public function setCode($code) argument
63 if ($code === null) $this->code = null;
64 else $this->code = (int) $code;
72 return $this->code;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DMsi.php6 * MSI - Variation of Plessey code, with similar applications
13 * @param int $code
16 public function __construct($code, $checksum = false, $quiet_zone_left = null, $quiet_zone_right = null) argument
18 $this->init($code, $checksum);
28 * @param int $code
31 private function init($code, $checksum) argument
56 $clen = strlen($code);
60 $check += (hexdec($code[$i]) * $p);
70 $code .= $check;
74 $clen = strlen($code);
[all...]
H A DRm4Scc.php9 * @param string $code
15 public function __construct($code, $xDim, $gapWidth, $daft, $kix = false) argument
17 $this->init($code, $gapWidth, $daft, $kix);
27 * @param string $code
32 private function init($code, $gapWidth, $daft, $kix) argument
81 $code = strtoupper($code);
82 $len = strlen($code);
84 $bararray = ['code' => $code, 'max
[all...]
H A DCode93.php7 * Compact code similar to Code 39
13 * @param string $code
15 public function __construct($code, $quiet_zone_left = null, $quiet_zone_right = null) argument
17 $this->init($code);
27 * @param string $code
29 private function init($code) argument
82 $code = strtoupper($code);
119 $clen = strlen($code);
122 if (ord($code[
168 checksum($code) global() argument
[all...]
/plugin/ifauthex/lib/
H A Dexceptions.php20 parent::__construct($message, $code, $previous);
27 return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
36 parent::__construct($message, $code, $previous);
42 return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
51 parent::__construct($message, $code, $previous);
57 return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
70 parent::__construct($message, $code, $previous);
76 return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
92 parent::__construct($message, $code, $previous);
98 return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
[all …]
/plugin/webcode/_test/data/pages/
H A Ddisplay.txt1 ====== Webcode - Not displaying code block ======
4 This is possible to cache code block with this syntax:
7 <code [display="none"]>
9 </code>
19 <code javascript [display="none"]>
21 </code>
31 <code javascript [display="none"]>
33 </code>
34 * We should see the code block below
35 <code javascript>
[all …]
H A Dacross_section.txt14 <code css index.css>
16 </code>
19 <code html index.html>
21 </code>
23 <code html index.html>
25 </code>
28 <code javascript index.js>
30 </code>
33 <code javascript index.js>
35 </code>
[all …]
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DPDF417.php523 if ((is_null($code)) OR ($code == '\0') OR ($code == '')) {
870 $codelen = strlen($code);
872 $chval = ord($code{$i});
921 $code = substr($code, 0, 6);
925 $sublen = strlen($code);
946 $cw[] = ord($code{$i});
949 $code = $rest;
957 $code = substr($code, 0, 44);
961 $t = '1'.$code;
967 $code = $rest;
[all …]
/plugin/codebutton_ext/
H A Daction.php.bak59 'close' => '\n</code>',
67 'close' => '\n</code>',
75 'close' => '\n</code>',
83 'close' => '\n</code>',
91 'close' => '\n</code>',
99 'close' => '\n</code>',
107 'close' => '\n</code>',
115 'close' => '\n</code>',
124 'close' => '\n</code>',
132 'close' => '\n</code>',
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DLexer.php25 protected $code; variable in Twig\\Lexer
82 public function tokenize($code, $name = null) argument
84 if (!$code instanceof Source) {
86 $this->source = new Source($code, $name);
88 $this->source = $code;
102 $this->code = str_replace(["\r\n", "\r"], "\n", $this->source->getCode());
106 $this->end = \strlen($this->code);
238 if (preg_match('/\s+/A', $this->code, $match, null, $this->cursor)) {
268 if (false !== strpos('([{', $this->code[$this->cursor])) {
272 elseif (false !== strpos(')]}', $this->code[$this->cursor])) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/
H A DChangeLog-4.0.md38 * The check for unintentionally covered code is no longer performed for `@medium` and `@large` tests
50 * Fixed [#458](https://github.com/sebastianbergmann/php-code-coverage/pull/458): XML report does no…
58 [4.0.8]: https://github.com/sebastianbergmann/php-code-coverage/compare/4.0.7...4.0.8
59 [4.0.7]: https://github.com/sebastianbergmann/php-code-coverage/compare/4.0.6...4.0.7
60 [4.0.6]: https://github.com/sebastianbergmann/php-code-coverage/compare/4.0.5...4.0.6
61 [4.0.5]: https://github.com/sebastianbergmann/php-code-coverage/compare/4.0.4...4.0.5
62 [4.0.4]: https://github.com/sebastianbergmann/php-code-coverage/compare/4.0.3...4.0.4
63 [4.0.3]: https://github.com/sebastianbergmann/php-code-coverage/compare/4.0.2...4.0.3
64 [4.0.2]: https://github.com/sebastianbergmann/php-code-coverage/compare/4.0.1...4.0.2
65 [4.0.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/4.0.0...4.0.1
[all …]
/plugin/gtime/gtlib/asn1/gt/
H A DGTCertTokenResponse.php71 $code = $this->getStatusCode();
73 if ($code == 0 || $code == 1) {
90 } else if ($code >= 2 && $code <= 5) {
98 throw new GTException("invalid status code: {$code}");
135 $code = strpos($this->status->getFailInfo(), '1');
137 if ($code === false) {
141 return $code;
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Filter/
H A DLzw.php95 while (($code = $this->getNextCode()) !== 257) {
96 if ($code === 256) {
98 $code = $this->getNextCode();
100 if ($code === 257) {
104 $uncompData .= $this->sTable[$code];
105 $oldCode = $code;
108 if ($code < $this->tIdx) {
109 $string = $this->sTable[$code];
113 $oldCode = $code;
120 $oldCode = $code;
[all...]
/plugin/stylingpages/
H A DREADME16 1) <code>wiki:styling=/^(all|screen|print|speech)\.(css|less)$/</code>
25 2) <code>wiki:styling=/^script\.js$/</code>
31 3) <code>wiki:styling=/^(all|screen|print|speech)\.(css|less)$/, wiki:styling=/^script\.js$/</code>
35 4) <code>wiki:css=/^(all|screen|print|speech)\.(css|less)$/, wiki:javascript=/^script\.js$/</code>
47 <code css all.css>
55 </code>
57 <code css all.css>
58 /* combined with the code above (same file) */
65 </code>
67 <code javascript script.js>
[all …]
/plugin/google_adsense2/lang/en/
H A Dintro.txt5 To use it, you'll have to insert the following code into your template:
7 <code php><?php
8 if (file_exists(DOKU_PLUGIN.'googleads/code.php')) include_once(DOKU_PLUGIN.'googleads/code.php');
10 ?></code>
13 Maybe you want to test this line below the code above.
15 <code php><div class="clearer">&nbsp;</div></code>
19 <code><!-- google_ads_section_start -->
21 <!-- google_ads_section_end --></code>
23 **Note**: Inserting the code above is optional and only needed if you want to include Google Adsens…
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DMethodNode.php25 private $code; variable in Prophecy\\Doubler\\Generator\\Node\\MethodNode
44 * @param string $code
46 public function __construct($name, $code = null, TypeHintReference $typeHintReference = null) argument
49 $this->code = $code;
162 * @param string $code
164 public function setCode($code) argument
166 $this->code = $code;
176 return (string) $this->code;
181 $this->code = sprintf(
/plugin/judge/helper/
H A Dnumbers.php28 $code = ord(substr($string, 0, 1));
29 if ($code >= 128) {
30 if ($code < 224) {
32 } else if ($code < 240) {
34 } else if ($code < 248) {
37 $codetemp = $code - 192 - ($bytesnumber > 2 ? 32 : 0) - ($bytesnumber > 3 ? 16 : 0);
43 $code = $codetemp;
49 return $code;
/plugin/symbols4odt/
H A Ddokuwiki_plugin_page.wiki41 | <code>{{utf8symbol>CODE}}</code> | Generic function to insert a hexadecimal code of an UTF8 symbo…
42 | <code><checkbox></code> | Creates an empty checkbox. | <code><CHECKBOX></code> |
43 | <code><checkbox_checked></code> | Creates a checked checkbox. | <code><CHECKBOX_CHECKED></code> |
44code><shy></code> | Create a soft hyphen, functional in wiki pages and ODT files. If inserted in t…
50 On the code level, the plugin is readily extendible by inserting patterns into the ''getPatterns()'…
54 <code>"checkbox_filled" => array(
58 ),</code>
65 | <code>"pattern"</code> | Maps to an array of strings that will be used within the [[https://www.d…
66 | <code>"substitute4XHTML"</code> | In case of a match (see "pattern"), the string defined in ''sub…
67 | <code>"substitute4XODT"</code> | In case of a match (see "pattern"), the string defined in ''subs…
/plugin/code3/
H A Dstyle.css2 * code plugin extension - style additions
9 div.code, div.file {
18 div.code p, div.file p {
24 div.code pre.code, div.file pre.file {
29 div.code {
34 div.code p {
37 div.code pre {
55 /* end code plugin style additions */
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshCore.js303 code
329 code = stripCData(code);
879 code = eachLine(code, function(line)
898 return code;
1134 code = [] variable
1141 code = code.join('\r');
1144 code = code.replace(/\u00a0/g, " ");
1228 var code = match.code,
1573 code = trimFirstAndLastLines(code)
1587 code = unindent(code);
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/
H A DUselessOverridingMethodSniff.php87 $code = $tokens[$next]['code'];
89 if (isset(PHP_CodeSniffer_Tokens::$emptyTokens[$code]) === true) {
91 } else if ($code === T_RETURN) {
131 $code = $tokens[$next]['code'];
133 if ($code === T_OPEN_PARENTHESIS) {
135 } else if ($code === T_CLOSE_PARENTHESIS) {
137 } else if ($parenthesisCount === 1 && $code === T_COMMA) {
139 } else if (isset(PHP_CodeSniffer_Tokens::$emptyTokens[$code]) === false) {
155 $code = $tokens[$next]['code'];
157 if (isset(PHP_CodeSniffer_Tokens::$emptyTokens[$code]) === false) {
/plugin/webcomponent/_test/data/pages/
H A Dunit.txt5 …omponent|component]] to indicate a unit of sequence of [[doku>wiki:syntax#code_blocks|code block]].
15 <code >
20 %%A block code%%
25 </code>
33 <code dw>
38 %%A code block may also come here but as we can't nest node in dokuwiki we can put it in a renderin…
43 </code>
52 The below code should not render.
55 <code dw>
62 </code>
H A Dnavbar.txt16 <code>
18 </code>
21 <code html>
23 </code>
27 <code>
79 [[code:compiler:|Compiler]]
81 [[code:grammar:|Grammar]]
82 [[code:function:|Function]]
83 [[:code:test:|Testing]]
85 [[code:type:|Data Type]]
[all …]
/plugin/codeprettify/
H A DREADME.md4 …ting of source code snippets in wiki page, using [Javascript code prettifier](https://github.com/g…
23 ![Example #1](code-prettifier-example.png "output of Example #1")
29code prettifier](https://github.com/google/code-prettify), which was once known as "google-code-pr…

12345678910>>...102