/plugin/tagfilter/_test/ |
D | ajax.test.php | 28 $INPUT->set('id', 0); 29 $INPUT->set('form', json_encode(array())); 30 $INPUT->set('ns', json_encode('test:plugin_tagfilter:tags')); 31 $INPUT->set('flags', json_encode(array())); 32 $INPUT->set('pagesearch', json_encode(array())); 54 $INPUT->set('id', 0); 55 $INPUT->set('form', '[["cat1:blorg","cat2:a","cat3:1","cat2:b","cat3:2"]]'); 56 $INPUT->set('ns', json_encode('test:plugin_tagfilter:tags')); 57 $INPUT->set('flags', json_encode(array())); 58 $INPUT->set('pagesearch', json_encode(array())); [all …]
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/ |
D | SetTransition.php | 17 public $set; variable in Antlr\\Antlr4\\Runtime\\Atn\\Transitions\\SetTransition 19 public function __construct(ATNState $target, ?IntervalSet $set = null) argument 23 if ($set !== null) { 24 $this->set = $set; 26 $this->set = new IntervalSet(); 27 $this->set->addOne(Token::INVALID_TYPE); 33 return $this->set->contains($symbol); 38 return $this->set; 53 && $this->set->equals($other->set) 59 return (string) $this->set;
|
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
D | dhtmlxgantt_csp.js | 157 var set = [0, 0, 1, 0, 0, 0]; 165 set[2] = temp[i] || 1; 169 set[1] = (temp[i] || 1) - 1; 172 set[0] = temp[i] * 1 + (temp[i] > 50 ? 1900 : 2000); 178 set[3] = temp[i] || 0; 181 set[4] = temp[i] || 0; 184 set[0] = temp[i] || 0; 188 set[3] = set[3] % 12 + ((temp[i] || '').toLowerCase() == 'am' ? 0 : 12); 191 set[5] = temp[i] || 0; 194 set[1] = gantt.locale.date.month_short_hash[temp[i]] || 0; [all …]
|
/plugin/structstatus/ |
D | script.js | 10 const set = makeDataSet($self.parent(), $self.data('rid')); 18 entry: set, 32 applyDataSet($self.parent(), set); 49 function applyDataSet($full, set) { argument 51 if (typeof set == 'undefined') { 52 set = []; 55 if (set.indexOf(JSON.stringify($self.data('rid'))) === -1) { 71 const set = []; 79 set.push(rid); // this is an enabled value we keep 83 set.push(toggle); // value was not enabled previously, we toggle it [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/ |
D | set.rst | 1 ``set`` 5 the ``set`` tag and can have multiple targets. 11 {% set foo = 'bar' %} 13 After the ``set`` call, the ``foo`` variable is available in the template like 26 {% set foo = [1, 2] %} 27 {% set foo = {'foo': 'bar'} %} 28 {% set foo = 'foo' ~ 'bar' %} 34 {% set foo, bar = 'foo', 'bar' %} 38 {% set foo = 'foo' %} 39 {% set bar = 'bar' %} [all …]
|
/plugin/settingstree/ |
D | helper.php | 194 $c->set("plugin_settringstree_settingsversion_{$pluginname}",$version,$TTL); 195 $c->set("plugin_settringstree_settingsmeta_{$pluginname}",$meta,$TTL); 196 $c->set("plugin_settringstree_settingsdefaults_{$pluginname}",$defaults,$TTL); 223 private function _storeValues($pluginname,settingshierarchy $set){ argument 225 $values = $set->getValueTree(); 229 $c->set("plugin_settringstree_settingsvalues_{$pluginname}",$values,$TTL); 235 $set = $this->_loadSettings($pluginname); 236 $level = $set->getLevel($folder); 242 $set = $this->_loadSettings($pluginname); 249 $level = $set->getLevel($folder); [all …]
|
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Factory/ |
D | DigestMD5MessageFactory.php | 81 $challenge->set('algorithm', 'md5-sess'); 82 …$challenge->set('nonce', $options['nonce'] ?? $this->generateNonce($options['nonce_size'] ?? self:… 83 $challenge->set('qop', $this->generateAvailableQops($options)); 84 $challenge->set('realm', $options['realm'] ?? $_SERVER['USERDOMAIN'] ?? gethostname()); 85 $challenge->set('maxbuf', $options['maxbuf'] ?? '65536'); 86 $challenge->set('charset', 'utf-8'); 88 $challenge->set('cipher', $this->getAvailableCiphers($options)); 112 $response->set('algorithm', 'md5-sess'); 113 $response->set('nonce', $challenge->get('nonce')); 114 …$response->set('cnonce', $options['cnonce'] ?? $this->generateNonce($options['nonce_size'] ?? self… [all …]
|
/plugin/refnotes/ |
D | admin.js | 23 set(value) { method in refnotes_admin.NamedObjectMap 24 super.set(value.getName(), value); 99 lang.set(match[1], match[2]); 288 fields.set(new CheckField('replace-footnotes')); 289 fields.set(new CheckField('reference-db-enable')); 290 fields.set(new TextField('reference-db-namespace')); 415 styles.set(name, value); 541 fields.set(new SelectField('refnote-id')); 542 fields.set(new SelectField('reference-base')); 543 fields.set(new SelectField('reference-font-weight')); [all …]
|
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Request/ |
D | Share.php | 33 public $set = []; variable in Sabre\\CalDAV\\Xml\\Request\\Share 47 * @param array $set 50 function __construct(array $set, array $remove) { argument 52 $this->set = $set; 85 $set = []; 97 $set[] = [ 112 return new self($set, $remove);
|
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/ |
D | model.js | 126 model.set({id: '+1+'}); 140 model.set({id: 2}); 170 a.set({foo: 100}); 176 bar.set(foo.clone().attributes, {unset: true}); 203 doc.set({audience: 'Bill & Bob'}); 205 doc.set({audience: 'Tim > Joan'}); 207 doc.set({audience: 10101}); 219 model.set({ 250 model.set({name: 'Jonas', cool: true}); 264 model.set({a: 3, b: true}); [all …]
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/ |
D | SetHtmlPageFooter.php | 33 $set = 1; 35 $set = 1; 37 $set = 0; 40 $set = 1; 47 if ($set && ($tag === 'SETHTMLPAGEHEADER' || $tag === 'SETPAGEHEADER')) { 49 } elseif ($set && ($tag === 'SETHTMLPAGEFOOTER' || $tag === 'SETPAGEFOOTER')) { 58 if ($set && ($tag === 'SETHTMLPAGEHEADER' || $tag === 'SETPAGEHEADER')) { 60 } elseif ($set && ($tag === 'SETHTMLPAGEFOOTER' || $tag === 'SETPAGEFOOTER')) {
|
/plugin/asciidocjs/node_modules/core-js/modules/ |
D | _set-proto.js | 10 set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line property 11 function (test, buggy, set) { 13 …set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').… 14 set(test, []); 20 else set(O, proto);
|
D | es6.reflect.set.js | 11 function set(target, propertyKey, V /* , receiver */) { function 17 return set(proto, propertyKey, V, receiver); 24 …if (existingDescriptor.get || existingDescriptor.set || existingDescriptor.writable === false) ret… 30 return ownDesc.set === undefined ? false : (ownDesc.set.call(receiver, V), true); 33 $export($export.S, 'Reflect', { set: set }); property
|
/plugin/asciidocjs/node_modules/core-js/library/modules/ |
D | _set-proto.js | 10 set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line property 11 function (test, buggy, set) { 13 …set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').… 14 set(test, []); 20 else set(O, proto);
|
D | es6.reflect.set.js | 11 function set(target, propertyKey, V /* , receiver */) { function 17 return set(proto, propertyKey, V, receiver); 24 …if (existingDescriptor.get || existingDescriptor.set || existingDescriptor.writable === false) ret… 30 return ownDesc.set === undefined ? false : (ownDesc.set.call(receiver, V), true); 33 $export($export.S, 'Reflect', { set: set }); property
|
/plugin/struct/_test/types/ |
D | UserTest.php | 50 $INPUT->set('search', 'test'); 53 $INPUT->set('search', 'dent'); 56 $INPUT->set('search', 'd'); // under mininput 69 $INPUT->set('search', 'test'); 72 $INPUT->set('search', 'dent'); 85 $INPUT->set('search', 'test'); 105 $INPUT->set('search', 'Some');
|
/plugin/bez/tpl/ |
D | start.php | 53 <?php $tpl->set('no_filters', true) ?> 56 <?php $tpl->set('threads', $tpl->get('proposals')) ?> 61 <?php $tpl->set('threads', $tpl->get('my_threads')) ?> 65 <?php $tpl->set('tasks', $tpl->get('my_tasks')) ?> 69 <?php $tpl->set('threads', $tpl->get('reported_threads')) ?> 73 <?php $tpl->set('tasks', $tpl->get('reported_tasks')) ?>
|
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Challenge/ |
D | DigestMD5Challenge.php | 104 $this->context->set('seqnumsnt', 0); 105 $this->context->set('seqnumrcv', 0); 140 $this->context->set('qop', 'auth-conf'); 142 $this->context->set('qop', 'auth-int'); 144 $this->context->set('qop', 'auth'); 166 $response->set('response', DigestMD5Mechanism::computeResponse( 174 $this->context->set( 186 … $this->context->set('a1', hex2bin(DigestMD5Mechanism::computeA1($password, $message, $response))); 187 $this->context->set('cipher', $response->get('cipher')); 237 …$this->context->set('a1', hex2bin(DigestMD5Mechanism::computeA1($password, $this->challenge, $rece… [all …]
|
/plugin/bez/mdl/ |
D | Thread.php | 266 $set = implode(',', array_map(function ($v) { return "$v=0"; }, $flags)); 268 $sql = "UPDATE thread_participant SET $set WHERE thread_id=? AND user_id=?"; 302 $set = implode(',', array_map(function($flag) { return "$flag=1"; }, $flags)); 305 $set .= ',removed=0'; 308 $q = "UPDATE thread_participant SET $set WHERE thread_id=? AND user_id=?"; 483 $tpl->set('thread', $this); 484 $tpl->set('style', $style); 485 $tpl->set('no_actions', true); 498 $tpl->set('content', $thread_box); 510 $tpl->set('who', $this->model->user_nick); [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/ |
D | dataprovider-debug.phpt | 16 Starting test 'DataProviderDebugTest::testProvider with data set #0 (null, true, 1, 1.0)'. 18 Starting test 'DataProviderDebugTest::testProvider with data set #1 (1.2, resource(%d) of type (str… 20 Starting test 'DataProviderDebugTest::testProvider with data set #2 (array(array(1, 2, 3), array(3,… 22 Starting test 'DataProviderDebugTest::testProvider with data set #3 ('this\nis\na\nvery\nvery\nvery… 24 Starting test 'DataProviderDebugTest::testProvider with data set #4 (stdClass Object (), stdClass O… 26 Starting test 'DataProviderDebugTest::testProvider with data set #5 (Binary String: 0x000102030405,… 28 Starting test 'DataProviderDebugTest::testProvider with data set #6 (Binary String: 0x0009)'.
|
/plugin/bez/ctl/ |
D | start.php | 103 $this->tpl->set('timeline', $timeline->get_assoc()); 108 $this->tpl->set('proposals', $proposals); 109 $this->tpl->set('proposals_count', $this->model->threadFactory->count($filter)); 114 $this->tpl->set('my_threads', $my_threads); 115 $this->tpl->set('my_threads_count', $this->model->threadFactory->count($filter)); 120 $this->tpl->set('my_tasks', $my_tasks); 121 $this->tpl->set('my_tasks_count', $this->model->taskFactory->count($filter)); 126 $this->tpl->set('reported_threads', $reported_threads); 127 $this->tpl->set('reported_threads_count', $this->model->threadFactory->count($filter)); 132 $this->tpl->set('reported_tasks', $reported_tasks); [all …]
|
D | 8d.php | 19 $this->tpl->set('thread', $thread); 20 $this->tpl->set('causes', 23 $this->tpl->set('risks', 26 $this->tpl->set('opportunities', 30 $this->tpl->set('8d_tasks', $tasks); 43 $this->tpl->set('preventive_close_date', date('Y-m-d', strtotime($max_preventive_close_date)));
|
/plugin/asciidocjs/node_modules/jake/node_modules/minimatch/ |
D | minimatch.js | 41 return s.split('').reduce(function (set, c) { argument 42 set[c] = true 43 return set 145 this.set = [] property in Minimatch 178 var set = this.globSet = this.braceExpand() 182 this.debug(this.pattern, set) 189 set = this.globParts = set.map(function (s) { 193 this.debug(this.pattern, set) 196 set = set.map(function (s, si, set) { argument 200 this.debug(this.pattern, set) [all …]
|
/plugin/pureldap/vendor/freedsx/asn1/ |
D | ecs.php | 15 $parameters->set(Option::PATHS, [ 21 $services->set(ArraySyntaxFixer::class) 25 $services->set(BlankLineAfterStrictTypesFixer::class); 26 $services->set(BlankLineAfterOpeningTagFixer::class); 27 $services->set(NoUnusedImportsFixer::class);
|
/plugin/pureldap/vendor/freedsx/ldap/ |
D | ecs.php | 15 $parameters->set(Option::PATHS, [ 21 $services->set(ArraySyntaxFixer::class) 25 $services->set(BlankLineAfterStrictTypesFixer::class); 26 $services->set(BlankLineAfterOpeningTagFixer::class); 27 $services->set(NoUnusedImportsFixer::class);
|