Home
last modified time | relevance | path

Searched refs:sequence (Results 1 – 25 of 200) sorted by relevance

12345678

/plugin/sequencediagram/bower_components/js-sequence-diagrams/
H A DMakefile7 js: dist/sequence-diagram-min.js dist/sequence-diagram-raphael-min.js dist/sequence-diagram-snap-mi…
8 css: dist/sequence-diagram-min.css font
45 test: dependencies dist/sequence-diagram-min.js
49 -c dist/sequence-diagram.js \
55 -c dist/sequence-diagram.js \
61 -c dist/sequence-diagram-min.js \
67 -c dist/sequence-diagram-min.js \
93 dist/sequence-diagram-raphael.js: src/main.js build/diagram-grammar.js src/jquery-plugin.js src/seq…
97 dist/sequence-diagram-snap.js: src/main.js build/diagram-grammar.js src/jquery-plugin.js src/sequen…
100 dist/sequence-diagram.css: src/sequence-diagram.css
[all …]
H A DREADME.md1sequence-diagrams.svg)](https://libraries.io/bower/js-sequence-diagrams) [![Build Status](https://…
3 **Generates UML sequence diagrams from simple text**
4 <https://bramp.github.io/js-sequence-diagrams/>
19 ![Sample generated UML diagram](https://bramp.github.io/js-sequence-diagrams/images/sample.svg)
31 Run `bower install bramp/js-sequence-diagrams` and include the scripts below:
37 <script src="{{ bower directory }}/js-sequence-diagrams/dist/sequence-diagram-min.js" />
43 <link href="{{ bower directory }}/js-sequence-diagrams/dist/sequence-diagram-min.css" rel="styleshe…
72 For full examples check out [the demo site](https://bramp.github.io/js-sequence-diagrams/).
92 * `sequence`: Applies to main SVG tag.
183 * Dozens of other issues on https://github.com/bramp/js-sequence-diagrams/issues
[all …]
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Parser/
H A DSequence.php25 * Parse the token stream for a simple selector sequence,
32 $sequence = new Ast\Selector\Sequence();
47 $sequence->simples[] = $selector;
52 return $sequence;
54 $sequence->simples[] = $this->delegate(PseudoClass::CLASS);
57 $sequence->simples[] = $this->createPseudoElement($token);
62 $sequence->simples[] = $this->delegate(Attribute::CLASS);
71 $sequence->combinator = $this->createCombinator(
74 return $sequence;
93 return $sequence;
117 createCombinator(Scanner\\Token $token, Ast\\Selector\\Sequence $sequence) global() argument
[all...]
/plugin/gtime/gtlib/asn1/tsp/
H A DTSPTSTInfo.php215 $sequence = new ASN1Sequence();
217 $sequence->add(new ASN1Integer((int) $this->version));
218 $sequence->add(new ASN1ObjectId($this->policy));
219 $sequence->add($this->messageImprint);
220 $sequence->add(new ASN1Integer($this->serialNumber));
224 $sequence->add($this->accuracy);
228 $sequence->add(new ASN1Boolean($this->ordering));
232 $sequence->add(new ASN1Integer($this->nonce));
243 $sequence->add($tag);
262 $sequence->add($tag);
[all …]
H A DTSPTimeStampReq.php67 $sequence = new ASN1Sequence();
69 $sequence->add(new ASN1Integer($this->version));
70 $sequence->add($this->messageImprint);
72 return $sequence->encodeDER();
H A DTSPMessageImprint.php93 $sequence = new ASN1Sequence();
95 $sequence->add($this->hashAlgorithm);
96 $sequence->add(new ASN1OctetString($this->hashedMessage));
98 return $sequence->encodeDER();
H A DTSPAccuracy.php161 $sequence = new ASN1Sequence();
164 $sequence->add(new ASN1Integer($this->seconds));
175 $sequence->add($tag);
186 $sequence->add($tag);
189 return $sequence->encodeDER();
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Selector/
H A DCombinator.php8 public $sequence; variable in PhpCss\\Ast\\Selector\\Combinator
10 public function __construct(Sequence $sequence = NULL) { argument
11 $this->sequence = $sequence;
17 $this->sequence->accept($visitor);
H A DGroup.php43 foreach ($sequences as $sequence) {
44 $this->offsetSet(NULL, $sequence);
49 * Check if a sequence at the given position is available in the list.
60 * Return the sequence at the given position.
71 * Set/Add and sequence at the given position or top the end
82 '$sequence is not an instance of %s but %s.',
97 * Remove the sequence at the given position
108 * Return the sequence list count.
136 * @var Sequence $sequence
138 foreach ($this as $sequence) {
[all...]
/plugin/gtime/gtlib/asn1/gt/
H A DGTTimeSignature.php114 $sequence = $tag->getObjectAs(ASN1_TAG_SEQUENCE);
117 $pkSignature->decode($sequence);
153 $sequence = new ASN1Sequence();
155 $sequence->add(new ASN1OctetString($this->location));
156 $sequence->add(new ASN1OctetString($this->history));
157 $sequence->add($this->publishedData);
168 $sequence->add($tag);
187 $sequence->add($tag);
190 return $sequence->encodeDER();
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 DGTVerificationRequest.php105 $sequence = new ASN1Sequence();
106 $sequence->add(new ASN1Integer($this->version));
107 $sequence->add($this->content);
108 $sequence->add(new ASN1OctetString($this->data));
110 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();
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();
/plugin/gtime/gtlib/asn1/cms/
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();
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 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 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 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();
/plugin/sequencediagram/
H A Dstyle.css1 /** js sequence diagrams
2 * https://bramp.github.io/js-sequence-diagrams/
8 src: url('bower_components/js-sequence-diagrams/dist/danielbd.woff2') format('woff2'),
9 url('bower_components/js-sequence-diagrams/dist/danielbd.woff') format('woff');
/plugin/gtime/gtlib/asn1/x509/
H A DX509AlgorithmIdentifier.php90 $sequence = new ASN1Sequence();
91 $sequence->add(new ASN1ObjectId($this->algorithm));
92 $sequence->add(new ASN1Null());
94 return $sequence->encodeDER();
H A DX509Extension.php121 $sequence = new ASN1Sequence();
123 $sequence->add(new ASN1ObjectId($this->id));
126 $sequence->add(new ASN1Boolean(true));
129 $sequence->add(new ASN1OctetString($this->value));
131 return $sequence->encodeDER();
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
H A DCreativeAssignment.php52 public $sequence; variable in Google\\Service\\Dfareporting\\CreativeAssignment
195 public function setSequence($sequence) argument
197 $this->sequence = $sequence;
204 return $this->sequence;
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
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

12345678