/plugin/structnotification/ |
H A D | admin.php | 54 if ($INPUT->str('action') && $INPUT->arr('predicate') && checkSecurityToken()) { 55 $predicate = $INPUT->arr('predicate'); 57 $errors = $this->validate($predicate); 62 $ok = $sqlite->storeEntry('predicate', $predicate); 63 if(!$ok) msg('failed to add predicate', -1); 65 $ok = $sqlite->query('DELETE FROM predicate WHERE id=?', $predicate['id']); 66 if(!$ok) msg('failed to delete predicate', 224 validate($predicate) global() argument [all...] |
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Exceptions/ |
H A D | FailedPredicateException.php | 11 * A semantic predicate failed during validation. Validation of predicates 13 * Disambiguating predicate evaluation occurs when we test a predicate during 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, argument [all...] |
/plugin/zip/pear/File/Archive/Reader/ |
H A 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 | 85 $q = 'SELECT * FROM predicate'; 90 foreach ($predicates as $predicate) { 91 $schema = $predicate['schema']; 92 $field = $predicate['field']; 93 $operator = $predicate['operator']; 94 $value = $predicate['value']; 95 $users_and_groups = $predicate['users_and_groups']; 96 $message = $predicate['message']; 127 'id' => $predicate['id'] . ':'. $schema . ':' . $pid . ':' . $rawDate,
|
/plugin/strata/sql/ |
H A D | setup-pgsql.sql | 3 predicate TEXT NOT NULL, field 9 CREATE INDEX idx_spo ON data(lower(subject), lower(predicate), lower(object)); 11 -- index for predicate-primary retrieval (i.e. property fetch) 12 CREATE INDEX idx_pso ON data(lower(predicate), lower(subject), lower(object));
|
H A 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 11 -- index for predicate-primary retrieval (i.e. property fetch) 12 CREATE INDEX idx_pso ON data(predicate(32), subject(32), object(32)); -- Prefix length is arbitrary
|
H A D | setup-sqlite.sql | 3 predicate TEXT NOT NULL COLLATE NOCASE, field 9 CREATE INDEX idx_spo ON data(subject, predicate, object); 11 -- index for predicate-primary retrieval (i.e. property fetch) 12 CREATE INDEX idx_pso ON data(predicate, subject, object);
|
/plugin/semanticdata/syntax/ |
H A 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/lodash/dist/ |
H A D | lodash.core.js | 469 function baseEvery(collection, predicate) { argument 515 function baseFilter(collection, predicate) { argument 540 predicate || (predicate = isFlattenable); 545 if (depth > 0 && predicate(value)) { 902 function baseSome(collection, predicate) { argument 1898 predicate = guard ? undefined : predicate; 1939 function filter(collection, predicate) { argument 2168 predicate = guard ? undefined : predicate; 2352 function negate(predicate) { argument 2353 if (typeof predicate != 'function') { [all …]
|
H A D | lodash.js | 553 function arrayEvery(array, predicate) { argument 574 function arrayFilter(array, predicate) { argument 721 function arraySome(array, predicate) { argument 2726 predicate = source[key], 2937 predicate || (predicate = isFlattenable); 3770 if (predicate(value, path)) { 7856 predicate = getIteratee(predicate, 3); 9129 predicate = undefined; 9895 predicate = undefined; 10583 function negate(predicate) { [all …]
|
/plugin/sequencediagram/bower_components/underscore/ |
H A D | underscore.js | 214 key = _.findIndex(obj, predicate, context); 216 key = _.findKey(obj, predicate, context); 225 predicate = cb(predicate, context); 233 _.reject = function(obj, predicate, context) { argument 240 predicate = cb(predicate, context); 253 predicate = cb(predicate, context); 442 predicate = cb(predicate, context); 616 predicate = cb(predicate, context); 857 _.negate = function(predicate) { argument 859 return !predicate.apply(this, arguments); [all …]
|
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/ |
H A D | underscore.js | 228 var key = keyFinder(obj, predicate, context); 236 predicate = cb(predicate, context); 244 _.reject = function(obj, predicate, context) { argument 251 predicate = cb(predicate, context); 264 predicate = cb(predicate, context); 629 return function(array, predicate, context) { argument 630 predicate = cb(predicate, context); 892 _.negate = function(predicate) { argument 894 return !predicate.apply(this, arguments); 1068 _.findKey = function(obj, predicate, context) { argument [all …]
|
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/ |
H A D | DeepCopy.php | 266 * @param callable $predicate Predicate arguments are: element. 271 private function first(array $elements, callable $predicate) argument 274 if (call_user_func($predicate, $element)) {
|
/plugin/authgooglesheets/vendor/psr/log/Psr/Log/Test/ |
H A D | TestLogger.php | 116 public function hasRecordThatPasses(callable $predicate, $level) argument 122 if (call_user_func($predicate, $rec, $i)) {
|
/plugin/elasticsearch/vendor/psr/log/Psr/Log/Test/ |
H A D | TestLogger.php | 116 public function hasRecordThatPasses(callable $predicate, $level) argument 122 if (call_user_func($predicate, $rec, $i)) {
|
/plugin/dw2pdf/vendor/psr/log/Psr/Log/Test/ |
H A D | TestLogger.php | 116 public function hasRecordThatPasses(callable $predicate, $level) argument 122 if (call_user_func($predicate, $rec, $i)) {
|
/plugin/strata/helper/ |
H A D | syntax.php | 22 'predicate' => '(?:[^:\(\)\[\]\{\}\<\>\|\~\!\@\#\$\%\^\&\*\?\="]+)', 507 if(preg_match("/^({$p->variable}|{$p->reflit})\s+({$p->variable}|{$p->predicate})\s*({$p->type})?\s*:\s*({$p->any})$/S",$line,$match)) { 508 list(, $subject, $predicate, $type, $object) = $match; 522 $predicate = utf8_trim($predicate); 523 if($predicate[0] == '?') { 524 $predicate = $this->variable($predicate); 525 $scope[] = $predicate['text']; 526 $this->updateTypemap($typemap, $predicate['tex [all...] |
H A D | triples.php | 119 function removeTriples($subject=null, $predicate=null, $object=null, $graph=null) { argument 122 foreach(array('subject','predicate','object','graph') as $param) { 149 function fetchTriples($subject=null, $predicate=null, $object=null, $graph=null) { argument 154 foreach(array('subject','predicate','object','graph') as $param) { 176 $sql = "SELECT subject, predicate, object, graph FROM ".self::$readable." WHERE ". implode(" AND ", $filters).$scopeRestriction; 200 * @param predicate string 205 function addTriple($subject, $predicate, $object, $graph) { 206 return $this->addTriples(array(array('subject'=>$subject, 'predicate'=>$predicate, 'object'=>$object)), $graph); 211 * @param triples array contains all triples as arrays with subject, predicate an 187 addTriple($subject, $predicate, $object, $graph) global() argument [all...] |
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/ |
H A D | DeepCopy.php | 280 * Returns first element that matches predicate, `null` if no such element found. 283 * @param callable $predicate Predicate arguments are: element. 288 private function first(array $elements, callable $predicate) argument 291 if (call_user_func($predicate, $element)) {
|
/plugin/sequencediagram/bower_components/lodash/ |
H A D | lodash.js | 553 function arrayEvery(array, predicate) { argument 574 function arrayFilter(array, predicate) { argument 721 function arraySome(array, predicate) { argument 2726 predicate = source[key], 2937 predicate || (predicate = isFlattenable); 3770 if (predicate(value, path)) { 7856 predicate = getIteratee(predicate, 3); 9129 predicate = undefined; 9895 predicate = undefined; 10583 function negate(predicate) { [all …]
|
/plugin/combo/grammar/ |
H A D | PageSql.g4 | 204 predicate: sqlNames 222 predicateGroup: LPAREN predicate ((AND|OR) predicate)* RPAREN; 224 predicates: WHERE (predicate|predicateGroup) ((AND|OR) (predicate|predicateGroup))*;
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
H A D | TestHandler.php | 185 public function hasRecordThatPasses(callable $predicate, $level) argument 194 if ($predicate($rec, $i)) {
|
/plugin/structnotification/db/ |
H A D | update0001.sql | 1 CREATE TABLE predicate ( table
|
/plugin/combo/ComboStrap/PageSqlParser/ |
H A D | PageSql.interp | 153 predicate
|
/plugin/amcharts/assets/ |
H A D | js-yaml.min.js | 2 …predicate)&&(!s.instanceOf||"object"==typeof t&&t instanceof s.instanceOf)&&(!s.predicate||s.predi… 3 …predicate:o,represent:r})},{"../../type":13,esprima:"esprima"}],19:[function(e,t){"use strict";fun…
|