Home
last modified time | relevance | path

Searched refs:bar (Results 1 – 25 of 581) sorted by relevance

12345678910>>...24

/plugin/bootswrapper/exe/help/
Dprogress.txt9 Default progress bar.
12 <bar value="60"></bar>
19 <bar value="60"></bar>
28 <bar value="60" showvalue="true"></bar>
34 <bar value="60" showvalue="true"></bar>
44 <bar value="40" type="success"></bar>
48 <bar value="20" type="info"></bar>
52 <bar value="60" type="warning"></bar>
56 <bar value="80" type="danger"></bar>
63 <bar value="40" type="success"></bar>
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
Darray.test8 {{ ['foo', "bar"]|join(',') }}
9 {{ {0: 1, 'foo': 'bar'}|join(',') }}
10 {{ {0: 1, 'foo': 'bar'}|keys|join(',') }}
12 {{ {0: 1, foo: 'bar'}|join(',') }}
13 {{ {0: 1, foo: 'bar'}|keys|join(',') }}
16 {% set a = [1, 2, [1, 2], {'foo': {'foo': 'bar'}}] %}
21 {{ [foo[bar]]|join(',') }}
24 {{ ['foo'|upper, bar|upper, bar == foo]|join(',') }}
41 return ['bar' => 'bar', 'foo' => ['bar' => 'bar']]
44 foo,bar
[all …]
Dmethod_call.test6 {{ items.foo.bar }}
7 {{ items.foo['bar'] }}
8 {{ items.foo.bar('a', 43) }}
9 {{ items.foo.bar(foo) }}
15 return ['foo' => 'bar', 'items' => ['foo' => new TwigTestFoo(), 'bar' => 'foo']]
21 bar
Darray_call.test9 return ['foo' => 'bar', 'items' => ['foo' => 'bar', 'bar' => 'foo']]
11 bar
12 bar
14 bar
Dbinary.test19 {{ "foo" ~ "bar" }}
20 {{ foo ~ "bar" }}
21 {{ "foo" ~ bar }}
22 {{ foo ~ bar }}
25 return ['foo' => 'bar', 'bar' => 'foo']
Dternary_operator.test9 {{ foo ~ (bar ? ('-' ~ bar) : '') }}
11 return ['foo' => 'foo', 'bar' => 'bar']
18 foo-bar
/plugin/mdpage/vendor/cebe/markdown/tests/extra-data/
Dcode_in_lists.md4 bar
16 bar
28 bar
40 bar
52 bar
63 bar
69 bar
75 bar
81 bar
87 bar
[all …]
/plugin/mdpage/vendor/cebe/markdown/tests/github-data/
Dcode_in_lists.md4 bar
16 bar
28 bar
40 bar
52 bar
63 bar
69 bar
75 bar
81 bar
87 bar
[all …]
/plugin/webcode/
Dstyle.css13 div.webcode>.webcode-bar {
21 div.webcode>.webcode-bar .webcode-bar-item {
25 div.webcode>.webcode-bar a, div.webcode>.webcode-bar button {
36 div.webcode>.webcode-bar button {
43 div.webcode:hover>.webcode-bar {
47 div.webcode-bar:focus-within>.webcode-bar {
51 div.webcode>.webcode-bar a:focus, div.webcode>.webcode-bar a:hover, div.webcode>.webcode-bar button…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/
Dparent_block3.test10 {% block bar %}
12 Content of bar (second override)
13 {% endblock bar %}
20 {% block bar %}
22 Content of bar (first override)
23 {% endblock bar %}
28 {% block bar -%}
29 Content of bar
30 {% endblock bar %}
37 Content of bar
[all …]
Dmultiple.test5 {% use "bar.twig" %}
9 {{ block('bar') }}
13 --TEMPLATE(bar.twig)--
14 {% block content 'bar' %}
15 {% block bar 'bar' %}
19 bar
21 bar
Dmultiple_aliases.test5 {% use "bar.twig" %}
9 {{ block('bar') }}
14 --TEMPLATE(bar.twig)--
15 {% block content 'bar' %}
16 {% block bar 'bar' %}
20 bar
22 bar
Ddeep.test8 {{ block('bar') }}
10 {% use "bar.twig" %}
14 --TEMPLATE(bar.twig)--
15 {% block content 'bar' %}
16 {% block bar 'bar' %}
22 bar
/plugin/googleconsentmananger/
Dstyle.less1 #cookie-bar {
17 #cookie-bar.fixed {
24 #cookie-bar.fixed.bottom {
29 #cookie-bar p {
43 #cookie-bar a {
51 #cookie-bar .cb-enable {
54 #cookie-bar .cb-enable:hover {
57 #cookie-bar .cb-disable {
60 #cookie-bar .cb-disable:hover {
63 #cookie-bar .cb-policy {
[all …]
/plugin/combo/resources/theme/default/components/css/
Dwebcode.css5 .webcode-wrapper>.webcode-bar {
12 .webcode-wrapper>.webcode-bar .webcode-bar-item {
16 .webcode-wrapper>.webcode-bar a,
17 .webcode-wrapper>.webcode-bar button {
28 .webcode-wrapper>.webcode-bar button {
35 .webcode-wrapper>.webcode-bar a:focus,
36 .webcode-wrapper>.webcode-bar a:hover,
37 .webcode-wrapper>.webcode-bar button:focus,
38 .webcode-wrapper>.webcode-bar button:hover {
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/set/
Dmutating.test6 {% set bar %}
7 {%- set foo = "bar" -%}
8 bar
12 {{ bar }}
16 bar
17 bar
Dbasic.test5 {% set bar = 'foo<br />' %}
8 {{ bar }}
10 {% set foo, bar = 'foo', 'bar' %}
12 {{ foo }}{{ bar }}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/
Dwith_variables.test4 {% include "foo.twig" with {'foo': 'bar'} %}
10 return ['vars1' => ['foo' => 'bar'], 'vars2' => new ArrayObject(['foo' => 'bar'])]
12 bar
13 bar
14 bar
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
Dnull_coalesce.test6 {{ bar ?? 'KO' }}
8 {{ foo.bar ?? 'KO' }}
10 {{ foo.bar.baz.missing ?? 'OK' }}
11 {{ foo['bar'] ?? 'KO' }}
17 return ['bar' => 'OK', 'foo' => ['bar' => 'OK']]
/plugin/asciidocjs/node_modules/camelcase/
Dreadme.md3 > Convert a dash/dot/underscore/space separated string to camelCase: `foo-bar` → `fooBar`
18 camelCase('foo-bar');
27 camelCase('--foo.bar');
33 camelCase('foo bar');
37 //=> --foo-bar
41 camelCase('foo', 'bar');
44 camelCase('__foo__', '--bar');
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/
Dbasic.test5 {% set bar = 'BAZ' %}
6 {{ foo }}{{ bar }}
8 {{ foo }}{{ bar }}
10 return ['foo' => 'foo', 'bar' => 'bar']
Dnested.test4 {% set foo, bar = 'foo', 'bar' %}
5 {% with {bar: 'BAZ'} %}
7 {{ foo }}{{ bar }}
10 {{ foo }}{{ bar }}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
Djoin.test4 {{ ["foo", "bar"]|join(', ') }}
6 {{ bar|join(', ') }}
8 {{ ["foo", "bar"]|join(', ', ' and ') }}
10 {{ bar|join(', ', ' and ') }}
21 return ['foo' => new TwigTestFoo(), 'bar' => new \ArrayObject([3, 4])]
23 foo, bar
27 foo and bar
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/
Dendmacro_name.test7 {{ macros.bar() }}
10 {% macro bar() %}bar{% endmacro bar %}
15 bar
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
DSimpleObject.php19 private $bar; variable in JMS\\Serializer\\Tests\\Fixtures\\SimpleObject
24 public function __construct($foo, $bar) argument
27 $this->bar = $bar;
37 return $this->bar;

12345678910>>...24