Home
last modified time | relevance | path

Searched refs:input (Results 51 – 75 of 1436) sorted by last modified time

12345678910>>...58

/plugin/tagging/script/
H A Deditable.js12 this.$input = $('<input type="text">').val(this.options.defaultValue).appendTo(this.$div);
17 if(this.$input.is(':visible')) {
18 this.$input.focus();
20 var pos = this.$input.val().length;
21 this.$input.get(0).setSelectionRange(pos, pos);
29 this.$input.after(this.$clear)
52 var len = this.$input.val().length,
66 this.$input.val('').focus();
79 '<div><div class="editable-input"></di
[all...]
/plugin/confmanager/configTypes/
H A DConfigManagerSingleLineConfigCascade.php48 * @param array $input
52 private function getCustomEntries($input, $default) { argument
54 foreach ($input as $line) {
H A DConfigManagerTwoLineConfigCascade.php57 * @param array $input
61 private function getCustomEntries($input, $default) { argument
63 foreach ($input as $key => $value) {
/plugin/confmanager/
H A Djquery.form.js875 var $input = $(form.clk), input = $input[0];
876 n = input.name;
877 if (n && !input.disabled && input.type == 'image') {
H A Dscript.js147 let input = jQuery(parent).children('input').first();
148 let value = jQuery(input).attr('value');
153 let input = jQuery(parent).children('input').first();
154 let value = jQuery(input).attr('value');
H A Dstyle.css6 #confmanager input.key {
10 #confmanager input.value {
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js42478 if (!isObject(input)) return input;
50790 input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
50995 if (typeof input === "undefined" || !input.length) {
51002 return crc32(crc | 0, input, input.length, 0);
51004 return crc32str(crc | 0, input, input.length, 0);
65143 var input;
65198 input = strm.input;
65228 strm.input = input;
65465 input = strm.input;
66402 input = strm.input;
[all …]
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js71 input = input.replace(/[^A-Za-z0-9+/=]/g, "");
74 if(input.charAt(input.length - 1) === _keyStr.charAt(64)) {
77 if(input.charAt(input.length - 2) === _keyStr.charAt(64)) {
279 if (typeof input === "undefined" || !input.length) {
286 return crc32(crc|0, input, input.length, 0);
288 return crc32str(crc|0, input, input.length, 0);
7717 input = strm.input;
7745 strm.input = input;
7928 input = strm.input;
8600 input = strm.input;
[all …]
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs86 function Base64_encode(input) { argument
89 for (var i = 0; i < input.length; ) {
90 c1 = input.charCodeAt(i++);
92 c2 = input.charCodeAt(i++);
94 c3 = input.charCodeAt(i++);
106 function Base64_encode_pass(input) { argument
110 c1 = input.charCodeAt(i++);
114 c2 = input.charCodeAt(i++);
118 c3 = input.charCodeAt(i++);
132 function Base64_decode(input) { argument
[all …]
/plugin/xlsx2dw/
H A Dscript.js13 let input = document.createElement('input');
14 input.type = 'file';
15 input.accept = ".xls,.xlsx,.ods";
16 input.onchange = (e) => parseTableFile(e);
17 input.click();
/plugin/authwordpress/
H A Dclass-phpass.php88 function encode64($input, $count) argument
93 $value = ord($input[$i++]);
96 $value |= ord($input[$i]) << 8;
101 $value |= ord($input[$i]) << 16;
111 function gensalt_private($input) argument
116 $output .= $this->encode64($input, 6);
166 function gensalt_extended($input) argument
179 $output .= $this->encode64($input, 3);
184 function gensalt_blowfish($input) argument
203 $c1 = ord($input[
[all...]
/plugin/copycode/
H A DREADME.md50 Refactoring of copycode functions with navigator.clipboard function instead of hidden input hack. Fixing the jump to top bug on android systems. See https://developer.mozilla.org/fr/docs/Web/API/Clipboard for compatible web browsers (everything but Internet Explorer).
/plugin/imapmarkers/
H A Djquery.imagemapster.js587 me.input = that;
605 src = this.input,
615 m.queueCommand(data, me.input, me.name, me.args)
/plugin/recommend/
H A Dstyle.css48 form#plugin__recommend label input {
54 form#plugin__recommend label input.edit {
/plugin/translation/_test/
H A DBasicTest.php104 * @param $input
109 public function testRedirectStart($input, $translationsOption, $httpAcceptHeader, $expected, $msg) argument
126 $response = $request->get(array('id' => $input));
/plugin/bureaucracy/script/
H A Dfieldsets.js22 function updateFieldset(input) { argument
23 jQuery.each(jQuery(input).data('dparray'), function (i, dp) {
25input.parentNode.parentNode.style.display !== 'none' && // input/checkbox is d…
26 …((input.checked === dp.tval) || // ( checkbox is chec…
27 …(input.type !== 'checkbox' && (dp.tval === true && input.value !== '')) || // OR no checkbox, but…
28input.value === dp.tval); // OR input === dp.tva…
/plugin/bureaucracy/
H A Dstyle.css46 .dokuwiki form.bureaucracy__plugin label input.edit,
50 .dokuwiki form.bureaucracy__plugin label input.datepicker,
51 .dokuwiki form.bureaucracy__plugin label input.timefield {
59 .dokuwiki form.bureaucracy__plugin label input[type=checkbox] {
64 .dokuwiki form.bureaucracy__plugin input.button {
72 .dokuwiki form.bureaucracy__plugin label input[type=radio]~span {
94 .dokuwiki form.bureaucracy__plugin input.button {
H A Dsyntax.php464 protected function noreplace_save($input) { argument
482 if (!is_string($input)) return $input;
491 $input
494 $input = preg_replace($pattern, $value, $input);
500 $input = preg_replace_callback(
503 $input
508 $input = preg_replace_callback(
511 $input
520 }, $input);
527 $input = preg_replace($pattern, $nr, $input, 1);
[all …]
/plugin/addnewpage/
H A Dstyle.less2 select, input {
H A Dsyntax.php280 $input = '';
285 … $input = '<input type="hidden" name="newpagetemplate" value="' . formText($template) . '" />';
288 $input = '<select name="newpagetemplate" tabindex="3">';
295 $input .= "<option $p>".formText($name)."</option>";
297 $input .= '</select>';
299 $input = DOKU_TAB . DOKU_TAB . $input . DOKU_LF;
301 return $input;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DImageProcessor.php404 $input = substr($icc, 16, 4);
407 if ($input !== 'RGB ' || $output !== 'XYZ ') {
749 $input = substr($icc, 16, 4);
752 if ($input !== 'RGB ' || $output !== 'XYZ ') {
848 $input = substr($icc, 16, 4);
851 if ($input !== 'RGB ' || $output !== 'XYZ ') {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Utils/
H A DArrays.php22 * Returns an array of all k-combinations from an input array of n elements, where k equals 1..n.
36 $input = array_unique($array);
37 if (count($input) <= 1) {
38 return [$input];
41 sort($input);
43 foreach ($input as $value) {
47 $n = count($input);
49 $combinations = array_merge($combinations, self::combinations($input, $k));
56 * Returns an array of unique k-combinations from an input array.
/plugin/dw2pdf/_test/
H A DActionPagenameSortTest.php93 // the input is random
94 $input = $prepared;
95 shuffle($input);
99 usort($input, [$action, 'cbPagenameSort']);
101 $this->assertSame($prepared, $input);
/plugin/combo/ComboStrap/
H A DLdJson.php282 'query-input' => 'required name=search_term_string',
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNSimulator.php51 * The line number 1..n within the input.
121 public function match(CharStream $input, int $mode) : int argument
132 $mark = $input->mark();
135 $this->startIndex = $input->getIndex();
141 return $this->matchATN($input);
143 return $this->execATN($input, $dfa->s0);
145 $input->release($mark);
158 protected function matchATN(CharStream $input) : int argument
168 $s0_closure = $this->computeStartState($input, $startState);
178 $predict = $this->execATN($input,
187 execATN(CharStream $input, DFAState $ds0) global() argument
295 computeTargetState(CharStream $input, DFAState $s, int $t) global() argument
319 failOrAccept(SimState $prevAccept, CharStream $input, ATNConfigSet $reach, int $t) global() argument
359 getReachableConfigSet(CharStream $input, ATNConfigSet $closure, ATNConfigSet $reach, int $t) global() argument
418 accept(CharStream $input, LexerActionExecutor $lexerActionExecutor, int $startIndex, int $index, int $line, int $charPos) global() argument
448 computeStartState(CharStream $input, ATNState $p) global() argument
472 closure(CharStream $input, LexerATNConfig $config, ATNConfigSet $configs, bool $currentAltReachedAcceptState, bool $speculative, bool $treatEofAsEpsilon) global() argument
559 getEpsilonTarget(CharStream $input, LexerATNConfig $config, Transition $t, ATNConfigSet $configs, bool $speculative, bool $treatEofAsEpsilon) global() argument
692 evaluatePredicate(CharStream $input, int $ruleIndex, int $predIndex, bool $speculative) global() argument
719 captureSimState(SimState $settings, CharStream $input, DFAState $dfaState) global() argument
836 getText(CharStream $input) global() argument
842 consume(CharStream $input) global() argument
[all...]

12345678910>>...58