Home
last modified time | relevance | path

Searched refs:comp (Results 1 – 25 of 94) sorted by relevance

1234

/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
DComponentTest.php12 $comp = new VCalendar([], false);
14 $sub = $comp->createComponent('VEVENT');
15 $comp->add($sub);
17 $sub = $comp->createComponent('VTODO');
18 $comp->add($sub);
21 foreach ($comp->children() as $key => $subcomponent) {
34 $comp = new VCalendar([], false);
36 $sub = $comp->createComponent('VEVENT');
37 $comp->add($sub);
39 $sub = $comp->createComponent('VTODO');
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
DComponentTest.php13 $comp = new VCalendar(array(), false);
15 $sub = $comp->createComponent('VEVENT');
16 $comp->add($sub);
18 $sub = $comp->createComponent('VTODO');
19 $comp->add($sub);
22 foreach($comp->children() as $key=>$subcomponent) {
35 $comp = new VCalendar(array(), false);
37 $sub = $comp->createComponent('VEVENT');
38 $comp->add($sub);
40 $sub = $comp->createComponent('VTODO');
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/
DComponentTest.php13 $comp = new VCalendar(array(), false);
15 $sub = $comp->createComponent('VEVENT');
16 $comp->add($sub);
18 $sub = $comp->createComponent('VTODO');
19 $comp->add($sub);
22 foreach($comp->children() as $key=>$subcomponent) {
35 $comp = new VCalendar(array(), false);
37 $sub = $comp->createComponent('VEVENT');
38 $comp->add($sub);
40 $sub = $comp->createComponent('VTODO');
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DComponentTest.php13 $comp = new VCalendar(array(), false);
15 $sub = $comp->createComponent('VEVENT');
16 $comp->add($sub);
18 $sub = $comp->createComponent('VTODO');
19 $comp->add($sub);
22 foreach($comp->children() as $key=>$subcomponent) {
35 $comp = new VCalendar(array(), false);
37 $sub = $comp->createComponent('VEVENT');
38 $comp->add($sub);
40 $sub = $comp->createComponent('VTODO');
[all …]
/plugin/struct/meta/
H A DSearch.php165 * @param string $comp @see self::COMPARATORS
168 public function addFilter($colname, $value, $comp, $op = 'OR') argument
170 $filter = $this->createFilter($colname, $value, $comp, $op);
179 * @param string $comp @see self::COMPARATORS
182 public function addDynamicFilter($colname, $value, $comp, $op = 'OR') argument
184 $filter = $this->createFilter($colname, $value, $comp, $op);
193 * @param string $comp @see self::COMPARATORS
197 protected function createFilter($colname, $value, $comp, $op = 'OR') argument
201 if ($comp == '*~') {
203 $comp = '~';
[all …]
H A DSearchConfigParameters.php48 [$colname, $comp, $value, ] = $confHlp->parseFilterLine('AND', $colcomp . $filter);
49 $this->addFilter($colname, $comp, $value);
120 * @param string $comp the comparator
123 public function addFilter($column, $comp, $value) argument
131 $this->filters[$column] = [$comp, $value];
187 [$comp, $value] = $filter;
188 $key = self::$PARAM_FILTER . '[' . $column . $comp . ']';
211 [$comp, $value] = $filter;
212 $this->searchConfig->addDynamicFilter($colName, $value, $comp, 'AND');
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DAbstractPDOTest.php487 'comp-filters' => array(
490 'comp-filters' => array(),
514 'comp-filters' => array(
517 'comp-filters' => array(),
541 'comp-filters' => array(
544 'comp-filters' => array(),
576 'comp-filters' => array(),
597 'comp-filters' => array(
600 'comp-filters' => array(),
628 'comp-filters' => array(
[all …]
/plugin/struct/types/
H A DTraitFilterPrefix.php23 * @param string $comp
27 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
48 $add->where($op, "$column $comp $pl");
H A DAutoSummary.php47 * @param string $comp
51 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
60 $sub->whereOr("$rightalias.lastsummary $comp $pl");
H A DPage.php193 * @param string $comp
197 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
200 parent::filter($add, $tablealias, $colname, $comp, $value, $op);
211 $sub->whereOr("$tablealias.$colname $comp $pl");
213 $sub->whereOr("$rightalias.title $comp $pl");
H A DUser.php161 * @param string $comp
165 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
175 $sub->whereOr("$rightalias.lasteditor $comp $pl");
179 parent::filter($add, $tablealias, $colname, $comp, $value, $op);
H A DTag.php123 * @param string $comp
127 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
136 …$add->where($op, "LOWER(REPLACE($tablealias.$colname, ' ', '')) $comp LOWER(REPLACE($pl, ' ', ''))…
H A DDecimal.php161 * @param string $comp
165 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
180 $add->where($op, "CAST($tablealias.$colname AS DECIMAL) $comp CAST($pl AS DECIMAL)");
H A DDateTime.php123 * @param string $comp
127 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
146 $add->where($op, "$col $comp $pl");
H A DLookup.php267 * @param string $comp
271 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
276 parent::filter($add, $tablealias, $colname, $comp, $value, $op);
291 $column->getType()->filter($add, $rightalias, $field, $comp, $value, $op);
/plugin/zip/pear/File/Archive/Predicate/
DDuplicate.php105 $comp = $this->compare($stat[9], $value[0]);
107 $delete = $comp < 0 ||
108 ($comp == 0 && $this->pos != $value[1]);
/plugin/upgrade/myvendor/splitbrain/php-archive/src/
DZip.php904 * @param boolean|null $comp if compression is used, if null it's determined from $len != $clen
907 protected function makeCentralFileRecord($offset, $ts, $crc, $len, $clen, $name, $comp = null) argument
909 if(is_null($comp)) $comp = $len != $clen;
910 $comp = $comp ? 8 : 0;
919 $header .= pack('v', $comp); // compression method - deflate|none
951 * @param boolean|null $comp if compression is used, if null it's determined from $len != $clen
954 protected function makeLocalFileHeader($ts, $crc, $len, $clen, $name, $comp = null) argument
956 if(is_null($comp)) $comp = $len != $clen;
957 $comp = $comp ? 8 : 0;
965 $header .= pack('v', $comp); // compression method - deflate|none
/plugin/nsexport/packer/ziphtml/compress/
Dziplib.php14 $comp = $conf['plugin']['nsexport']['packer_ziphtml_compress'];
15 $cmd = "$zip -q -$comp -r -u $destinationFile .";
/plugin/structnumber/types/
DNumber.php108 * @param string $comp
112 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
126 $add->where($op, "CAST($tablealias.$colname AS DECIMAL) $comp CAST($pl AS DECIMAL)");
/plugin/structjoin/types/
DJoin.php147 * @param string $comp
151 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) { argument
155 AbstractBaseType::filter($add, $tablealias, $colname, $comp, $value, $op);
166 $column->getType()->filter($add, $rightalias, $field, $comp, $value, $op);
/plugin/struct/_test/types/
H A DTextTest.php137 public function test_filter($prefix, $postfix, $comp, $val, $e_sql, $e_opt) argument
142 $text->filter($QB->filters(), 'T', 'col', $comp, $val, 'AND');
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
DKML.php311 foreach ($geometry->getComponents() as $comp) {
315 $str .= $comp->x() . ',' . $comp->y();
338 foreach (array_slice($components, 1) as $comp) {
339 …$str .= '<' . $this->nss . 'innerBoundaryIs>' . $this->linestringToKML($comp) . '</' . $this->nss …
/plugin/structprogress/types/
DProgress.php141 * @param string $comp
145 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
159 $add->where($op, "CAST($tablealias.$colname AS DECIMAL) $comp CAST($pl AS DECIMAL)");
/plugin/json/
Dhelper.php344 case '==': $comp = ($v == $f['value']); break;
345 case '!=': $comp = ($v != $f['value']); break;
346 case '<': $comp = ($v < $f['value']); break;
347 case '>': $comp = ($v > $f['value']); break;
348 case '<=': $comp = ($v <= $f['value']); break;
349 case '>=': $comp = ($v >= $f['value']); break;
350 default: $comp = false; break;
352 $match = $f['and'] ? ($match && $comp) : ($match || $comp);
/plugin/datatemplate/syntax/
Dlist.php355 $comp = $this->_match_wildcard($f['value'], $datarow[$idx]);
358 $comp = !$this->_match_wildcard($f['value'], $datarow[$idx]);
364 $comp = eval('return ' . $evalstr . ';');
366 $colmatch = $colmatch || $comp;

1234