| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/ |
| D | DirectLex.php | 57 $cursor = 0; // our location in the text 101 $rcursor = $cursor - (int)$inside_tag; 112 $cursor > 0 && // cursor is further than zero 114 $current_line = 1 + $this->substrCount($html, $nl, 0, $cursor); 118 $position_next_lt = strpos($html, '<', $cursor); 119 $position_next_gt = strpos($html, '>', $cursor); 123 if ($position_next_lt === $cursor) { 125 $cursor++; 135 $cursor, 136 $position_next_lt - $cursor [all …]
|
| /plugin/editsections2/ |
| D | script.js | 114 cursor; 143 cursor = sectionEditForm.parentNode; 146 while (cursor = cursor.nextSibling) { 147 if (!cursor.className) { 151 if (stopClassRegExp.test(cursor.className)) { 156 !(doNotHighlightHeadings && isHeading(cursor)) && 157 !/\b(?:editbutton_section)\b/.test(cursor.className) 159 cursor.className += ' section_highlight'; 262 cursor, 275 cursor = buttonForm.parentNode; [all …]
|
| /plugin/asciidocjs/node_modules/clean-css/lib/utils/ |
| D | split.js | 7 var cursor = 0; 22 while (cursor < len) { 23 if (value[cursor] == openLevel) { 25 } else if (value[cursor] == closeLevel) { 29 if (level === 0 && cursor > 0 && cursor + 1 < len && value[cursor] == separator) { 30 parts.push(value.substring(lastStart, cursor)); 31 lastStart = cursor + 1; 34 cursor++; 37 if (lastStart < cursor + 1) {
|
| /plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/ |
| 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]); 111 } elseif (preg_match('/<(\w+)(?:\:(\w+))?>/A', $str, $match, null, $cursor)) { 117 $cursor += strlen($match[0]); 118 } elseif (preg_match('/\w+/A', $str, $match, null, $cursor)) { 120 $cursor += strlen($match[0]); 121 } elseif (preg_match('/,/A', $str, $match, null, $cursor)) { [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/ |
| D | Lexer.php | 26 protected $cursor; variable in Twig\\Lexer 104 $this->cursor = 0; 117 while ($this->cursor < $this->end) { 161 $this->pushToken(Token::TEXT_TYPE, substr($this->code, $this->cursor)); 162 $this->cursor = $this->end; 169 while ($position[1] < $this->cursor) { 177 $text = $textContent = substr($this->code, $this->cursor, $position[1] - $this->cursor); 191 … if (preg_match($this->regexes['lex_block_raw'], $this->code, $match, null, $this->cursor)) { 195 …} elseif (preg_match($this->regexes['lex_block_line'], $this->code, $match, null, $this->cursor)) { 215 …->brackets) && preg_match($this->regexes['lex_block'], $this->code, $match, null, $this->cursor)) { [all …]
|
| /plugin/ckgedit/ckeditor/plugins/copyformatting/styles/ |
| 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/ckgdoku/ckeditor/plugins/copyformatting/styles/ |
| 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/jplayer/vendor/james-heinrich/getid3/getid3/ |
| 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);
|
| D | extension.cache.mysqli.php | 83 private $cursor; variable in getID3_cached_mysqli 141 if ($this->cursor = $this->mysqli->query($SQLquery)) { 142 list($version) = $this->cursor->fetch_array(); 170 $this->cursor = $this->mysqli->query($SQLquery); 171 if ($this->cursor->num_rows == 0) { 215 $this->cursor = $this->mysqli->query($SQLquery); 216 if ($this->cursor->num_rows > 0) { 218 list($result) = $this->cursor->fetch_array(); 236 $this->cursor = $this->mysqli->query($SQLquery); 260 $this->cursor = $this->mysqli->query($SQLquery);
|
| /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->currentL… 775 …w ParseException(sprintf('Unexpected characters near "%s".', substr($this->currentLine, $cursor))); 1150 private function lexInlineQuotedString(int &$cursor = 0): string argument 1152 $quotation = $this->currentLine[$cursor]; [all …]
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | P2PCollab.js | 69 var cursor; 76 cursor: document.createElement('div'), property 82 cursor = connectedUsers[userId].cursor; 83 cursor.style.position = 'absolute'; 84 cursor.style.zIndex = 5000; 86 cursor.innerHTML = '<img src="' + svg + '" style="width:16px"><div style="color:' + clr + '">' + 88 document.body.appendChild(cursor); 92 cursor = connectedUsers[userId].cursor; 108 cursor.style.left = msgData.x + 'px'; 109 cursor.style.top = msgData.y + 'px';
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastore/ |
| D | GqlQueryParameter.php | 25 public $cursor; variable in Google\\Service\\Datastore\\GqlQueryParameter 32 public function setCursor($cursor) argument 34 $this->cursor = $cursor; 41 return $this->cursor;
|
| D | EntityResult.php | 25 public $cursor; variable in Google\\Service\\Datastore\\EntityResult 40 public function setCursor($cursor) argument 42 $this->cursor = $cursor; 49 return $this->cursor;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/PubsubLite/ |
| D | ComputeTimeCursorResponse.php | 28 public function setCursor(Cursor $cursor) argument 30 $this->cursor = $cursor; 37 return $this->cursor;
|
| D | CommitCursorRequest.php | 32 public function setCursor(Cursor $cursor) argument 34 $this->cursor = $cursor; 41 return $this->cursor;
|
| D | PartitionCursor.php | 32 public function setCursor(Cursor $cursor) argument 34 $this->cursor = $cursor; 41 return $this->cursor;
|
| /plugin/behave/ |
| D | behave.js | 120 caretPos = utils.cursor.get(), 134 current: utils.cursor.getLine(textVal, caretPos), 168 cursor: { 268 pos = utils.cursor.get(), 297 var pos = utils.cursor.get(), 378 var selection = utils.cursor.selection(), 379 pos = utils.cursor.get(), 405 utils.cursor.set(selection.start, selection.start+toIndent.length); 414 utils.cursor.set(selection.start, selection.start+toIndent.length); 425 utils.cursor.set(pos-tab.length); [all …]
|
| /plugin/prettyphoto/css/ |
| D | prettyPhoto.css | 26 …(../images/prettyPhoto/default/sprite_next.png) center right no-repeat; cursor: pointer; } /* Nex… 27 …rl(../images/prettyPhoto/default/sprite_prev.png) center left no-repeat; cursor: pointer; } /* Pre… 28 …ground: url(../images/prettyPhoto/default/sprite.png) 0 -29px no-repeat; cursor: pointer; width: 2… 29 …ground: url(../images/prettyPhoto/default/sprite.png) 0 -56px no-repeat; cursor: pointer; } /* Exp… 30 …ground: url(../images/prettyPhoto/default/sprite.png) 0 -84px no-repeat; cursor: pointer; width: 2… 31 …round: url(../images/prettyPhoto/default/sprite.png) 0 -113px no-repeat; cursor: pointer; } /* Con… 32 …ground: url(../images/prettyPhoto/default/sprite.png) 2px 1px no-repeat; cursor: pointer; } /* Clo… 76 …./images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat; cursor: pointer; } /* Nex… 77 …images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat; cursor: pointer; } /* Pre… 78 …l(../images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat; cursor: pointer; } /* Exp… [all …]
|
| /plugin/bpmnioeditor/vendor/bpmnio-js/ |
| D | diagram-js.css | 144 cursor: not-allowed; 203 .djs-cursor-resize-ns, 206 cursor: ns-resize; 209 .djs-cursor-resize-ew, 212 cursor: ew-resize; 215 .djs-cursor-resize-nwse, 218 cursor: nwse-resize; 221 .djs-cursor-resize-nesw, 224 cursor: nesw-resize; 321 .djs-cursor-grab { [all …]
|
| /plugin/bpmnio/vendor/bpmn-js/dist/assets/ |
| D | diagram-js.css | 163 /* Override move cursor during drop and connect */ 168 cursor: not-allowed !important; 175 cursor: default !important; 231 .djs-cursor-resize-ns, 234 cursor: ns-resize; 237 .djs-cursor-resize-ew, 240 cursor: ew-resize; 243 .djs-cursor-resize-nwse, 246 cursor: nwse-resize; 249 .djs-cursor-resize-nesw, [all …]
|
| /plugin/bpmnio/vendor/dmn-js/dist/assets/ |
| D | diagram-js.css | 163 /* Override move cursor during drop and connect */ 168 cursor: not-allowed !important; 175 cursor: default !important; 231 .djs-cursor-resize-ns, 234 cursor: ns-resize; 237 .djs-cursor-resize-ew, 240 cursor: ew-resize; 243 .djs-cursor-resize-nwse, 246 cursor: nwse-resize; 249 .djs-cursor-resize-nesw, [all …]
|
| /plugin/wysiwyg/fckeditor/editor/skins/default/ |
| D | fck_dialog.css | 115 cursor: pointer; 116 cursor: hand; 122 cursor: default; 132 cursor: pointer; 133 cursor: hand;
|
| /plugin/grensladawritezor/fckeditor/editor/skins/default/ |
| D | fck_dialog.css | 118 cursor: pointer; 119 cursor: hand; 125 cursor: default; 135 cursor: pointer; 136 cursor: hand;
|
| /plugin/projects/ |
| D | codemirror.css | 65 cursor: default; 70 cursor: text; 105 .CodeMirror pre.CodeMirror-cursor { 113 .cm-keymap-fat-cursor pre.CodeMirror-cursor { 121 .cm-keymap-fat-cursor pre.CodeMirror-cursor:not(#nonsense_id) { 124 .CodeMirror pre.CodeMirror-cursor.CodeMirror-overwrite {} 125 .CodeMirror-focused pre.CodeMirror-cursor {
|
| /plugin/multiselect/ |
| D | style.css | 8 cursor :pointer; 18 cursor :pointer; 28 cursor :pointer;
|