/plugin/commonmark/vendor/league/commonmark/src/Util/ |
H A D | LinkParserHelper.php | 31 public static function parseLinkDestination(Cursor $cursor): ?string 33 if ($res = $cursor->match(RegexHelper::REGEX_LINK_DESTINATION_BRACES)) { 40 if ($cursor->getCurrentCharacter() === '<') { 44 $destination = self::manuallyParseLinkDestination($cursor); 54 public static function parseLinkLabel(Cursor $cursor): int 56 $match = $cursor->match('/^\[(?:[^\\\\\[\]]|\\\\.){0,1000}\]/'); 70 public static function parsePartialLinkLabel(Cursor $cursor): ?string 72 return $cursor->match('/^(?:[^\\\\\[\]]+|\\\\.?)*/'); 80 public static function parseLinkTitle(Cursor $cursor): ?string 82 if ($title = $cursor 28 parseLinkDestination(Cursor $cursor) global() argument 51 parseLinkLabel(Cursor $cursor) global() argument 74 parseLinkTitle(Cursor $cursor) global() argument 84 manuallyParseLinkDestination(Cursor $cursor) global() argument [all...] |
/plugin/commonmark/vendor/league/commonmark/src/Reference/ |
H A D | ReferenceParser.php | 97 $cursor = new Cursor($line); 98 while (! $cursor->isAtEnd()) { 106 $result = $this->parseStartDefinition($cursor); 109 $result = $this->parseLabel($cursor); 112 $result = $this->parseDestination($cursor); 115 $result = $this->parseStartTitle($cursor); 118 $result = $this->parseTitle($cursor); 133 private function parseStartDefinition(Cursor $cursor): bool 135 $cursor->advanceToNextNonSpaceOrTab(); 136 if ($cursor 39 parse(Cursor $cursor) global() argument [all...] |
/plugin/commonmark/vendor/league/commonmark/src/Inline/Parser/ |
H A D | CloseBracketParser.php |
|
H A D | BacktickParser.php |
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/ |
H A D | TableParser.php | 83 public function tryContinue(Cursor $cursor, BlockContinueParserInterface $activeBlockParser): ?BlockContinue 85 if (\strpos($cursor->getLine(), '|') === false) { 89 return BlockContinue::at($cursor); 159 $cursor = new Cursor(\trim($line)); 161 if ($cursor->getCurrentCharacter() === '|') { 162 $cursor->advanceBy(1); 168 while (! $cursor->isAtEnd()) { 169 switch ($c = $cursor->getCurrentCharacter()) { 171 if ($cursor->peek() === '|') { 176 $cursor 34 parse(ContextInterface $context, Cursor $cursor) global() argument 145 split(Cursor $cursor) global() argument 190 parseColumns(Cursor $cursor) global() argument [all...] |
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/ |
H A D | Paragraph.php |
|
H A D | BlockQuote.php |
|
H A D | ListItem.php |
|
H A D | FencedCode.php |
|
H A D | IndentedCode.php |
|
/plugin/editsections2/ |
H A D | script.js | 114 cursor; 143 cursor = sectionEditForm.parentNode; 146 while (cursor = cursor.nextSibling) { 147 if (!cursor.className) { 151 if (stopClassRegExp.test(cursor.className)) { 262 cursor, 275 cursor = buttonForm.parentNode; 277 if (!cursor.tagName || cursor.tagName.toLowerCase() !== 'div') { 282 while (cursor = cursor.nextSibling) { 284 !cursor.tagName || [all …]
|
/plugin/commonmark/vendor/league/commonmark/src/ |
H A D | DocParser.php |
|
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/ |
H A D | SimpleTokenParser.php | 99 static $cursor; 102 $cursor = 0; 108 while ($cursor < strlen($str)) { 109 if (preg_match('/\s+/A', $str, $match, null, $cursor)) { 110 $cursor += strlen($match[0]); 117 $cursor += strlen($match[0]); 120 $cursor += strlen($match[0]); 121 } elseif (preg_match('/,/A', $str, $match, null, $cursor)) { 123 $cursor += strlen($match[0]); 125 $cursor += strlen($match[0]); [all …]
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Util/ |
H A D | AttributesHelper.php | 32 public static function parseAttributes(Cursor $cursor): array argument 34 $state = $cursor->saveState(); 35 $cursor->advanceToNextNonSpaceOrNewline(); 38 if ($cursor->getCharacter() !== '{') { 39 $cursor->restoreState($state); 49 $attributeExpression = $cursor->match(self::ATTRIBUTE_LIST); 51 $cursor->restoreState($state);
|
/plugin/commonmark/vendor/league/commonmark/src/Block/Parser/ |
H A D | ListParser.php |
|
H A D | HtmlBlockParser.php |
|
H A D | SetExtHeadingParser.php |
|
H A D | ATXHeadingParser.php |
|
H A D | BlockQuoteParser.php |
|
/plugin/findologicxmlexport/vendor/twig/twig/src/ |
H A D | Lexer.php | 26 protected $cursor; variable in Twig\\Lexer 104 $this->cursor = 0; 117 while ($this->cursor < $this->end) { 162 $this->cursor = $this->end; 169 while ($position[1] < $this->cursor) { 177 $text = $textContent = substr($this->code, $this->cursor, $position[1] - $this->cursor); 284 ++$this->cursor; 313 $text = substr($this->code, $this->cursor, $match[0][1] - $this->cursor); 329 … $this->moveCursor(substr($this->code, $this->cursor, $match[0][1] - $this->cursor).$match[0][0]); 349 ++$this->cursor; [all …]
|
/plugin/ckgdoku/ckeditor/plugins/copyformatting/styles/ |
H A D | copyformatting.css | 10 /* There is no cursor in CUR format for IE/Edge as that browser 11 does not support custom cursor in [contenteditable] area. 13 …https://connect.microsoft.com/IE/feedback/details/1070215/cant-change-cursor-in-contenteditable-us… 17 cursor: url(../cursors/cursor-disabled.svg) 12 1, auto; 22 cursor: default; 25 /* Added `!important` rule as a fix for overriding the cursor by the Table Resize plugin. 26 …used because the Table Resize plugin creates a `<div>` which changes the cursor using inlined styl… 34 cursor: url(../cursors/cursor.svg) 12 1, auto !important;
|
/plugin/ckgedit/ckeditor/plugins/copyformatting/styles/ |
H A D | copyformatting.css | 10 /* There is no cursor in CUR format for IE/Edge as that browser 11 does not support custom cursor in [contenteditable] area. 13 …https://connect.microsoft.com/IE/feedback/details/1070215/cant-change-cursor-in-contenteditable-us… 17 cursor: url(../cursors/cursor-disabled.svg) 12 1, auto; 22 cursor: default; 25 /* Added `!important` rule as a fix for overriding the cursor by the Table Resize plugin. 26 …used because the Table Resize plugin creates a `<div>` which changes the cursor using inlined styl… 34 cursor: url(../cursors/cursor.svg) 12 1, auto !important;
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Parser/ |
H A D | FootnoteParser.php | 43 public function tryContinue(Cursor $cursor, BlockContinueParserInterface $activeBlockParser): ?BlockContinue 45 if ($cursor->isBlank()) { 46 return BlockContinue::at($cursor); 49 if ($cursor->isIndented()) { 50 $this->indentation ??= $cursor->getIndent(); 51 $cursor->advanceBy($this->indentation, true); 53 return BlockContinue::at($cursor); 26 parse(ContextInterface $context, Cursor $cursor) global() argument
|
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | extension.cache.mysql.php | 79 private $cursor; variable in getID3_cached_mysql 136 if ($this->cursor = mysql_query($SQLquery, $this->connection)) { 137 list($version) = mysql_fetch_array($this->cursor); 153 …$this->cursor = mysql_query('DELETE FROM `'.mysql_real_escape_string($this->table).'`', $this->con… 154 …$this->cursor = mysql_query('INSERT INTO `'.mysql_real_escape_string($this->table).'` VALUES (\''.… 184 $this->cursor = mysql_query($SQLquery, $this->connection); 185 if (mysql_num_rows($this->cursor) > 0) { 187 list($result) = mysql_fetch_array($this->cursor); 203 $this->cursor = mysql_query($SQLquery, $this->connection); 224 $this->cursor = mysql_query($SQLquery, $this->connection);
|
/plugin/combo/vendor/symfony/yaml/ |
H A D | Parser.php | 759 $cursor = \strlen(rtrim($this->currentLine)) - \strlen(rtrim($value)); 761 return Inline::parse($this->lexInlineMapping($cursor), $flags, $this->refs); 763 $cursor = \strlen(rtrim($this->currentLine)) - \strlen(rtrim($value)); 765 return Inline::parse($this->lexInlineSequence($cursor), $flags, $this->refs); 771 $cursor = \strlen(rtrim($this->currentLine)) - \strlen(rtrim($value)); 772 $parsedValue = Inline::parse($this->lexInlineQuotedString($cursor), $flags, $this->refs); 774 if (isset($this->currentLine[$cursor]) && preg_replace('/\s*(#.*)?$/A', '', substr($this->currentLine, $cursor))) { 775 throw new ParseException(sprintf('Unexpected characters near "%s".', substr($this->currentLine, $cursor))); 1150 private function lexInlineQuotedString(int &$cursor argument 1214 lexUnquotedString(int& $cursor) global() argument 1226 lexInlineMapping(int& $cursor = 0) global() argument 1231 lexInlineSequence(int& $cursor = 0) global() argument 1236 lexInlineStructure(int& $cursor, string $closingTag) global() argument 1285 consumeWhitespaces(int& $cursor) global() argument [all...] |