Home
last modified time | relevance | path

Searched refs:sequence (Results 76 – 100 of 200) sorted by path

12345678

/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DnumericMappingKeys.yml2 test: A sequence with an unordered array
4 A sequence with an unordered array
H A DsfTests.yml10 test: Empty sequence
90 test: A sequence with an embedded mapping
92 A sequence with an embedded mapping
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG246 * fixed the defined test when used on a constant, a map, or a sequence
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dfirst.rst7 The ``first`` filter returns the first "element" of a sequence, a mapping, or
H A Djoin.rst8 of a sequence:
24 the last two items of the sequence:
H A Dlast.rst7 The ``last`` filter returns the last "element" of a sequence, a mapping, or
H A Dlength.rst8 The ``length`` filter returns the number of items of a sequence or mapping, or
H A Dreverse.rst7 The ``reverse`` filter reverses a sequence, a mapping, or a string:
45 * ``preserve_keys``: Preserve keys when reversing a mapping or a sequence.
H A Dslice.rst7 The ``slice`` filter extracts a slice of a sequence, a mapping, or a string:
46 If the start is non-negative, the sequence will start at that start in the
47 variable. If start is negative, the sequence will start that far from the end
50 If length is given and is positive, then the sequence will have up to that
53 negative then the sequence will stop that many elements from the end of the
54 variable. If it is omitted, then the sequence will have everything from offset
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dmax.rst7 ``max`` returns the biggest value of a sequence or a set of values:
H A Dmin.rst7 ``min`` returns the lowest value of a sequence or a set of values:
H A Drandom.rst16 * a random item from a sequence;
H A Drange.rst54 * ``low``: The first value of the sequence.
55 * ``high``: The highest possible value of the sequence.
56 * ``step``: The increment between elements of the sequence.
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dfor.rst4 Loop over each item in a sequence. For example, to display a list of users
18 A sequence can be either an array or an object implementing the
21 If you do need to iterate over a sequence of numbers, you can use the ``..``
67 ``loop.length`` The number of items in the sequence
91 can however filter the sequence during iteration which allows you to skip
117 If no iteration took place because the sequence was empty, you can render a
133 By default, a loop iterates over the values of the sequence. You can iterate
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst599 * ``["foo", "bar"]``: Arrays are defined by a sequence of expressions
784 * ``..``: Creates a sequence based on the operand before and after the operator
/plugin/googlesearch/
H A Dnusoap.php4687 * 'order' => '(sequence|all)',
/plugin/gtime/gtlib/asn1/cms/
H A DCMSAttribute.php115 $sequence = new ASN1Sequence();
116 $sequence->add(new ASN1ObjectId($this->type));
117 $sequence->add($values);
119 return $sequence->encodeDER();
H A DCMSContentInfo.php110 $sequence = new ASN1Sequence();
111 $sequence->add(new ASN1ObjectId($this->contentType));
121 $sequence->add($tag);
123 return $sequence->encodeDER();
H A DCMSEncapsulatedContentInfo.php108 $sequence = new ASN1Sequence();
109 $sequence->add(new ASN1ObjectId($this->contentType));
110 $sequence->add($tag);
112 return $sequence->encodeDER();
134 $sequence = ASN1DER::decode($this->content);
137 $content->decode($sequence);
H A DCMSIssuerAndSerialNumber.php103 $sequence = new ASN1Sequence();
104 $sequence->add($this->issuer);
105 $sequence->add(new ASN1Integer(new GTBigInteger($this->serialNumber)));
107 return $sequence->encodeDER();
H A DCMSSignedData.php196 $sequence = new ASN1Sequence();
197 $sequence->add(new ASN1Integer((int) $this->version));
205 $sequence->add($digestAlgorithms);
206 $sequence->add($this->encapsulatedContent);
223 $sequence->add($certificatesTag);
232 $sequence->add($signerInfos);
234 return $sequence->encodeDER();
H A DCMSSignerInfo.php184 $sequence = new ASN1Sequence();
186 $sequence->add(new ASN1Integer((int) $this->version));
187 $sequence->add($this->sid);
188 $sequence->add($this->digestAlgorithm);
205 $sequence->add($tag);
209 $sequence->add($this->signatureAlgorithm);
210 $sequence->add(new ASN1OctetString($this->signature));
227 $sequence->add($tag);
231 return $sequence->encodeDER();
/plugin/gtime/gtlib/asn1/gt/
H A DGTCertTokenRequest.php57 $sequence = new ASN1Sequence();
58 $sequence->add(new ASN1Integer($this->version));
59 $sequence->add(new ASN1Integer($this->historyIdentifier));
61 return $sequence->encodeDER();
H A DGTPublishedData.php97 $sequence = new ASN1Sequence();
99 $sequence->add(new ASN1Integer(new GTBigInteger($this->publicationIdentifier)));
100 $sequence->add(new ASN1OctetString($this->publicationImprint));
102 return $sequence->encodeDER();
H A DGTSignatureInfo.php93 $sequence = new ASN1Sequence();
95 $sequence->add($this->signatureAlgorithm);
96 $sequence->add(new ASN1OctetString($this->signatureValue));
98 return $sequence->encodeDER();

12345678