Home
last modified time | relevance | path

Searched full:strategy (Results 1 – 25 of 230) sorted by relevance

12345678910

/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
Descape.rst15 By default, it uses the HTML escaping strategy:
28 an optional argument which defines the escaping strategy to use:
61 for the HTML escaping strategy.
66 when the automatic escaping strategy is the same as the one applied by the
68 escaping strategy:
72 {% set strategy = 'html' %}
76 {{ var|escape(strategy) }} {# will be double-escaped #}
79 When using a variable as the escaping strategy, you should disable
84 {% set strategy = 'html' %}
87 {{ var|escape(strategy)|raw }} {# won't be double-escaped #}
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
DEscaperExtension.php25 * @param string|false|callable $defaultStrategy An escaping strategy
52 * Sets the default strategy to use when not defined by the user.
54 * The strategy can be a valid PHP callback that takes the template
55 * name as an argument and returns the strategy to use.
57 * @param string|false|callable $defaultStrategy An escaping strategy
63 …@trigger_error('Using "true" as the default strategy is deprecated since version 1.21. Use "html" …
69 …@trigger_error('Using "filename" as the default strategy is deprecated since version 1.27. Use "na…
82 * Gets the default strategy to use when not defined by the user.
86 * @return string|false The default strategy to use for the template
91 // or any other upcoming escaping strategy
/plugin/findologicxmlexport/vendor/twig/twig/src/
DFileExtensionEscapingStrategy.php15 * Default autoescaping strategy based on file names.
17 * This strategy sets the HTML as the default autoescaping strategy,
21 * default autoescaping strategy is set at compilation time.
28 * Guesses the best autoescaping strategy based on the file name.
32 * @return string|false The escaping strategy name to use or false to disable
/plugin/emoji/script/
Djquery.textcomplete.js61 warn(name + 'as a strategy param is deprecated. Use option.');
66 completer.register($.fn.textcomplete.Strategy.parse(strategies, {
287 // strategy - The Strategy object.
289 select: function (value, strategy, e) { argument
291 this.adapter.select(value, strategy, e);
292 this.fire('change').fire('textComplete:select', value, strategy);
305 // Parse the given text and extract the first matching strategy.
307 // Returns an array including the strategy, the query term and the match
308 // object if the text matches an strategy; otherwise returns an empty array.
311 var strategy = this.strategies[i];
[all …]
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
DPngoutFilter.php51 private $strategy; variable in Assetic\\Filter\\PngoutFilter
74 public function setStrategy($strategy) argument
76 $this->strategy = $strategy;
100 if (null !== $this->strategy) {
101 $pb->add('-s'.$this->strategy);
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
Dautoescape.rst11 using the HTML strategy
16 using the HTML strategy
21 using the js escaping strategy
36 using the HTML strategy
45 using the js escaping strategy
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/Resource/
DPlacementStrategies.php34 * Deletes an existing placement strategy. (placementStrategies.delete)
37 * @param string $id Placement strategy ID.
47 * Gets one placement strategy by ID. (placementStrategies.get)
50 * @param string $id Placement strategy ID.
61 * Inserts a new placement strategy. (placementStrategies.insert)
104 * Updates an existing placement strategy. This method supports patch semantics.
120 * Updates an existing placement strategy. (placementStrategies.update)
/plugin/findologicxmlexport/vendor/jms/serializer/src/Exclusion/
DDisjunctExclusionStrategy.php12 * Disjunct Exclusion Strategy.
14 …* This strategy is short-circuiting and will skip a class, or property as soon as one of the deleg…
33 public function addStrategy(ExclusionStrategyInterface $strategy): void argument
35 $this->delegates[] = $strategy;
/plugin/copycode/
Dscript.js204 let strategy = new DummyCopyStrategy();
206 strategy = new CopyHighlighted(window);
209 strategy = new CopyBlock(this);
211 strategy = new DummyCopyStrategy();
213 strategy = new CopyBlockInline(this);
217 strategy.copy();
218 alertMessage(strategy.get_message());
/plugin/elasticsearch/vendor/ruflin/elastica/src/Connection/
DConnectionPool.php7 use Elastica\Connection\Strategy\StrategyInterface;
24 * @var StrategyInterface Strategy for connection
33 …public function __construct(array $connections, StrategyInterface $strategy, ?callable $callback =… argument
36 $this->_strategy = $strategy;
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/
DComposite.php4 * Composite strategy that runs multiple strategies on tokens.
23 foreach ($this->strategies as $strategy) {
24 $tokens = $strategy->execute($tokens, $config, $context);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Connection/Strategy/
DStrategyFactory.php3 namespace Elastica\Connection\Strategy;
30 $predefinedStrategy = '\\Elastica\\Connection\\Strategy\\'.$strategyName;
41 throw new InvalidException('Can\'t create strategy instance by given argument');
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DTokenFactory.php11 * the error handling strategy (to create missing tokens). Notifying the parser
12 * of a new factory means that it notifies its token source and error strategy.
18 * the error handling strategy. If `text !== null`, than the start and stop
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DANTLRErrorStrategy.php38 * strategy successfully recovers from the match failure, this method
46 * returns successfully. The error strategy implementation is responsible
51 * @throws RecognitionException If the error strategy was not able to
65 * @throws RecognitionException If the error strategy could not recover
86 * @throws RecognitionException If an error is detected by the error strategy
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
DAutoEscapeTokenParser.php32 * using the js escaping strategy
49 …throw new SyntaxError('An escaping strategy must be a string or a bool.', $stream->getCurrent()->g…
60 …@trigger_error('Using the autoescape tag with "true" or "false" before the strategy name is deprec…
63 …throw new SyntaxError('Unexpected escaping strategy as you set autoescaping to false.', $stream->g…
/plugin/scrape/vendor/ezyang/htmlpurifier/library/
DHTMLPurifier.includes.php63 require 'HTMLPurifier/Strategy.php';
204 require 'HTMLPurifier/Strategy/Composite.php';
205 require 'HTMLPurifier/Strategy/Core.php';
206 require 'HTMLPurifier/Strategy/FixNesting.php';
207 require 'HTMLPurifier/Strategy/MakeWellFormed.php';
208 require 'HTMLPurifier/Strategy/RemoveForeignElements.php';
209 require 'HTMLPurifier/Strategy/ValidateAttributes.php';
/plugin/diagramsnet/lib/
Dworkbox-9fe249eb.js.map1Strategy.js","../../../../../../usr/local/lib/node_modules/workbox-cli/node_modules/workbox-precac…
Dworkbox-f163abaa.js.map1Strategy.js","../../../../../../usr/local/lib/node_modules/workbox-cli/node_modules/workbox-precac…
Dworkbox-bed83ea8.js.map1Strategy.js","../../../../../../../opt/hostedtoolcache/node/14.18.1/x64/lib/node_modules/workbox-c…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
Descape_html_attr.test2 "escape" filter does not escape with the html strategy when using the html_attr strategy
/plugin/findologicxmlexport/vendor/jms/serializer/src/
DContext.php141 public function addExclusionStrategy(ExclusionStrategyInterface $strategy): self argument
146 $this->exclusionStrategy = $strategy;
151 $this->exclusionStrategy->addStrategy($strategy);
157 $strategy,
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/Naming/
DIdenticalPropertyNamingStrategyTest.php29 $strategy = new IdenticalPropertyNamingStrategy();
30 self::assertEquals($propertyName, $strategy->translateName($mockProperty));
DCamelCaseNamingStrategyTest.php28 $strategy = new CamelCaseNamingStrategy();
29 self::assertEquals($expected, $strategy->translateName($mockProperty));
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DStrategy.php4 * Supertype for classes that define a strategy for modifying/purifying tokens.
16 * Executes the strategy on the tokens.
/plugin/html2pdf/html2pdf/html2ps/
Dbox.inline.simple.php44 $strategy =& new StrategyLinkRenderingNormal();
45 $strategy->apply($this, $driver);

12345678910