Home
last modified time | relevance | path

Searched full:advance (Results 1 – 25 of 242) sorted by relevance

12345678910

/plugin/asciidocjs/node_modules/token-stream/
DREADME.md28 assert(stream.advance() === 'a');
37 assert(stream.advance() === 'z');
38 assert(stream.advance() === 'b');
39 assert(stream.advance() === 'c');
40 assert(stream.advance() === 'd');
42 // an error is thrown if you try and advance beyond the end of the stream
54 ### stream.advance()
60 Put a token on the start of the stream (useful if you need to back track after calling advance.
64 Return the item at `index` position from the start of the stream, but don't advance the stream. `s…
Dindex.js22 TokenStream.prototype.advance = function () { method in TokenStream
/plugin/asciidocjs/node_modules/token-stream/test/
Dindex.js22 assert(stream.advance() === 'a');
31 assert(stream.advance() === 'z');
32 assert(stream.advance() === 'b');
33 assert(stream.advance() === 'c');
34 assert(stream.advance() === 'd');
45 stream.advance();
/plugin/asciidocjs/node_modules/pug-parser/
Dindex.js69 advance: function(){ method in Parser
70 return this.tokens.advance();
108 this.advance();
135 return this.advance();
150 return this.advance();
269 this.advance();
285 var tok = this.advance();
295 var tok = this.advance();
309 var tok = this.advance();
322 this.advance();
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
Daurora.js391 Bitstream.prototype.advance = function(bits) {
394 this.stream.advance(pos >> 3);
409 return this.advance(offset - curOffset);
418 return this.stream.advance(1);
459 this.advance(bits);
541 this.advance(bits);
721 BufferList.prototype.advance = function() {
888 Stream.prototype.advance = function(bytes) {
896 this.list.advance();
920 return this.advance(position - this.offset);
[all …]
Dflac.js81 stream.advance(1); // reserved bit
115 stream.advance(2); // == 2
142 stream.advance(8); // skip CRC check
149 stream.advance(16); // skip CRC frame footer
482 data.advance(32 + k - log);
649 stream.advance(16); // skip MD5 hashes
666 stream.advance(18);
679 stream.advance(2);
708 stream.advance(this.size - 4);
729 stream.advance(this.size);
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DZipper.php69 * @param $i How many forward to advance hole
72 public function advance($t, $n) { function in HTMLPurifier_Zipper
130 * $t = $z->advance($t, $i);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
DFleetNamespace.php34 …* $params['wait_for_advance'] = (boolean) Whether to wait for the global checkpoint to advance pas…
37 …* $params['timeout'] = (time) Timeout to wait for global checkpoint to advance (Default =…
/plugin/revealjs/plugin/notes-server/
Dindex.js69 console.log( '3. Advance through your slides and your notes will advance automatically' );
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
DComplex.php35 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
76 // Make sure we advance the cursor one step further.
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DComplex.php35 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
76 // Make sure we advance the cursor one step further.
/plugin/accscounter/lang/en/
Dviewer.txt9 …er Check function, set values of "sfsExFreq" and "sfsExConf" from Configuration Manager in advance.
Dmovedirection.txt7 … destination will be __all overwritten__.\\ Also, I recommend you to backup the files in advance.**
/plugin/webdav/vendor/sabre/xml/lib/
DXmlDeserializable.php30 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
/plugin/icalevents/vendor/sabre/xml/lib/
DXmlDeserializable.php30 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
/plugin/davcal/vendor/sabre/xml/lib/
H A DXmlDeserializable.php30 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/Element/
DMock.php47 * $reader->parseSubTree() will parse the entire sub-tree, and advance to
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/Xml/Request/
DPrincipalSearchPropertySetReport.php38 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
DAclPrincipalPropSetReport.php39 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
/plugin/davcal/vendor/sabre/xml/tests/Sabre/Xml/Element/
H A DMock.php47 * $reader->parseSubTree() will parse the entire sub-tree, and advance to
/plugin/webdav/vendor/sabre/vobject/lib/Parser/XML/Element/
DKeyValue.php33 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/XML/Element/
DKeyValue.php33 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/Xml/Request/
H A DPrincipalSearchPropertySetReport.php38 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/Xml/Filter/
H A DAddressData.php41 * $reader->parseInnerTree() will parse the entire sub-tree, and advance to
/plugin/webdavclient/vendor/sabre/vobject/lib/Recur/
DRRuleIterator.php317 /* Functions that advance the iterator {{{ */
479 // valid occurrences, and we need to advance to the next
510 // No sub-rules, so we just advance by year
568 // If we made it here, it means we need to advance to
752 // Our strategy is to simply go through the byDays, advance the date to

12345678910