Home
last modified time | relevance | path

Searched refs:bar (Results 251 – 275 of 495) sorted by path

1...<<11121314151617181920

/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst965 bar.test
968 bar.test
971 bar.test
H A Dadvanced_legacy.rst845 bar.test
848 bar.test
851 bar.test
H A Dapi.rst466 concatenation, ``{{ foo|raw ~ bar }}`` won't give the expected result as
H A Dcoding_standards.rst34 {{ foo ~ bar }}
43 {{ {'foo': 'bar'} }}
83 {{ {'foo': 'bar'} }}
H A Dtemplates.rst81 {{ foo.bar }}
82 {{ foo['bar'] }}
108 * check if ``foo`` is an array and ``bar`` a valid element;
145 {% set foo = {'foo': 'bar'} %}
608 { 'foo': 'foo', 'bar': 'bar' }
611 { foo: 'foo', bar: 'bar' }
614 { 2: 'foo', 4: 'bar' }
618 { (foo): 'foo', (1 + 1): 'bar', (foo ~ 'b'): 'baz' }
630 {% set foo = [1, {"foo": "bar"}] %}
836 {{ "foo #{bar} baz" }}
[all …]
/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
H A Dreplace.rst9 {{ "I like %this% and %that%."|replace({'%this%': foo, '%that%': "bar"}) }}
11 {# outputs I like foo and bar
16 {{ "I like this and --that--."|replace({'this': foo, '--that--': "bar"}) }}
18 {# outputs I like foo and bar #}
H A Dsplit.rst38 {% set bar = "aabbcc"|split('', 2) %}
39 {# bar contains ['aa', 'bb', 'cc'] #}
H A Durl_encode.rst22 {{ {'param': 'value', 'foo': 'bar'}|url_encode }}
23 {# outputs "param=value&foo=bar" #}
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dinclude.rst25 {{ include('template.html', {foo: 'bar'}) }}
33 {{ include('template.html', {foo: 'bar'}, with_context = false) }}
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dembed.rst53 Some pages ("foo" and "bar") share the same content structure -
93 "bar" pages and another one with side-by-side boxes for the "boom" and
158 {% embed "base" with {'foo': 'bar'} %}
162 {% embed "base" with {'foo': 'bar'} only %}
H A Dinclude.rst47 {% include 'template.html' with {'foo': 'bar'} %}
49 {% set vars = {'foo': 'bar'} %}
57 {% include 'template.html' with {'foo': 'bar'} only %}
100 {% include 'sidebar.html' ignore missing with {'foo': 'bar'} %}
H A Dset.rst7 Here is how you can assign the ``bar`` value to the ``foo`` variable:
11 {% set foo = 'bar' %}
18 {# displays bar #}
27 {% set foo = {'foo': 'bar'} %}
28 {% set foo = 'foo' ~ 'bar' %}
34 {% set foo, bar = 'foo', 'bar' %}
39 {% set bar = 'bar' %}
H A Dwith.rst40 {% set bar = 'bar' %}
43 {# bar is not defined #}
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Ddefined.rst15 {% if foo.bar is defined %}
19 {% if foo['bar'] is defined %}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DErrorTest.php214 public function bar() function in Twig_Tests_ErrorTest_Foo
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/
H A DSandboxTest.php332 public $bar = 'bar'; variable in FooObject
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/
H A Dmultiline_array_with_undefined_variable.test6 bar: 'bar',
H A Dmultiline_array_with_undefined_variable_again.test6 bar: 'bar',
H A Dsyntax_error_in_reused_template.test6 {% block bar %}
H A Dundefined_trait.test4 {% use 'foo' with foobar as bar %}
6 {% block bar %}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Darray.test8 {{ ['foo', "bar"]|join(',') }}
9 {{ {0: 1, 'foo': 'bar'}|join(',') }}
12 {{ {0: 1, foo: 'bar'}|join(',') }}
21 {{ [foo[bar]]|join(',') }}
24 {{ ['foo'|upper, bar|upper, bar == foo]|join(',') }}
41 return ['bar' => 'bar', 'foo' => ['bar' => 'bar']]
44 foo,bar
45 1,bar
48 1,bar
52 bar
[all …]
H A Darray_call.test9 return ['foo' => 'bar', 'items' => ['foo' => 'bar', 'bar' => 'foo']]
11 bar
12 bar
14 bar
H A Dbinary.test19 {{ "foo" ~ "bar" }}
20 {{ foo ~ "bar" }}
21 {{ "foo" ~ bar }}
22 {{ foo ~ bar }}
25 return ['foo' => 'bar', 'bar' => 'foo']
H A Dmagic_call.test5 {{ foo.bar }}

1...<<11121314151617181920