Home
last modified time | relevance | path

Searched refs:sequence (Results 26 – 50 of 200) sorted by relevance

12345678

/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DBarcode1D.php986 $sequence = array();
1008 $sequence = array_merge($sequence, $this->get128ABsequence(substr($code, $end_offset)));
1012 $sequence = array_merge($sequence, $this->get128ABsequence($code));
1015 foreach ($sequence as $key => $seq) {
1025 $sequence[$key][3] = true;
1048 $sequence[$key][0] = 'A';
1054 $sequence[$key][0] = 'C';
1068 $sequence[$key][3] = true;
1138 $sequence = array();
1160 $sequence[] = array('B', $code, $len);
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Sorting/
H A DSortingControl.php97 foreach ($response->getChildren() as $sequence) {
98 if (!$sequence instanceof SequenceType) {
108 foreach ($sequence->getChildren() as $keyItem) {
142 $child = Asn1::sequence(Asn1::octetString($sortKey->getAttribute()));
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsBasicTests.yml40 You can include a sequence within another
41 sequence by giving the sequence an empty
94 A value in a mapping can be a sequence.
159 If you are adding a mapping to a sequence, you
171 The dash in a sequence counts as indentation, so
172 you can add a sequence inside of a mapping without
H A DnumericMappingKeys.yml2 test: A sequence with an unordered array
4 A sequence with an unordered array
H A DYtsNullsAndEmpties.yml4 You can represent the empty sequence
5 with an empty inline 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/symfony/yaml/
H A DInline.php342 …private static function parseSequence(string $sequence, int $flags, int &$i = 0, array $references… argument
345 $len = \strlen($sequence);
350 if (']' === $sequence[$i]) {
353 if (',' === $sequence[$i] || ' ' === $sequence[$i]) {
359 $tag = self::parseTag($sequence, $i, $flags);
360 switch ($sequence[$i]) {
363 $value = self::parseSequence($sequence, $flags, $i, $references);
367 $value = self::parseMapping($sequence, $flags, $i, $references);
370 $isQuoted = \in_array($sequence[$i], ['"', "'"]);
371 … $value = self::parseScalar($sequence, $flags, [',', ']'], $i, null === $tag, $references);
[all …]
/plugin/pureldap/vendor/freedsx/asn1/
H A DREADME.md23 $asn1 = Asn1::sequence(
29 # Encoded $bytes will now contain the BER binary representation of a sequence containing:
51 # Assuming bytes contains the binary BER encoded sequence described in the encoding section
52 # Get a BER encoder instance, call decode on it, and $pdu will now be a sequence object.
64 # Loop through the sequence and check the individual types it contains...
/plugin/sequencediagram/bower_components/js-sequence-diagrams/src/
H A Dsequence-diagram.css1 /** js sequence diagrams
2 * https://bramp.github.io/js-sequence-diagrams/
H A Dgrammar.ebnf1 /** js sequence diagrams
2 * https://bramp.github.io/js-sequence-diagrams/
/plugin/sequencediagram/bower_components/js-sequence-diagrams/dist/
H A Dsequence-diagram.css1 /** js sequence diagrams
2 * https://bramp.github.io/js-sequence-diagrams/
H A Dsequence-diagram-min.css1 /** js sequence diagrams
2 * https://bramp.github.io/js-sequence-diagrams/
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
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/authgooglesheets/vendor/google/apiclient-services/src/Calendar/
H A DEvent.php130 public $sequence; variable in Google\\Service\\Calendar\\Event
593 public function setSequence($sequence) argument
595 $this->sequence = $sequence;
602 return $this->sequence;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/
H A DPwdPolicyResponseControl.php104 $response = Asn1::sequence();
111 $warning = Asn1::context(0, Asn1::sequence(
116 $warning = Asn1::context(0, Asn1::sequence(
/plugin/combo/vendor/symfony/yaml/
H A DInline.php343 * Parses a YAML sequence.
347 private static function parseSequence(string $sequence, int $flags, int &$i = 0, array &$references = []): array argument
350 $len = \strlen($sequence);
355 if (']' === $sequence[$i]) {
358 if (',' === $sequence[$i] || ' ' === $sequence[$i]) {
364 $tag = self::parseTag($sequence, $i, $flags);
365 switch ($sequence[$i]) {
367 // nested sequence
368 $value = self::parseSequence($sequence,
[all...]
/plugin/findologicxmlexport/vendor/hoa/compiler/Bin/
H A DPp.php211 $sequence = $lexer->lexMe($data, $compiler->getTokens());
212 $format = '%' . (strlen((string) count($sequence)) + 1) . 's ' .
226 foreach ($sequence as $i => $token) {
/plugin/davcal/vendor/sabre/vobject/lib/ITip/
H A DBroker.php319 $vevent->SEQUENCE = $itipMessage->sequence;
504 $message->sequence = $eventInfo['sequence'];
522 'SEQUENCE' => $message->sequence,
711 $message->sequence = $eventInfo['sequence'];
731 'SEQUENCE' => $message->sequence,
812 $sequence = null;
858 if (is_null($sequence) && isset($vevent->SEQUENCE)) {
859 $sequence = $vevent->SEQUENCE->getValue();
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Djoin.rst8 of a sequence:
24 the last two items of the sequence:
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.
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DModifyRequest.php136 $changeSeq = Asn1::sequence(Asn1::enumerated($change->getType()));
138 $changeSeq->addChild(Asn1::sequence(
148 return Asn1::application(self::APP_TAG, Asn1::sequence(
/plugin/webdav/vendor/sabre/vobject/lib/ITip/
H A DBroker.php316 $vevent->SEQUENCE = $itipMessage->sequence;
502 $message->sequence = $eventInfo['sequence'];
525 'SEQUENCE' => $message->sequence,
700 $message->sequence = $eventInfo['sequence'];
723 'SEQUENCE' => $message->sequence,
817 $sequence = null;
864 if (is_null($sequence) && isset($vevent->SEQUENCE)) {
865 $sequence = $vevent->SEQUENCE->getValue();
/plugin/davcard/vendor/sabre/vobject/lib/ITip/
H A DBroker.php319 $vevent->SEQUENCE = $itipMessage->sequence;
504 $message->sequence = $eventInfo['sequence'];
522 'SEQUENCE' => $message->sequence,
716 $message->sequence = $eventInfo['sequence'];
736 'SEQUENCE' => $message->sequence,
829 $sequence = null;
875 if (is_null($sequence) && isset($vevent->SEQUENCE)) {
876 $sequence = $vevent->SEQUENCE->getValue();
/plugin/icalevents/vendor/sabre/vobject/lib/ITip/
H A DBroker.php323 $vevent->SEQUENCE = $itipMessage->sequence;
510 $message->sequence = $eventInfo['sequence'];
528 'SEQUENCE' => $message->sequence,
723 $message->sequence = $eventInfo['sequence'];
743 'SEQUENCE' => $message->sequence,
837 $sequence = null;
883 if (is_null($sequence) && isset($vevent->SEQUENCE)) {
884 $sequence = $vevent->SEQUENCE->getValue();
/plugin/webdavclient/vendor/sabre/vobject/lib/ITip/
H A DBroker.php319 $vevent->SEQUENCE = $itipMessage->sequence;
504 $message->sequence = $eventInfo['sequence'];
522 'SEQUENCE' => $message->sequence,
716 $message->sequence = $eventInfo['sequence'];
736 'SEQUENCE' => $message->sequence,
829 $sequence = null;
875 if (is_null($sequence) && isset($vevent->SEQUENCE)) {
876 $sequence = $vevent->SEQUENCE->getValue();

12345678