Home
last modified time | relevance | path

Searched refs:hash (Results 226 – 250 of 470) sorted by path

12345678910>>...19

/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md108 * Fixed stringifying of hash containing one value (thanks @avant1)
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Util/
H A DExportUtil.php186 } elseif ($hash = $processed->contains($value)) {
187 return sprintf('%s:%s Object', $class, $hash);
190 $hash = $processed->add($value);
207 return sprintf('%s:%s Object (%s)', $class, $hash, $values);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Djquery.min.js2 …==b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/Filter/
H A DGroup.php55 abstract protected function doAccept($hash); argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/Filter/Group/
H A DExclude.php14 * @param string $hash
18 protected function doAccept($hash) argument
20 return !in_array($hash, $this->groupTests);
H A DInclude.php14 * @param string $hash
18 protected function doAccept($hash) argument
20 return in_array($hash, $this->groupTests);
/plugin/findologicxmlexport/vendor/sebastian/exporter/src/
H A DExporter.php277 if ($hash = $processed->contains($value)) {
278 return sprintf('%s Object &%s', $class, $hash);
281 $hash = $processed->add($value);
298 return sprintf('%s Object &%s (%s)', $class, $hash, $values);
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsBasicTests.yml82 hash) to your document by placing each member of the
H A DYtsErrorTests.yml2 test: Missing value for hash item
5 Third item in this hash doesn't have a value
H A DYtsFlowCollections.yml22 hash: { name: Steve, foo: bar }
24 ['hash' => ['name' => 'Steve', 'foo' => 'bar']]
H A DsfComments.yml29 test: Comments on a hash line
31 Comments on a hash line
56 test: Comment containing a colon on a hash line
H A DsfTests.yml128 test: Document as a simple hash
129 brief: Document as a simple hash
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG656 * removed the need to quote hash keys
657 * allowed hash keys to be any expression
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dwith.rst19 hash of variables you want to define in the ``with`` tag; the previous example
29 {# it works with any expression that resolves to a hash #}
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst581 Support for hash keys as names and expressions was added in Twig 1.5.
610 {# keys as names (equivalent to the previous hash) -- as of Twig 1.5 #}
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Dempty.rst9 hash, exactly ``false``, or exactly ``null``.
/plugin/findologicxmlexport/vendor/twig/twig/src/Cache/
H A DFilesystemCache.php38 $hash = hash('sha256', $className);
40 return $this->directory.$hash[0].$hash[1].'/'.$hash.'.php';
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DCompiler.php284 return sprintf('__internal_%s', hash('sha256', __METHOD__.$this->varNameSalt++));
H A DEnvironment.php354 … return $this->templateClassPrefix.hash('sha256', $key).(null === $index ? '' : '___'.$index);
542 $name = sprintf('__string_template__%s', hash('sha256', $template, false));
H A DParser.php70 …return sprintf('__internal_%s', hash('sha256', __METHOD__.$this->stream->getSourceContext()->getCo…
/plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/
H A DSafeAnalysisNodeVisitor.php41 $hash = spl_object_hash($node);
42 if (!isset($this->data[$hash])) {
46 foreach ($this->data[$hash] as $bucket) {
61 $hash = spl_object_hash($node);
62 if (isset($this->data[$hash])) {
63 foreach ($this->data[$hash] as &$bucket) {
71 $this->data[$hash][] = [
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/NodeVisitor/
H A DProfilerNodeVisitor.php71 return sprintf('__internal_%s', hash('sha256', $this->extensionName));
/plugin/findologicxmlexport/vendor/twig/twig/src/Test/
H A DIntegrationTestCase.php188 … $p->setValue($twig, '__TwigTemplate_'.hash('sha256', uniqid(mt_rand(), true), false).'_');
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Cache/
H A DFilesystemTest.php24 $nonce = hash('sha256', uniqid(mt_rand(), true));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/
H A Dstrings_like_numbers.test4 {{ hash['2e2'] }}
6 return ['hash' => ['2e2' => 'works']]

12345678910>>...19