| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/tests/ |
| D | FilterTest.php | 16 * @var Filter 18 private $filter; variable in SebastianBergmann\\CodeCoverage\\FilterTest 27 $this->filter = unserialize('O:37:"SebastianBergmann\CodeCoverage\Filter":0:{}'); 75 * @covers SebastianBergmann\CodeCoverage\Filter::addFileToWhitelist 76 * @covers SebastianBergmann\CodeCoverage\Filter::getWhitelist 80 $this->filter->addFileToWhitelist($this->files[0]); 84 $this->filter->getWhitelist() 89 * @covers SebastianBergmann\CodeCoverage\Filter::removeFileFromWhitelist 90 * @covers SebastianBergmann\CodeCoverage\Filter::getWhitelist 94 $this->filter->addFileToWhitelist($this->files[0]); [all …]
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/ |
| H A D | FilterParser.php | 15 use FreeDSx\Ldap\Search\Filter\AndFilter; 16 use FreeDSx\Ldap\Search\Filter\FilterInterface; 17 use FreeDSx\Ldap\Search\Filter\MatchingRuleFilter; 18 use FreeDSx\Ldap\Search\Filter\OrFilter; 19 use FreeDSx\Ldap\Search\Filter\SubstringFilter; 22 * Parses LDAP filter strings. RFC 4515. 33 protected $filter = ''; variable in FreeDSx\\Ldap\\Search\\FilterParser 52 * @param string $filter 54 public function __construct(string $filter) argument 56 $this->filter = $filter; [all …]
|
| H A D | Filters.php | 15 use FreeDSx\Ldap\Search\Filter\AndFilter; 16 use FreeDSx\Ldap\Search\Filter\ApproximateFilter; 17 use FreeDSx\Ldap\Search\Filter\EqualityFilter; 18 use FreeDSx\Ldap\Search\Filter\FilterInterface; 19 use FreeDSx\Ldap\Search\Filter\GreaterThanOrEqualFilter; 20 use FreeDSx\Ldap\Search\Filter\LessThanOrEqualFilter; 21 use FreeDSx\Ldap\Search\Filter\MatchingRuleFilter; 22 use FreeDSx\Ldap\Search\Filter\NotFilter; 23 use FreeDSx\Ldap\Search\Filter\OrFilter; 24 use FreeDSx\Ldap\Search\Filter\PresentFilter; [all …]
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Xml/Request/ |
| H A D | CalendarQueryReportTest.php | 21 <c:filter> 22 <c:comp-filter name="VCALENDAR" /> 23 </c:filter> 76 <c:filter> 77 <c:comp-filter name="VCALENDAR"> 78 <c:comp-filter name="VEVENT"> 80 <c:prop-filter name="UID" /> 81 <c:comp-filter name="VALARM"> 83 </c:comp-filter> 84 <c:prop-filter name="X-PROP"> [all …]
|
| /plugin/solr/ |
| D | schema.xml | 32 …<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncre… 34 …<filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="… 36 <filter class="solr.LowerCaseFilterFactory"/> 40 …<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncre… 41 …<filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/> 42 <filter class="solr.LowerCaseFilterFactory"/> 56 …<filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="… 62 <filter class="solr.StopFilterFactory" 67 <filter class="solr.LowerCaseFilterFactory"/> 68 <filter class="solr.EnglishPossessiveFilterFactory"/> [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/Resource/ |
| D | ManagementFilters.php | 20 use Google\Service\Analytics\Filter; alias 34 * Delete a filter. (filters.delete) 36 * @param string $accountId Account ID to delete the filter for. 37 * @param string $filterId ID of the filter to be deleted. 39 * @return Filter 45 return $this->call('delete', [$params], Filter::class); 51 * @param string $filterId Filter ID to retrieve filters for. 53 * @return Filter 59 return $this->call('get', [$params], Filter::class); 62 * Create a new filter. (filters.insert) [all …]
|
| D | ManagementProfileFilterLinks.php | 34 * Delete a profile filter link. (profileFilterLinks.delete) 36 * @param string $accountId Account ID to which the profile filter link belongs. 37 * @param string $webPropertyId Web property Id to which the profile filter link 39 * @param string $profileId Profile ID to which the filter link belongs. 40 * @param string $linkId ID of the profile filter link to delete. 50 * Returns a single profile filter link. (profileFilterLinks.get) 52 * @param string $accountId Account ID to retrieve profile filter link for. 53 * @param string $webPropertyId Web property Id to retrieve profile filter link 55 * @param string $profileId Profile ID to retrieve filter link for. 56 * @param string $linkId ID of the profile filter link. [all …]
|
| /plugin/struct/meta/ |
| H A D | SearchConfig.php | 60 if (!empty($config['filter'])) foreach ($config['filter'] as $filter) { 61 … $this->addFilter($filter[0], $this->applyFilterVars($filter[2]), $filter[1], $filter[3]); 86 * Set the cache flag accordingly to the set filter placeholders 95 foreach ($filters as $filter) { 96 … if (is_array($filter)) $filter = $filter[2]; // this is the format we get fro the config parser 98 if (str_contains($filter, '$USER$')) { 100 } elseif (str_contains($filter, '$TODAY$')) { 109 * Replaces placeholders in the given filter value by the proper value 111 * @param string $filter 114 protected function applyFilterVars($filter) argument [all …]
|
| /plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/ |
| H A D | DeepCopy.php | 10 use DeepCopy\Filter\Filter; alias 35 * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs. 42 * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs. 97 public function addFilter(Filter $filter, Matcher $matcher) argument 101 'filter' => $filter, 105 public function prependFilter(Filter $filter, Matcher $matcher) argument 109 'filter' => $filter, 113 public function addTypeFilter(TypeFilter $filter, TypeMatcher $matcher) argument 117 'filter' => $filter, 123 // Matches Type Filter [all …]
|
| /plugin/findologicxmlexport/vendor/hoa/stream/Filter/ |
| D | Filter.php | 37 namespace Hoa\Stream\Filter; 43 * Class \Hoa\Stream\Filter. 45 * Proposes some methods to handle filter. 50 abstract class Filter extends Stream class 53 * Overwrite filter if already exists. 60 * Do not overwrite filter if already exists. 67 * Filter should only be applied when reading. 74 * Filter should only be applied when writing. 81 * Filter should be applied when reading and writing. 88 * All resources with at least one filter registered. [all …]
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/ |
| D | Filter.php | 9 * Class Filter. 11 …stic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-filter-aggregation.html 13 class Filter extends AbstractAggregation class 15 public function __construct(string $name, ?AbstractQuery $filter = null) argument 19 if (null !== $filter) { 20 $this->setFilter($filter); 25 * Set the filter for this aggregation. 29 public function setFilter(AbstractQuery $filter): self argument 31 return $this->setParam('filter', $filter); 35 * @throws InvalidException If filter is not set [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/ |
| D | with_filters.test | 6 (escape_and_nl2br is an escaper filter) 8 1. Don't escape escaper filter output 13 2. Don't escape escaper filter output 23 4. Escape non-escaper filter output 28 5. Escape if last filter is not an escaper 34 6. Don't escape escaper filter output 40 7. Escape if last filter is not an escaper 45 8. Escape if last filter is not an escaper 51 9. Don't escape escaper filter output 53 the output is not escaped due to |raw filter at the end ) [all …]
|
| /plugin/webdav/vendor/sabre/dav/lib/CalDAV/ |
| D | CalendarQueryValidator.php | 34 // The top level object is always a component filter. 60 foreach ($filters as $filter) { 62 $isDefined = isset($parent->{$filter['name']}); 64 if ($filter['is-not-defined']) { 77 if ($filter['time-range']) { 78 foreach ($parent->{$filter['name']} as $subComponent) { 79 …if ($this->validateTimeRange($subComponent, $filter['time-range']['start'], $filter['time-range'][… 86 if (!$filter['comp-filters'] && !$filter['prop-filters']) { 92 foreach ($parent->{$filter['name']} as $subComponent) { 95 $this->validateCompFilters($subComponent, $filter['comp-filters']) && [all …]
|
| /plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/ |
| D | DeepCopy.php | 9 use DeepCopy\Filter\Filter; alias 33 * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs. 40 * @var array Array of ['filter' => Filter, 'matcher' => Matcher] pairs. 94 public function addFilter(Filter $filter, Matcher $matcher) argument 98 'filter' => $filter, 102 public function addTypeFilter(TypeFilter $filter, TypeMatcher $matcher) argument 106 'filter' => $filter, 112 // Matches Type Filter 113 if ($filter = $this->getFirstMatchedTypeFilter($this->typeFilters, $var)) { 114 return $filter->apply($var); [all …]
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/Xml/Request/ |
| H A D | AddressBookQueryReportTest.php | 20 <c:filter> 21 <c:prop-filter name="uid" /> 22 </c:filter> 57 <c:filter test="allof"> 58 <c:prop-filter name="uid" /> 59 </c:filter> 97 <c:filter test="bad"> 98 <c:prop-filter name="uid" /> 99 </c:filter> 145 <c:filter> [all …]
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/ |
| D | FilterCollection.php | 12 namespace Assetic\Filter; 27 foreach ($filters as $filter) { 28 $this->ensure($filter); 33 * Checks that the current collection contains the supplied filter. 35 * If the supplied filter is another filter collection, each of its 38 public function ensure(FilterInterface $filter) argument 40 if ($filter instanceof \Traversable) { 41 foreach ($filter as $f) { 44 } elseif (!in_array($filter, $this->filters, true)) { 45 $this->filters[] = $filter; [all …]
|
| /plugin/davcal/vendor/sabre/dav/lib/CalDAV/ |
| H A D | CalendarQueryValidator.php | 34 // The top level object is always a component filter. 60 foreach ($filters as $filter) { 62 $filterName = $filter['name']; 66 if ($filter['is-not-defined']) { 79 if ($filter['time-range']) { 81 …if ($this->validateTimeRange($subComponent, $filter['time-range']['start'], $filter['time-range'][… 88 if (!$filter['comp-filters'] && !$filter['prop-filters']) { 97 $this->validateCompFilters($subComponent, $filter['comp-filters']) && 98 $this->validatePropFilters($subComponent, $filter['prop-filters'])) { 99 // We had a match, so this comp-filter succeeds [all …]
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/ |
| H A D | NotFilter.php | 12 namespace FreeDSx\Ldap\Search\Filter; 25 * Represents the negation of a filter. RFC 4511, 4.5.1 36 protected $filter; variable in FreeDSx\\Ldap\\Search\\Filter\\NotFilter 39 * @param FilterInterface $filter 41 public function __construct(FilterInterface $filter) argument 43 $this->filter = $filter; 51 return $this->filter; 55 * @param FilterInterface $filter 58 public function set(FilterInterface $filter) argument 60 $this->filter = $filter; [all …]
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/ |
| H A D | FilterFactory.php | 18 use FreeDSx\Ldap\Search\Filter\AndFilter; 19 use FreeDSx\Ldap\Search\Filter\ApproximateFilter; 20 use FreeDSx\Ldap\Search\Filter\EqualityFilter; 21 use FreeDSx\Ldap\Search\Filter\FilterInterface; 22 use FreeDSx\Ldap\Search\Filter\GreaterThanOrEqualFilter; 23 use FreeDSx\Ldap\Search\Filter\LessThanOrEqualFilter; 24 use FreeDSx\Ldap\Search\Filter\MatchingRuleFilter; 25 use FreeDSx\Ldap\Search\Filter\NotFilter; 26 use FreeDSx\Ldap\Search\Filter\OrFilter; 27 use FreeDSx\Ldap\Search\Filter\PresentFilter; [all …]
|
| /plugin/indexmenu/scripts/fancytree/modules/ |
| D | jquery.fancytree.filter.js | 2 * jquery.fancytree.filter.js 4 * Remove or highlight tree nodes, based on a filter. 92 filter, argument 108 opts = $.extend({}, treeOpts.filter, _opts), 113 if (typeof filter === "string") { 114 if (filter === "") { 116 "Fancytree passing an empty string as a filter is handled as clearFilter()." 125 match = filter 127 // Escaping the `filter` will not work because, 137 match = _escapeRegex(filter); // make sure a '.' is treated literally [all …]
|
| /plugin/asciidocjs/node_modules/pug-filters/lib/ |
| D | handle-filters.js | 7 var runFilter = require('./run-filter'); 14 if (node.type === 'Filter') { 28 node.filters.slice().reverse().forEach(function (filter) { argument 29 var attrs = getAttributes(filter, options); 31 node.val = filterWithFallback(filter, node.val, attrs); 37 function filterWithFallback(filter, text, attrs, funcName) { argument 39 var filterName = getFilterName(filter); 47 throw error(ex.code, ex.message, filter); 53 function filterFileWithFallback(filter, filename, text, attrs) { argument 54 var filterName = getFilterName(filter); [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/ |
| D | FilterExpression.php | 22 …parent::__construct(['node' => $node, 'filter' => $filterName, 'arguments' => $arguments], [], $li… 27 $name = $this->getNode('filter')->getAttribute('value'); 28 $filter = $compiler->getEnvironment()->getFilter($name); 31 $this->setAttribute('type', 'filter'); 32 $this->setAttribute('thing', $filter); 33 $this->setAttribute('needs_environment', $filter->needsEnvironment()); 34 $this->setAttribute('needs_context', $filter->needsContext()); 35 $this->setAttribute('arguments', $filter->getArguments()); 36 if ($filter instanceof \Twig_FilterCallableInterface || $filter instanceof TwigFilter) { 37 $this->setAttribute('callable', $filter->getCallable()); [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/Filter/ |
| D | Test.php | 16 protected $filter = null; variable in PHPUnit_Runner_Filter_Test 29 * @param string $filter 31 public function __construct(RecursiveIterator $iterator, $filter) argument 34 $this->setFilter($filter); 38 * @param string $filter 40 protected function setFilter($filter) argument 42 if (PHPUnit_Util_Regex::pregMatchSafe($filter, '') === false) { 46 if (preg_match('/^(.*?)#(\d+)(?:-(\d+))?$/', $filter, $matches)) { 48 $filter = sprintf( 56 $filter = sprintf( [all …]
|
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ |
| D | URIDefinition.php | 37 public function registerFilter($filter) argument 39 $this->registeredFilters[$filter->name] = $filter; 42 public function addFilter($filter, $config) argument 44 $r = $filter->prepare($config); 46 if ($filter->post) { 47 $this->postFilters[$filter->name] = $filter; 49 $this->filters[$filter->name] = $filter; 61 foreach ($this->registeredFilters as $name => $filter) { 62 if ($filter->always_load) { 63 $this->addFilter($filter, $config); [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/AdExchangeBuyerII/Resource/ |
| D | BiddersAccountsFilterSets.php | 35 * Creates the specified filter set for the account with the given account ID. 38 * @param string $ownerName Name of the owner (bidder or account) of the filter 39 * set to be created. For example: - For a bidder-level filter set for bidder 40 * 123: `bidders/123` - For an account-level filter set for the buyer account 42 * filter set for the child seat buyer account 456 whose bidder is 123: 47 * @opt_param bool isTransient Whether the filter set is transient, or should be 48 * persisted indefinitely. By default, filter sets are not transient. If 59 * Deletes the requested filter set from the account with the given account ID. 63 * bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an 64 * account-level filter set for the buyer account representing bidder 123: [all …]
|