Home
last modified time | relevance | path

Searched refs:cursor (Results 26 – 50 of 652) sorted by relevance

12345678910>>...27

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastore/
H A DGqlQueryParameter.php25 public $cursor; variable in Google\\Service\\Datastore\\GqlQueryParameter
32 public function setCursor($cursor) argument
34 $this->cursor = $cursor;
41 return $this->cursor;
H A DEntityResult.php25 public $cursor; variable in Google\\Service\\Datastore\\EntityResult
40 public function setCursor($cursor) argument
42 $this->cursor = $cursor;
49 return $this->cursor;
/plugin/diagramsnet/lib/js/diagramly/
H A DP2PCollab.js69 var cursor;
76 cursor: document.createElement('div'), property in P2PCollab.processMsg.connectedUsers
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/commonmark/vendor/league/commonmark/src/Extension/Mention/
H A DMentionParser.php55 $cursor = $inlineContext->getCursor();
58 $previousChar = $cursor->peek(-1);
60 // peek() doesn't modify the cursor, so no need to restore state first
72 $cursor->advanceBy($inlineContext->getFullMatchLength());
/plugin/commonmark/vendor/league/commonmark/src/Extension/Autolink/
H A DInlineMentionParser.php
/plugin/commonmark/vendor/league/commonmark/src/Block/Parser/
H A DThematicBreakParser.php
H A DFencedCodeParser.php
H A DIndentedCodeParser.php
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dextension.cache.mysqli.php83 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/commonmark/vendor/league/commonmark/src/Extension/Attributes/Parser/
H A DAttributesBlockParser.php
H A DAttributesInlineParser.php33 $cursor = $inlineContext->getCursor();
34 $char = (string) $cursor->peek(-1);
36 $attributes = AttributesHelper::parseAttributes($cursor);
46 $cursor->advanceToNextNonSpaceOrNewline();
/plugin/commonmark/vendor/league/commonmark/src/Inline/Parser/
H A DEscapableParser.php
H A DBangParser.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/TaskList/
H A DTaskListItemMarkerParser.php38 $cursor = $inlineContext->getCursor();
39 $oldState = $cursor->saveState();
41 $cursor->advanceBy(3);
43 if ($cursor->getNextNonSpaceCharacter() === null) {
44 $cursor->restoreState($oldState);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PubsubLite/
H A DComputeTimeCursorResponse.php28 public function setCursor(Cursor $cursor) argument
30 $this->cursor = $cursor;
37 return $this->cursor;
H A DPartitionCursor.php32 public function setCursor(Cursor $cursor) argument
34 $this->cursor = $cursor;
41 return $this->cursor;
H A DCommitCursorRequest.php32 public function setCursor(Cursor $cursor) argument
34 $this->cursor = $cursor;
41 return $this->cursor;
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Parser/
H A DFootnoteRefParser.php
H A DAnonymousFootnoteRefParser.php
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DHtmlBlock.php
/plugin/commonmark/vendor/league/commonmark/src/
H A DInlineParserEngine.php
/plugin/behave/
H A Dbehave.js120 caretPos = utils.cursor.get(),
168 cursor: { variable
268 pos = utils.cursor.get(),
297 var pos = utils.cursor.get(),
489 var pos = utils.cursor.get(),
508 utils.cursor.set(pos - 1);
513 utils.cursor.set(pos);
525 var pos = utils.cursor.get(),
532 utils.cursor.set(pos + 1);
536 var pos = utils.cursor.get(),
[all …]
/plugin/prettyphoto/css/
H A DprettyPhoto.css92 div.light_rounded .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
94 div.light_rounded .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
131 div.dark_rounded .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
133 div.dark_rounded .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
170 div.dark_square .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
172 div.dark_square .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
202 div.light_square .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
204 div.light_square .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
235 div.facebook .pp_arrow_previous.disabled { background-position: 0 -96px; cursor: default; }
237 div.facebook .pp_arrow_next.disabled { background-position: -32px -96px; cursor: default; }
[all …]
/plugin/commonmark/vendor/league/commonmark/src/Extension/SmartPunct/
H A DPunctuationParser.php
H A DQuoteParser.php41 $cursor = $inlineContext->getCursor();
45 $charBefore = $cursor->peek(-1);
50 $cursor->advance();
52 $charAfter = $cursor->getCurrentCharacter();

12345678910>>...27