Home
last modified time | relevance | path

Searched refs:foo (Results 51 – 75 of 405) sorted by relevance

12345678910>>...17

/plugin/findologicxmlexport/vendor/myclabs/deep-copy/fixtures/f008/
H A DA.php7 private $foo; variable in DeepCopy\\f008\\A
9 public function __construct($foo) argument
11 $this->foo = $foo;
16 return $this->foo;
/plugin/findologicxmlexport/vendor/jms/metadata/tests/Fixtures/
H A DTestObject.php9 private $foo; variable in Metadata\\Tests\\Fixtures\\TestObject
13 return $this->foo;
16 private function setFoo($foo) argument
18 $this->foo = $foo;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
H A Dnull_coalesce.test8 {{ foo.bar ?? 'KO' }}
9 {{ foo.missing ?? 'OK' }}
10 {{ foo.bar.baz.missing ?? 'OK' }}
11 {{ foo['bar'] ?? 'KO' }}
12 {{ foo['missing'] ?? 'OK' }}
17 return ['bar' => 'OK', 'foo' => ['bar' => 'OK']]
H A Din_with_objects.test8 $foo = new TwigTestFoo();
11 $foo->position = $foo1;
12 $foo1->position = $foo;
15 'object' => $foo,
16 'object_list' => [$foo1, $foo],
H A Din.test4 {% if bar in foo %}
7 {% if not (bar in foo) %}
11 {% if bar not in foo %}
43 {{ '' in 'foo' ? 'TRUE' : 'FALSE' }}
44 {{ 0 in 'foo' ? 'TRUE' : 'FALSE' }}
45 {{ false in 'foo' ? 'TRUE' : 'FALSE' }}
54 {{ resource in 'foo'~resource ? 'TRUE' : 'FALSE' }}
57 {{ dir_object in 'foo'~dir_object ? 'TRUE' : 'FALSE' }}
77 return ['bar' => 'bar', 'foo' => ['bar' => 'bar'], 'dir_object' => new \SplFileInfo(dirname(__FILE_…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Dblock_with_template.test4 {{ block('foo', 'included.twig') }}
5 {{ block('foo', included_loaded) }}
6 {{ block('foo', included_loaded_internal) }}
7 {% set output = block('foo', 'included.twig') %}
9 {% block foo %}NOT FOO{% endblock %}
11 {% block foo %}FOO{% endblock %}
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Matcher/
H A DConsecutiveParametersTest.php17 $this->assertNull($mock->foo('bar'));
18 $this->assertNull($mock->foo(21, 42));
33 $this->assertNull($mock->foo('bar'));
34 $this->assertNull($mock->foo(21, 42));
50 $mock->foo('bar');
54 $mock->foo('invalid');
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/
H A Dnested.test4 {% set foo, bar = 'foo', 'bar' %}
6 {% with {foo: 'FOO'} %}
7 {{ foo }}{{ bar }}
10 {{ foo }}{{ bar }}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Djoin.test4 {{ ["foo", "bar"]|join(', ') }}
5 {{ foo|join(', ') }}
8 {{ ["foo", "bar"]|join(', ', ' and ') }}
9 {{ foo|join(', ', ' and ') }}
21 return ['foo' => new TwigTestFoo(), 'bar' => new \ArrayObject([3, 4])]
23 foo, bar
27 foo and bar
H A Dsplit_utf8.test7 {{ foo|split(',')|join('-') }}
8 {{ foo|split(',', 1)|join('-') }}
9 {{ foo|split(',', 2)|join('-') }}
10 {{ foo|split(',', 3)|join('-') }}
15 return ['foo' => 'Ä,é,Äほ', 'baz' => 'éÄßごa',]
H A Dtrim.test6 {{ " foo/"|trim("/") }}
10 {{ "/ foo/"|trim("/", "left") }}
11 {{ "/ foo/"|trim(character_mask="/", side="left") }}
18 foo
22 foo/
23 foo/
H A Dmerge.test4 {{ items|merge({'bar': 'foo'})|join }}
5 {{ items|merge({'bar': 'foo'})|keys|join }}
6 {{ {'bar': 'foo'}|merge(items)|join }}
7 {{ {'bar': 'foo'}|merge(items)|keys|join }}
12 'items' => ['foo' => 'bar'],
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/
H A Dparent_change.test4 {% extends foo ? 'foo.twig' : 'bar.twig' %}
5 --TEMPLATE(foo.twig)--
10 return ['foo' => true]
14 return ['foo' => false]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DSimpleObject.php13 private $foo; variable in JMS\\Serializer\\Tests\\Fixtures\\SimpleObject
24 public function __construct($foo, $bar) argument
26 $this->foo = $foo;
32 return $this->foo;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/
H A Dsandbox.test4 {{ include("foo.twig", sandboxed = true) }}
5 --TEMPLATE(foo.twig)--
8 {{ foo|e }}
9 {{ foo|e }}
13 Twig\Sandbox\SecurityNotAllowedFilterError: Filter "e" is not allowed in "foo.twig" at line 4.
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Dstarts_with.test4 {{ 'foo' starts with 'f' ? 'OK' : 'KO' }}
5 {{ not ('foo' starts with 'oo') ? 'OK' : 'KO' }}
6 {{ not ('foo' starts with 'foowaytoolong') ? 'OK' : 'KO' }}
7 {{ 'foo' starts with 'f' ? 'OK' : 'KO' }}
8 {{ 'foo' starts
10 {{ 'foo' starts with '' ? 'OK' : 'KO' }}
H A Dmagic_call.test4 {{ foo.foo }}
5 {{ foo.bar }}
16 if ('foo' === $method) {
24 return ['foo' => new TestClassForMagicCallAttributes()]
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dreplace.rst9 {{ "I like %this% and %that%."|replace({'%this%': foo, '%that%': "bar"}) }}
11 {# outputs I like foo and bar
12 if the foo parameter equals to the foo string. #}
16 {{ "I like this and --that--."|replace({'this': foo, '--that--': "bar"}) }}
18 {# outputs I like foo and bar #}
H A Ddefault.rst11 {{ var.foo|default('foo item on var is not defined') }}
13 {{ var['foo']|default('foo item on var is not defined') }}
23 {{ var.method(foo|default('foo'))|default('foo') }}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/
H A Dobjects.test21 protected $values = ['foo' => 'bar', 'bar' => 'foo'];
34 * foo
39 * foo/bar
40 * bar/foo
42 * foo
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dxml_reference.rst8 …<class name="Fully\Qualified\ClassName" exclusion-policy="ALL" xml-root-name="foo-bar" exclude="tr…
15 <group>foo</group>
24 serialized-name="foo"
34 groups="foo,bar"
46 <value>foo</value>
50 <callback-method name="foo" type="pre-serialize" />
60 serialized-name="foo"
69 groups="foo,bar"
79 serialized-name="foo"
88 groups="foo,bar"
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/_fixture/
H A Dclass_with_method_that_declares_anonymous_class.php2 interface foo { interface
9 $o = new class { public function foo() {} }; function in class_with_method_that_declares_anonymous_class::method::AnonymousClassb9224f5c0100
10 $o = new class{public function foo(){}}; function in class_with_method_that_declares_anonymous_class::method::AnonymousClassb9224f5c0200
13 $o = new class implements foo {};
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/
H A Dempty_token.test4 {{ foo }}0{{ foo }}
6 return ['foo' => 'foo']
/plugin/farmer/lang/ja/
H A Dtab_config_help.txt9 これは完全修飾ホスト名でなければなりません。(''foo'' のみではなく ''foo.example.com'')
12 例えば ''example.com'' を指定した場合、''foo'' という名の動物は ''foo.example.com'' 経由で届く想定します。
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/set/
H A Dexpression.test4 {% set foo, bar = 'foo' ~ 'bar', 'bar' ~ 'foo' %}
6 {{ foo }}

12345678910>>...17