/plugin/codemirror/dist/modes/ |
H A D | toml.min.js | 1 …peek()=='"'||a.peek()=="'")){b.stringType=a.peek();a.next();b.inString=true}if(a.sol()&&b.inArray=…
|
H A D | pegjs.min.js | 1 …peek()=='"'||b.peek()=="'")){e.stringType=b.peek();b.next();e.inString=true}if(!e.inString&&!e.inC…
|
H A D | spreadsheet.min.js | 1 …peek()=='"'||a.peek()=="'"){b.stringType=a.peek();a.next();b.stack.unshift("string")}}switch(b.sta…
|
H A D | ebnf.min.js | 1 …peek()=='"'||b.peek()=="'"){f.stringType=b.peek();b.next();f.stack.unshift(d._string)}else if(b.ma…
|
H A D | toml.min.js.map | 1 …peek","next","sol","eol","match","skipTo","skipToEnd","eatSpace","eatWhile","c","defineMIME"],"map…
|
H A D | sas.min.js | 1 …peek()==="/"){e.next();f.continueComment=false}else if(e.skipTo("*")){e.skipTo("*");e.next();if(e.…
|
H A D | sass.min.js | 1 …peek()||a.match(/\s+$/,false)}function p(a,b){var c=a.peek();if(c===")"){a.next();b.tokenizer=v;re…
|
H A D | spreadsheet.min.js.map | 1 …peek","next","unshift","eol","shift","match","indexOf","eatSpace","defineMIME"],"mappings":"CAGA,S…
|
H A D | pug.min.js | 1 …peek()===":"){b.javaScriptLine=false;b.javaScriptLineExcludesColon=false;return}var c=h.token(a,b.…
|
H A D | pegjs.min.js.map | 1 …peek","next","eol","skipToEnd","text","current","i","length","indexOf","eatSpace"],"mappings":"CAG…
|
H A D | scheme.min.js | 1 …peek()=="("||h.peek()=="["){k.sExprComment=0}else{h.eatWhile(/[^\s\(\)\[\]]/);n=b;break}default:va…
|
H A D | q.min.js | 1 …peek()))return a.skipToEnd(),/^\\\s*$/.test(a.current())?(b.tokenize=j)(a):b.tokenize=g,"comment";…
|
H A D | dylan.min.js | 1 …peek();if(d=="'"||d=='"'){a.next();return m(a,b,p(d,"string"))}else if(d=="/"){a.next();if(a.eat("…
|
H A D | tiddlywiki.min.js | 1 …peek();m.block=false;if(n&&/[<\/\*{}\-]/.test(p)){if(b.match(l)){m.block=true;return o(b,m,s)}if(b…
|
H A D | ebnf.min.js.map | 1 …peek","next","unshift","match","eol","shift","text","current","i","skipToEnd","indexOf","eatSpace"…
|
H A D | django.min.js | 1 …peek()!="."){return"null"}if(a.match(/\.\W+/)){return"error"}else if(a.eat(".")){c.waitProperty=tr…
|
H A D | shell.min.js | 1 …peek())){return"number"}}a.eatWhile(/[\w-]/);var f=a.current();if(a.peek()==="="&&/\w+/.test(f))re…
|
H A D | cobol.min.js | 1 …peek())){b.eat(n.sign);a=b.next()}if(n.digit.test(a)){b.eat(a);b.eatWhile(n.digit);if("."==b.peek(…
|
H A D | haml.min.js | 1 …peek();if(d==a&&c.rubyState.tokenize.length==1){b.next();c.tokenize=g;return"closeAttributeTag"}el…
|
H A D | crystal.min.js | 1 …peek()=="#"){a.skipToEnd();return"comment"}var l;if(a.match(h)){a.eat(/[?!]/);l=a.current();if(a.e…
|
H A D | solr.min.js | 1 …=b;while((b=e.peek())&&b.match(a)!=null){g+=e.next()}f.tokenize=h;if(c.test(g))return"operator";el…
|
H A D | jsx.min.js | 1 …peek()=="{"){f.skipAttribute(j.state);var k=h(j.state),l=j.state.context;if(l&&c.match(/^[^>]*>\s*…
|
/plugin/findologicxmlexport/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/ |
H A D | AbstractLexer.php | 64 private $peek = 0; variable in Doctrine\\Common\\Lexer\\AbstractLexer 108 $this->peek = 0; 119 $this->peek = 0; 177 $this->peek = 0; 217 public function peek() function in Doctrine\\Common\\Lexer\\AbstractLexer 219 if (isset($this->tokens[$this->position + $this->peek])) { 220 return $this->tokens[$this->position + $this->peek++]; 233 $peek = $this->peek(); 234 $this->peek = 0; 235 return $peek;
|
/plugin/commonmark/vendor/league/commonmark/src/Util/ |
H A D | LinkParserHelper.php | 108 if ($c === '\\' && ($peek = $cursor->peek()) !== null && RegexHelper::isEscapable($peek)) {
|
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/ |
H A D | DocParser.php | 655 if ((null === $peek = $this->lexer->glimpse()) 656 …|| (DocLexer::T_NAMESPACE_SEPARATOR !== $peek['type'] && !in_array($peek['type'], self::$classIden… 657 || $peek['position'] !== $this->lexer->lookahead['position'] + 1) { 1021 $peek = $this->lexer->glimpse(); 1023 if (DocLexer::T_EQUALS === $peek['type']) { 1154 $peek = $this->lexer->glimpse(); 1156 if (DocLexer::T_EQUALS === $peek['type'] 1157 || DocLexer::T_COLON === $peek['type']) {
|