Home
last modified time | relevance | path

Searched refs:predicate (Results 1 – 25 of 111) sorted by relevance

12345

/plugin/structnotification/
H A Dadmin.php51 $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/
Dnegate.js24 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.js15 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);
DpickBy.js24 function pickBy(object, predicate) { argument
31 predicate = baseIteratee(predicate);
33 return predicate(value, path[0]);
Dsome.js43 function some(collection, predicate, guard) { argument
45 if (guard && isIterateeCall(collection, predicate, guard)) {
46 predicate = undefined;
48 return func(collection, baseIteratee(predicate, 3));
Devery.js48 function every(collection, predicate, guard) { argument
50 if (guard && isIterateeCall(collection, predicate, guard)) {
51 predicate = undefined;
53 return func(collection, baseIteratee(predicate, 3));
Dremove.js32 function remove(array, predicate) { argument
41 predicate = baseIteratee(predicate, 3);
44 if (predicate(value, index, array)) {
D_createFind.js13 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);
Dcore.js105 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 …]
DomitBy.js25 function omitBy(object, predicate) { argument
26 return pickBy(object, negate(baseIteratee(predicate)));
DfindLastKey.js40 function findLastKey(object, predicate) { argument
41 return baseFindKey(object, baseIteratee(predicate, 3), baseForOwnRight);
DdropWhile.js39 function dropWhile(array, predicate) { argument
41 ? baseWhile(array, baseIteratee(predicate, 3), true)
DfindKey.js40 function findKey(object, predicate) { argument
41 return baseFindKey(object, baseIteratee(predicate, 3), baseForOwn);
DtakeRightWhile.js39 function takeRightWhile(array, predicate) { argument
41 ? baseWhile(array, baseIteratee(predicate, 3), false, true)
DdropRightWhile.js39 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 DFailedPredicateException.php25 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/
DFilter.php43 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 Dnotification.php91 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/
Dsetup-pgsql.sql3 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));
Dsetup-mysql.sql3 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
Dsetup-sqlite.sql3 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 Dupdate0002.sql12 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/
Dlodash.core.js105 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/
Dtable.php400 $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/
Dunderscore.js211 _.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 …]

12345