| /plugin/structnotification/ |
| H A D | admin.php | 51 $predicate = $INPUT->arr('predicate'); 53 $errors = $this->validate($predicate); 58 $ok = $sqlite->storeEntry('predicate', $predicate); 61 $ok = $sqlite->query('DELETE FROM predicate WHERE id=?', $predicate['id']); 64 $errors = $this->validate($predicate); 71 $predicate['id'] = $INPUT->str('edit'); 72 $ok = $sqlite->query("UPDATE predicate SET $set WHERE id=?", $predicate); 114 foreach ($predicates as $predicate) { 115 if ($INPUT->str('edit') == $predicate['id']) { 117 $INPUT->set('predicate', $predicate); [all …]
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | negate.js | 24 function negate(predicate) { argument 25 if (typeof predicate != 'function') { 31 case 0: return !predicate.call(this); 32 case 1: return !predicate.call(this, args[0]); 33 case 2: return !predicate.call(this, args[0], args[1]); 34 case 3: return !predicate.call(this, args[0], args[1], args[2]); 36 return !predicate.apply(this, args);
|
| D | _baseFlatten.js | 15 function baseFlatten(array, depth, predicate, isStrict, result) { argument 19 predicate || (predicate = isFlattenable); 24 if (depth > 0 && predicate(value)) { 27 baseFlatten(value, depth - 1, predicate, isStrict, result);
|
| D | pickBy.js | 24 function pickBy(object, predicate) { argument 31 predicate = baseIteratee(predicate); 33 return predicate(value, path[0]);
|
| D | some.js | 43 function some(collection, predicate, guard) { argument 45 if (guard && isIterateeCall(collection, predicate, guard)) { 46 predicate = undefined; 48 return func(collection, baseIteratee(predicate, 3));
|
| D | every.js | 48 function every(collection, predicate, guard) { argument 50 if (guard && isIterateeCall(collection, predicate, guard)) { 51 predicate = undefined; 53 return func(collection, baseIteratee(predicate, 3));
|
| D | remove.js | 32 function remove(array, predicate) { argument 41 predicate = baseIteratee(predicate, 3); 44 if (predicate(value, index, array)) {
|
| D | _createFind.js | 13 return function(collection, predicate, fromIndex) { argument 16 var iteratee = baseIteratee(predicate, 3); 18 predicate = function(key) { return iteratee(iterable[key], key, iterable); }; function 20 var index = findIndexFunc(collection, predicate, fromIndex);
|
| D | core.js | 105 function baseFindIndex(array, predicate, fromIndex, fromRight) { argument 110 if (predicate(array[index], index, array)) { 469 function baseEvery(collection, predicate) { argument 472 result = !!predicate(value, index, collection); 515 function baseFilter(collection, predicate) { argument 518 if (predicate(value, index, collection)) { 536 function baseFlatten(array, depth, predicate, isStrict, result) { argument 540 predicate || (predicate = isFlattenable); 545 if (depth > 0 && predicate(value)) { 548 baseFlatten(value, depth - 1, predicate, isStrict, result); [all …]
|
| D | omitBy.js | 25 function omitBy(object, predicate) { argument 26 return pickBy(object, negate(baseIteratee(predicate)));
|
| D | findLastKey.js | 40 function findLastKey(object, predicate) { argument 41 return baseFindKey(object, baseIteratee(predicate, 3), baseForOwnRight);
|
| D | dropWhile.js | 39 function dropWhile(array, predicate) { argument 41 ? baseWhile(array, baseIteratee(predicate, 3), true)
|
| D | findKey.js | 40 function findKey(object, predicate) { argument 41 return baseFindKey(object, baseIteratee(predicate, 3), baseForOwn);
|
| D | takeRightWhile.js | 39 function takeRightWhile(array, predicate) { argument 41 ? baseWhile(array, baseIteratee(predicate, 3), false, true)
|
| D | dropRightWhile.js | 39 function dropRightWhile(array, predicate) { argument 41 ? baseWhile(array, baseIteratee(predicate, 3), true, true)
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/ |
| H A D | FailedPredicateException.php | 25 private $predicate; variable in Antlr\\Antlr4\\Runtime\\Error\\Exceptions\\FailedPredicateException 27 public function __construct(Parser $recognizer, string $predicate, ?string $message = null) argument 33 $this->formatMessage($predicate, $message) 54 $this->predicate = $predicate; 70 return $this->predicate; 73 public function formatMessage(string $predicate, ?string $message = null) : string argument 79 return 'failed predicate: {' . $predicate . '}?';
|
| /plugin/zip/pear/File/Archive/Reader/ |
| D | Filter.php | 43 var $predicate; variable in File_Archive_Reader_Filter 48 function File_Archive_Reader_Filter($predicate, &$source) argument 51 $this->predicate = $predicate; 64 } while (!$this->predicate->isTrue($this->source)); 85 } while (!$this->predicate->isTrue($this->source));
|
| /plugin/structnotification/action/ |
| H A D | notification.php | 91 foreach ($predicates as $predicate) { 92 $schema = $predicate['schema']; 93 $field = $predicate['field']; 94 $operator = $predicate['operator']; 95 $value = $predicate['value']; 96 $filters = $predicate['filters']; 97 $users_and_groups = $predicate['users_and_groups']; 98 $message = $predicate['message']; 150 'id' => $predicate['id'] . ':' . $schema . ':' . $pid . ':' . $rawDate,
|
| /plugin/strata/sql/ |
| D | setup-pgsql.sql | 3 predicate TEXT NOT NULL, field 9 CREATE INDEX idx_spo ON data(lower(subject), lower(predicate), lower(object)); 12 CREATE INDEX idx_pso ON data(lower(predicate), lower(subject), lower(object));
|
| D | setup-mysql.sql | 3 predicate TEXT NOT NULL, field 9 CREATE INDEX idx_spo ON data(subject(32), predicate(32), object(32)); -- Prefix length is arbitrary 12 CREATE INDEX idx_pso ON data(predicate(32), subject(32), object(32)); -- Prefix length is arbitrary
|
| D | setup-sqlite.sql | 3 predicate TEXT NOT NULL COLLATE NOCASE, field 9 CREATE INDEX idx_spo ON data(subject, predicate, object); 12 CREATE INDEX idx_pso ON data(predicate, subject, object);
|
| /plugin/structnotification/db/ |
| H A D | update0002.sql | 12 SELECT id,schema,field,operator,days,users_and_groups,message FROM predicate; 14 DROP TABLE predicate; 15 ALTER TABLE predicateTemp RENAME TO predicate;
|
| /plugin/sequencediagram/bower_components/lodash/dist/ |
| D | lodash.core.js | 105 function baseFindIndex(array, predicate, fromIndex, fromRight) { argument 110 if (predicate(array[index], index, array)) { 469 function baseEvery(collection, predicate) { argument 472 result = !!predicate(value, index, collection); 515 function baseFilter(collection, predicate) { argument 518 if (predicate(value, index, collection)) { 536 function baseFlatten(array, depth, predicate, isStrict, result) { argument 540 predicate || (predicate = isFlattenable); 545 if (depth > 0 && predicate(value)) { 548 baseFlatten(value, depth - 1, predicate, isStrict, result); [all …]
|
| /plugin/semanticdata/syntax/ |
| D | table.php | 400 $predicate = ''; 401 if ($col == '%pageid%') $predicate = 'rdfs:label'; 403 if ($col == '%class%') $predicate = 'spd:class'; 405 if ($col == '%title%') $predicate = 'spd:title'; 408 $predicate = sprintf('<%s%s>',$this->getConf('base_url'),urlencode($col)); 421 $wherefilter .= sprintf('{ ?pageurl %s "%s" . }',$predicate, $filter['value']); 424 …= sprintf('{ ?pageurl %s ?%s_value . FILTER regex(?%s_value,"^%s$") }',$predicate,$col,$col,addsla… 427 …rintf('{ ?pageurl %s ?%s_value . FILTER (! regex(?%s_value,"^%s$")) }',$predicate,$col,$col,addsla… 430 …$wherefilter .= sprintf('{ ?pageurl %s ?%s_value . FILTER (?%s_value %s "%s") }',$predicate,$col,$…
|
| /plugin/sequencediagram/bower_components/underscore/ |
| D | underscore.js | 211 _.find = _.detect = function(obj, predicate, context) { 214 key = _.findIndex(obj, predicate, context); 216 key = _.findKey(obj, predicate, context); 223 _.filter = _.select = function(obj, predicate, context) { 225 predicate = cb(predicate, context); 227 if (predicate(value, index, list)) results.push(value); 233 _.reject = function(obj, predicate, context) { argument 234 return _.filter(obj, _.negate(cb(predicate)), context); 239 _.every = _.all = function(obj, predicate, context) { 240 predicate = cb(predicate, context); [all …]
|