Home
last modified time | relevance | path

Searched refs:array (Results 426 – 450 of 765) sorted by last modified time

1...<<11121314151617181920>>...31

/plugin/findologicxmlexport/vendor/hoa/file/Temporary/
H A DWrite.php198 * @param array $array Array.
201 public function writeArray(array $array) argument
203 $array = var_export($array, true);
205 return $this->write($array, strlen($array));
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DMap.php80 $array = [
85 $iterator = new LUT\Recursive\Map($array)
H A DIteratorIterator.php82 $array = [
86 $iterator = new LUT\Recursive\Map($array),
102 $array = [
106 $iterator = new LUT\Recursive\Map($array),
131 $array = [
135 $iterator = new LUT\Recursive\Map($array),
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dsplit.rst17 * If ``limit`` is positive, the returned array will contain a maximum of
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dif.rst15 You can also test if an array is not empty:
75 empty array false
77 non-empty array true
H A Dextends.rst170 The possibility to pass an array of templates has been added in Twig 1.2.
/plugin/findologicxmlexport/vendor/twig/twig/ext/twig/
H A Dtwig.c96 static int TWIG_ARRAY_KEY_EXISTS(zval *array, zval *key) in ZEND_GET_MODULE()
98 if (Z_TYPE_P(array) != IS_ARRAY) { in ZEND_GET_MODULE()
104 return zend_hash_exists(Z_ARRVAL_P(array), "", 1); in ZEND_GET_MODULE()
110 return zend_hash_index_exists(Z_ARRVAL_P(array), Z_LVAL_P(key)); in ZEND_GET_MODULE()
114 return zend_symtable_exists(Z_ARRVAL_P(array), Z_STRVAL_P(key), Z_STRLEN_P(key) + 1); in ZEND_GET_MODULE()
530 static char *TWIG_IMPLODE_ARRAY_KEYS(char *joiner, zval *array TSRMLS_DC) in TWIG_IMPLODE_ARRAY_KEYS()
535 …zend_hash_apply_with_arguments(HASH_OF(array) APPLY_TSRMLS_CC, twig_add_array_key_to_string, 2, &c… in TWIG_IMPLODE_ARRAY_KEYS()
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php831 * @param array $array An array
839 $array = $array->getIterator();
844 $array->rewind();
847 $array->next();
861 if (!\is_array($array)) {
865 return array_keys($array);
914 function twig_sort_filter($array) argument
917 $array = iterator_to_array($array);
918 } elseif (!\is_array($array)) {
922 asort($array);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/
H A Dmultiline_array_with_undefined_variable.test2 Exception for multiline array with undefined variable
H A Dmultiline_array_with_undefined_variable_again.test2 Exception for multiline array with undefined variable
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Dbatch_with_keys.test2 "batch" filter preserves array keys
H A Dlength.test4 {{ array|length }}
16 'array' => [1, 4],
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Ddump_array.test12 array(3) {
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DIntegrationTest.php63 public $array = [1, 2]; variable in TwigTestFoo
H A DTemplateTest.php237 $this->assertSame('Zero', $array[false]);
238 $this->assertSame('One', $array[true]);
239 $this->assertSame('One', $array[1.5]);
240 $this->assertSame('One', $array['1']);
241 $this->assertSame('MinusOne', $array[-1.5]);
242 $this->assertSame('FloatButString', $array['1.5']);
244 $this->assertSame('EmptyString', $array[null]);
319 $array = [
331 $arrayObject = new \ArrayObject($array);
332 $stdObject = (object) $array;
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/phar/
H A Dphar-sample.phar15 $mimes = array(
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php138 * @param array $array
141 private function copyArray(array $array) argument
143 foreach ($array as $key => $value) {
144 $array[$key] = $this->recursiveCopy($value);
147 return $array;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DREADME.md153 $prophecy->read('123')->will(new Prophecy\Promise\ReturnPromise(array('value')));
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DJsonSerializationTest.php371 * @param array $array
377 public function testTypeHintedArraySerialization(array $array, $expected, $context = null) argument
379 self::assertEquals($expected, $this->serialize($array, $context));
412 * @param array $array
418 …public function testTypeHintedArrayAndStdClassSerialization(array $array, $expected, $context = nu… argument
420 self::assertEquals($expected, $this->serialize($array, $context));
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dinternals.rst127 protected function doDisplay(array $context, array $blocks = [])
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Dempty.rst8 ``empty`` checks if a variable is an empty string, an empty array, an empty
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/
H A DCoreTest.php216 $array = ['a' => 'a1', 'b' => 'b1', 'c' => 'c1'];
217 $keys = array_keys($array);
220 [$keys, $array],
221 [$keys, new CoreTestIterator($array, $keys)],
222 [$keys, new CoreTestIteratorAggregate($array, $keys)],
239 $array = [1, 2, 'a' => 3, 5, 6, 7];
240 $keys = array_keys($array);
243 [true, 1, $array],
244 [true, '3', $array],
249 [false, 4, $array],
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Darray.test2 Twig supports array notation
4 {# empty array #}
20 {# works even if [] is used inside the array #}
H A Dfloats.test12 return array('val' => 0.0)
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md151 - `DeepCopy\TypeMatcher` applies on any element found in graph, including array elements.

1...<<11121314151617181920>>...31