Home
last modified time | relevance | path

Searched refs:filters (Results 176 – 200 of 288) sorted by path

12345678910>>...12

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
H A Dwith_pre_escape_filters.test2 "autoescape" tag applies escaping after calling filters, and before calling pre_escape filters
28 6. Still escape when using filters not declared safe
64 6. Still escape when using filters not declared safe
H A Dwith_preserves_safety_filters.test2 "autoescape" tag handles filters preserving the safety
20 4. Still escape when using filters not declared safe
46 4. Still escape when using filters not declared safe
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/
H A Dmultiple.test2 "filter" tags accept multiple chained filters
/plugin/freechat/phpfreechat/data/public/themes/default/
H A Diepngfix.htc24 if (filters[f])
26 filters[f].enabled = s ? true : false;
27 if (s) with (filters[f]) { src = s; sizingMethod = m }
/plugin/freechat/phpfreechat/themes/default/
H A Diepngfix.htc24 if (filters[f])
26 filters[f].enabled = s ? true : false;
27 if (s) with (filters[f]) { src = s; sizingMethod = m }
/plugin/ghissues/syntax/
H A Dsyntax.php60 $filters='';
68 $filters="?state=open";
71 $filters="?state=closed";
75 $filters="?state=all";
86 if( $filters == '' ) {
87 $filters = '?labels=';
89 $filters .= '&labels=';
102 $filters .= implode(',',$codedLabels);
/plugin/highlightjs/highlight/
H A Dreadme.eng.txt195 keyword HTML tag in HTML, default tags and default filters in templates
/plugin/indexmenu2/cms/transitions/
H A Dblend.js12filters){if(I.transitions.blend.useIeBlendFix)i.filters.item('alpha').opacity=Math.round(Q*100+I.t…
/plugin/issuetracker/
H A Dprototype.js4426 filters: {
4511 var name = match[1], filter = Expr.filters[ name ];
/plugin/jcapture/lib/
H A Dtransform-3.0.2.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
H A Daurora.js3405 this.filters = [new VolumeFilter(this, 'volume'), new BalanceFilter(this, 'pan')];
3554 _ref = _this.filters;
/plugin/jplayer/vendor/happyworm/jplayer/lib/
H A Djquery.min.js2 … in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFi…
4filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!k.reliableHiddenOffsets()&…
/plugin/jplayer/vendor/kriswallsmith/assetic/
H A DCHANGELOG-1.0.md5 * Added the HashableInterface for non-serialiable filters
13 * Fixed issues in CssImport and CssRewrite filters
H A DCHANGELOG-1.1.md15 * Added support for `@import-once` to Less filters
46 * Added filters for JSMin and JSMinPlus
H A DCHANGELOG-1.2.md35 * Added `DependencyExtractorInterface` for filters to report other files they import
40 * Added support of the define option for uglifyjs (1 & 2) filters
H A DREADME.md63 The filters applied to the collection will cascade to each asset leaf if you
75 The core provides the following filters in the `Assetic\Filter` namespace:
153 A filter manager is also provided for organizing filters.
227 consideration if the applied filters support it.
303 specified filters will still be applied, unless they are marked as optional
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DAssetCollection.php27 private $filters; variable in Assetic\\Asset\\AssetCollection
39 * @param array $filters Filters for the current collection
43 …public function __construct($assets = array(), $filters = array(), $sourceRoot = null, array $vars… argument
50 $this->filters = new FilterCollection($filters);
59 $this->filters = clone $this->filters;
120 $this->filters->ensure($filter);
125 return $this->filters->all();
130 $this->filters->clear();
H A DAssetReference.php26 private $filters = array(); variable in Assetic\\Asset\\AssetReference
47 $this->filters[] = $filter;
59 $this->filters = array();
145 while ($filter = array_shift($this->filters)) {
H A DBaseAsset.php27 private $filters; variable in Assetic\\Asset\\BaseAsset
40 * @param array $filters Filters for the asset
45 …public function __construct($filters = array(), $sourceRoot = null, $sourcePath = null, array $var… argument
47 $this->filters = new FilterCollection($filters);
60 $this->filters = clone $this->filters;
65 $this->filters->ensure($filter);
70 return $this->filters->all();
75 $this->filters->clear();
86 $filter = clone $this->filters;
106 $filter = clone $this->filters;
H A DFileAsset.php30 * @param array $filters An array of filters
37 …public function __construct($source, $filters = array(), $sourceRoot = null, $sourcePath = null, a… argument
54 parent::__construct($filters, $sourceRoot, $sourcePath, $vars);
H A DGlobAsset.php31 * @param array $filters An array of filters
35 public function __construct($globs, $filters = array(), $root = null, array $vars = array()) argument
40 parent::__construct(array(), $filters, $root, $vars);
H A DHttpAsset.php31 * @param array $filters An array of filters
37 …public function __construct($sourceUrl, $filters = array(), $ignoreErrors = false, array $vars = a… argument
51 parent::__construct($filters, $scheme.'://'.$host, $path, $vars);
H A DStringAsset.php30 * @param array $filters Filters for the asset
34 … public function __construct($content, $filters = array(), $sourceRoot = null, $sourcePath = null) argument
38 parent::__construct($filters, $sourceRoot, $sourcePath);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/
H A DAssetCollectionIterator.php27 private $filters; variable in Assetic\\Asset\\Iterator\\AssetCollectionIterator
35 $this->filters = $coll->getFilters();
77 foreach ($this->filters as $filter) {
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DAsseticFilterInvoker.php22 private $filters; variable in Assetic\\Extension\\Twig\\AsseticFilterInvoker
30 $this->filters = (array) $filter['filter'];
33 $this->filters = (array) $filter;
45 return $this->filters;
55 $asset = $this->factory->createAsset($input, $this->filters, $options + $this->options);

12345678910>>...12