Home
last modified time | relevance | path

Searched refs:environment (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
DFunctionTest.php33 … $environment = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock());
34 $environment->addFunction(new TwigFunction('foo', 'foo', []));
35 $environment->addFunction(new TwigFunction('bar', 'bar', ['needs_environment' => true]));
36 $environment->addFunction(new TwigFunction('foofoo', 'foofoo', ['needs_context' => true]));
37 …$environment->addFunction(new TwigFunction('foobar', 'foobar', ['needs_environment' => true, 'need…
38 …$environment->addFunction(new TwigFunction('barbar', 'twig_tests_function_barbar', ['is_variadic' …
43 $tests[] = [$node, 'foo()', $environment];
46 $tests[] = [$node, 'foo("bar", "foobar")', $environment];
49 $tests[] = [$node, 'bar($this->env)', $environment];
52 $tests[] = [$node, 'bar($this->env, "bar")', $environment];
[all …]
DFilterTest.php35 … $environment = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock());
36 $environment->addFilter(new TwigFilter('bar', 'bar', ['needs_environment' => true]));
37 …$environment->addFilter(new TwigFilter('barbar', 'twig_tests_filter_barbar', ['needs_context' => t…
85 $tests[] = [$node, 'bar($this->env, "abc")', $environment];
88 $tests[] = [$node, 'bar($this->env, "abc", "bar")', $environment];
92 $tests[] = [$node, 'twig_tests_filter_barbar($context, "abc")', $environment];
95 …= [$node, 'twig_tests_filter_barbar($context, "abc", null, null, ["foo" => "bar"])', $environment];
98 $tests[] = [$node, 'twig_tests_filter_barbar($context, "abc", null, "bar")', $environment];
106 …, 'twig_tests_filter_barbar($context, "abc", "1", "2", [0 => "3", "foo" => "bar"])', $environment];
/plugin/database/
Ddatabase.php276 global $environment;
282 for ($i=1;$i<=$environment->NUMBER_OF_BASIC_TYPES;$i++) {
283 $this->columnTypeList[$i] = $environment->TYPES[$i];
291 $this->columnTypeList[$environment->LOOKUP_OFFSET+$lookupCount]
300 foreach ($environment->tableNames as $tableName) {
304 $this->columnTypeList[$environment->REFERENCE_OFFSET+$counter]
353 global $environment;
363 for ($i=1;$i<=$environment->NUMBER_OF_BASIC_TYPES;$i++) {
366 $list .=">".$environment->TYPES[$i]."</option>";
369 $counter = $environment->LOOKUP_OFFSET;
[all …]
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/
H A DDWRenderer.php34 protected $environment; variable in Dokuwiki\\Plugin\\Commonmark\\DWRenderer
37 * @param EnvironmentInterface $environment
39 public function __construct(EnvironmentInterface $environment) argument
41 $this->environment = $environment;
46 return $this->environment->getConfiguration()->get('renderer/block_separator');
51 return $this->environment->getConfiguration()->get('renderer/inner_separator');
63 return $this->environment->getConfiguration()->get('commonmark/' . $option);
65 return $this->environment->getConfiguration()->get('renderer/' . $option);
90 $renderers = $this->environment->getRenderersForClass(\get_class($node));
H A DCommonmark.php20 $environment = self::createDWEnvironment($render_softbreaks);
23 $parser = new MarkdownParser($environment);
25 $DWRenderer = new DWRenderer($environment);
125 $environment = new Environment($config);
126 $environment->addExtension(new CommonMarkToDokuWikiExtension());
127 $environment->addExtension(new FootnoteToDokuwikiExtension());
128 $environment->addExtension(new StrikethroughExtension());
129 $environment->addExtension(new TableExtension());
130 $environment->addExtension(new FrontMatterExtension());
132 return $environment;
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/
H A DFootnoteToDokuwikiExtension.php57 public function register(EnvironmentBuilderInterface $environment): void argument
59 $environment->addBlockStartParser(new FootnoteStartParser(), 51);
60 $environment->addInlineParser(new AnonymousFootnoteRefParser(), 35);
61 $environment->addInlineParser(new FootnoteRefParser(), 51);
63 $environment->addRenderer(FootnoteContainer::class, new FootnoteContainerRenderer());
64 $environment->addRenderer(Footnote::class, new FootnoteRenderer());
65 $environment->addRenderer(FootnoteBackref::class, new FootnoteBackrefRenderer());
66 $environment->addRenderer(FootnoteRef::class, new FootnoteRefRenderer());
68 …$environment->addEventListener(DocumentParsedEvent::class, [new AnonymousFootnotesListener(), 'onD…
69 …$environment->addEventListener(DocumentParsedEvent::class, [new FixOrphanedFootnotesAndRefsListene…
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Test/
DNodeTestCase.php27 public function testCompile($node, $source, $environment = null, $isPattern = false) argument
29 $this->assertNodeCompilation($source, $node, $environment, $isPattern);
32 …public function assertNodeCompilation($source, Node $node, Environment $environment = null, $isPat… argument
34 $compiler = $this->getCompiler($environment);
44 protected function getCompiler(Environment $environment = null) argument
46 return new Compiler(null === $environment ? $this->getEnvironment() : $environment);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/
DControl.php25 public $environment; variable in Google\\Service\\ServiceUsage\\Control
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DisplayVideo/
DEnvironmentTargetingOptionDetails.php25 public $environment; variable in Google\\Service\\DisplayVideo\\EnvironmentTargetingOptionDetails
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
DEnvironmentAssignedTargetingOptionDetails.php25 public $environment; variable in Google\\Service\\DisplayVideo\\EnvironmentAssignedTargetingOptionDetails
34 public function setEnvironment($environment) argument
36 $this->environment = $environment;
43 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceConsumerManagement/
DControl.php25 public $environment; variable in Google\\Service\\ServiceConsumerManagement\\Control
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
DGoogleCloudDialogflowCxV3RunTestCaseRequest.php25 public $environment; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3RunTestCaseRequest
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
DGoogleCloudDialogflowCxV3BatchRunTestCasesRequest.php26 public $environment; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3BatchRunTestCasesRequest
35 public function setEnvironment($environment) argument
37 $this->environment = $environment;
44 return $this->environment;
DGoogleCloudDialogflowCxV3ExportAgentRequest.php33 public $environment; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3ExportAgentRequest
66 public function setEnvironment($environment) argument
68 $this->environment = $environment;
75 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/
DControl.php25 public $environment; variable in Google\\Service\\ServiceManagement\\Control
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/
DControl.php25 public $environment; variable in Google\\Service\\ServiceNetworking\\Control
30 public function setEnvironment($environment) argument
32 $this->environment = $environment;
39 return $this->environment;
/plugin/webcode/vendor/
Dfirebug-lite-1.2.js122 …ttribute.set("id","FirebugIFrame").attribute.set('firebugIgnore',true).environment.addStyle({ "dis…
123 …IV").attribute.set("id","Firebug").attribute.set('firebugIgnore',true).environment.addStyle({ "dis…
151 el.button.container.environment.addStyle({ "paddingTop":"12px" });
376 el.firebugIcon.environment.addStyle({ "display": env.debug&&'none'||'block' });
395 el.main.environment.addStyle({ "display":env.debug&&'block'||'none' });
396 el.mainiframe.environment.addStyle({ "display":env.debug&&'block'||'none' });
418 el.settings.container.environment.addStyle({
422 el.settings.progressDiv.environment.addStyle({
430 firebug.el.settings.container.environment.addStyle({
442 firebug.el.settings.progressDiv.environment.addStyle({
[all …]
Dfirebug-lite-1.2-compressed.js10environment.addStyle({"display":"none","width":lib.util.GetViewport().width+"px"}).insert(document…
12 if(lib.env.ie||lib.env.webkit){el.button.container.environment.addStyle({"paddingTop":"12px"});}
16 if(env.showIconWhenHidden){if(!internal.popupWin){el.firebugIcon.environment.addStyle({"display":en…
18environment.addStyle({"display":env.debug&&'block'||'none'});el.mainiframe.environment.addStyle({"…
22environment.addStyle({"display":"none"});el.mainiframe.environment.addStyle({"display":"none"});if…
23environment.addStyle({"display":"block"});el.button.newWindow.environment.addStyle({"display":"non…
24environment.addStyle({"display":"none"});firebug.el.mainiframe.environment.addStyle({"display":"no…
25environment.addStyle({"height":win.resizer.y[2]+"px"});el.mainiframe.environment.addStyle({"height…
26 …;var dim=lib.util.GetViewport();el.main.environment.addStyle({"width":dim.width+"px"});el.mainifra…
27environment.addStyle({"top":dim.height-el.main.environment.getSize().offsetHeight+Math.max(documen…
[all …]
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.2-compressed.js21environment.addStyle({"display":"none","width":lib.util.GetViewport().width+"px"}).insert(document…
23 if(lib.env.ie||lib.env.webkit){el.button.container.environment.addStyle({"paddingTop":"12px"});}
27 if(env.showIconWhenHidden){if(!internal.popupWin){el.firebugIcon.environment.addStyle({"display":en…
29environment.addStyle({"display":env.debug&&'block'||'none'});el.mainiframe.environment.addStyle({"…
33environment.addStyle({"display":"none"});el.mainiframe.environment.addStyle({"display":"none"});if…
34environment.addStyle({"display":"block"});el.button.newWindow.environment.addStyle({"display":"non…
35environment.addStyle({"display":"none"});firebug.el.mainiframe.environment.addStyle({"display":"no…
36environment.addStyle({"height":win.resizer.y[2]+"px"});el.mainiframe.environment.addStyle({"height…
37 …;var dim=lib.util.GetViewport();el.main.environment.addStyle({"width":dim.width+"px"});el.mainifra…
38environment.addStyle({"top":dim.height-el.main.environment.getSize().offsetHeight+Math.max(documen…
[all …]
H A Dfirebug-lite-1.2.js133 …ttribute.set("id","FirebugIFrame").attribute.set('firebugIgnore',true).environment.addStyle({ "dis…
134 …IV").attribute.set("id","Firebug").attribute.set('firebugIgnore',true).environment.addStyle({ "dis…
162 el.button.container.environment.addStyle({ "paddingTop":"12px" });
387 el.firebugIcon.environment.addStyle({ "display": env.debug&&'none'||'block' });
406 el.main.environment.addStyle({ "display":env.debug&&'block'||'none' });
407 el.mainiframe.environment.addStyle({ "display":env.debug&&'block'||'none' });
429 el.settings.container.environment.addStyle({
433 el.settings.progressDiv.environment.addStyle({
441 firebug.el.settings.container.environment.addStyle({
453 firebug.el.settings.progressDiv.environment.addStyle({
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
DGoogleCloudApigeeV1InstanceAttachment.php29 public $environment; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1InstanceAttachment
52 public function setEnvironment($environment) argument
54 $this->environment = $environment;
61 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
DCompleteness.php29 public $environment; variable in Google\\Service\\ContainerAnalysis\\Completeness
52 public function setEnvironment($environment) argument
54 $this->environment = $environment;
61 return $this->environment;
DSlsaCompleteness.php29 public $environment; variable in Google\\Service\\ContainerAnalysis\\SlsaCompleteness
52 public function setEnvironment($environment) argument
54 $this->environment = $environment;
61 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/
DCompleteness.php29 public $environment; variable in Google\\Service\\OnDemandScanning\\Completeness
52 public function setEnvironment($environment) argument
54 $this->environment = $environment;
61 return $this->environment;
DSlsaCompleteness.php29 public $environment; variable in Google\\Service\\OnDemandScanning\\SlsaCompleteness
52 public function setEnvironment($environment) argument
54 $this->environment = $environment;
61 return $this->environment;

12345678910>>...12