Home
last modified time | relevance | path

Searched refs:foo (Results 101 – 125 of 405) sorted by relevance

12345678910>>...17

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/
H A Dconditional.test4 {% extends standalone ? foo : 'bar.twig' %}
7 --TEMPLATE(foo.twig)--
12 return ['foo' => 'foo.twig', 'standalone' => true]
H A Dextends_as_array.test4 {% extends ["foo.twig", "bar.twig"] %}
7 foo
12 foo
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/
H A Dwith_only.test4 {% with {foo: 'foo', bar: 'BAZ'} only %}
5 {{ foo }}{{ bar }}{{ baz }}
8 return ['foo' => 'baz', 'baz' => 'baz']
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/
H A Dvarargs.test14 {{ test1("foo", "bar", "foobar") }}
15 {{ test2("foo", "bar", "foobar") }}
19 foo: bar, foobar
21 foo, bar, foobar
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/
H A Dcomplex_dynamic_parent.test5 {% embed foo ~ ".twig" %}
13 --TEMPLATE(foo.twig)--
24 return ['foo' => 'foo']
H A Ddynamic_parent.test5 {% embed foo %}
13 --TEMPLATE(foo.twig)--
24 return ['foo' => 'foo.twig']
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Ddump_array.test8 return ['foo' => 'foo', 'bar' => 'bar']
13 ["foo"]=>
14 string(3) "foo"
H A Dattribute.test11 return ['obj' => new TwigTestFoo(), 'method' => 'foo', 'array' => ['foo' => 'bar'], 'item' => 'foo'…
13 foo
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
H A Ddefined_for_blocks_with_template.test4 {{ block('foo', 'included.twig') is defined ? 'ok' : 'ko' }}
5 {{ block('foo', included_loaded) is defined ? 'ok' : 'ko' }}
6 {{ block('foo', included_loaded_internal) is defined ? 'ok' : 'ko' }}
8 {% block foo %}FOO{% endblock %}
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dformat.rst9 {{ "I like %s and %s."|format(foo, "bar") }}
11 {# outputs I like foo and bar
12 if the foo parameter equals to the foo string. #}
H A Dsplit.rst12 {% set foo = "one,two,three"|split(',') %}
13 {# foo contains ['one', 'two', 'three'] #}
27 {% set foo = "one,two,three,four,five"|split(',', 3) %}
28 {# foo contains ['one', 'two', 'three,four,five'] #}
35 {% set foo = "123"|split('') %}
36 {# foo contains ['1', '2', '3'] #}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Dreplace.test4 {{ "I liké %this% and %that%."|replace({'%this%': "foo", '%that%': "bar"}) }}
8 return ['traversable' => new \ArrayObject(['%this%' => 'foo', '%that%' => 'bar'])]
10 I liké foo and bar.
12 I like foo and bar.
H A Dsplit.test5 {{ foo|split(',')|join('-') }}
6 {{ foo|split(',', 3)|join('-') }}
10 {{ foo|split(',', -2)|join('-') }}
12 return ['foo' => "one,two,three,four,five", 'baz' => '12345',]
H A Durlencode.test6 {{ {foo: "bar", number: 3, "spéßi%l": "e%c0d@d", "spa ce": ""}|url_encode }}
7 {{ {foo: "bar", number: 3, "spéßi%l": "e%c0d@d", "spa ce": ""}|url_encode|raw }}
13 foo=bar&number=3&sp%C3%A9%C3%9Fi%25l=e%25c0d%40d&spa%20ce=
14 foo=bar&number=3&sp%C3%A9%C3%9Fi%25l=e%25c0d%40d&spa%20ce=
H A Durlencode_deprecated.test6 {{ {foo: "bar", number: 3, "spéßi%l": "e%c0d@d", "spa ce": ""}|url_encode }}
7 {{ {foo: "bar", number: 3, "spéßi%l": "e%c0d@d", "spa ce": ""}|url_encode|raw }}
13 foo=bar&number=3&sp%C3%A9%C3%9Fi%25l=e%25c0d%40d&spa%20ce=
14 foo=bar&number=3&sp%C3%A9%C3%9Fi%25l=e%25c0d%40d&spa%20ce=
/plugin/zip/pear/File/Archive/Writer/
H A DMulti.php56 foreach($this->writers as $key => $foo) {
71 foreach($this->writers as $key => $foo) {
85 foreach($this->writers as $key => $foo) {
102 foreach($this->writers as $key => $foo) {
119 foreach($this->writers as $key => $foo) {
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsBasicTests.yml45 - foo
49 [['foo', 'bar', 'baz']]
58 - foo
87 foo: whatever
90 ['foo' => 'whatever', 'bar' => 'stuff']
96 foo: whatever
101 ['foo' => 'whatever', 'bar' => ['uno', 'dos']]
107 foo: whatever
114 'foo' => 'whatever',
127 foo: whatever
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Dends_with.test4 {{ 'foo' ends with 'o' ? 'OK' : 'KO' }}
5 {{ not ('foo' ends with 'f') ? 'OK' : 'KO' }}
6 {{ not ('foo' ends with 'foowaytoolong') ? 'OK' : 'KO' }}
7 {{ 'foo' ends with '' ? 'OK' : 'KO' }}
H A Dmatches.test4 {{ 'foo' matches '/o/' ? 'OK' : 'KO' }}
5 {{ 'foo' matches '/^fo/' ? 'OK' : 'KO' }}
6 {{ 'foo' matches '/O/i' ? 'OK' : 'KO' }}
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dproxy.phpt7 public function bar(Foo $foo)
11 public function baz(Foo $foo)
38 public function bar(Foo $foo)
40 $arguments = array($foo);
60 public function baz(Foo $foo)
62 $arguments = array($foo);
H A Dclass.phpt7 public function bar(Foo $foo)
11 public function baz(Foo $foo)
42 public function bar(Foo $foo)
44 $arguments = array($foo);
64 public function baz(Foo $foo)
66 $arguments = array($foo);
H A Dinvocation_object_clone_object.phpt7 public function bar(Foo $foo)
11 public function baz(Foo $foo)
43 public function bar(Foo $foo)
45 $arguments = array($foo);
65 public function baz(Foo $foo)
67 $arguments = array($foo);
H A Dnamespaced_class.phpt9 public function bar(Foo $foo)
13 public function baz(Foo $foo)
44 public function bar(NS\Foo $foo)
46 $arguments = array($foo);
66 public function baz(NS\Foo $foo)
68 $arguments = array($foo);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/block/
H A Dbasic.test5 {% block title2 foo|lower %}
6 --TEMPLATE(foo.twig)--
9 return ['foo' => 'bar']
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Ddefined.rst10 {% if foo is defined %}
15 {% if foo.bar is defined %}
19 {% if foo['bar'] is defined %}
28 {% if var is defined and foo.method(var) is defined %}

12345678910>>...17