Home
last modified time | relevance | path

Searched refs:mark (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/plugin/prosemirror/parser/
DTextNode.php37 foreach ($this->marks as $mark) {
38 if ($mark->isOpeningMark()) {
41 $mark->setPrevious($previousOpeningMark);
42 $previousOpeningMark->setNext($mark);
44 $openingMarks[] = $mark;
49 $mark = $openingMarks[0]->getFirst();
50 $doc .= $mark->getOpeningSyntax();
51 while ($mark = $mark->getNext()) {
52 $doc .= $mark->getOpeningSyntax();
55 foreach ($openingMarks as $mark) {
[all …]
DLinkNode.php119 foreach (array_keys($renderer->getCurrentMarks()) as $mark) {
120 $linkNode->addMark(new Mark($mark));
DImageNode.php90 foreach (array_keys($renderer->getCurrentMarks()) as $mark) {
91 $node->addMark(new Mark($mark));
/plugin/googlemaps3/
Dsyntax.php228 foreach ($markers as $mark => $marker) {
230 if ($value) $markers[$mark][$option] = ltrim($markers[$mark][$option], $dlm);
231 if (!$value) $markers[$mark][$option] = $this->defaultMarkerOptions[$option];
234 foreach ($markers as $mark => $marker) {
235 $markers[$mark]['markerID'] = ++$this->markerID;
236 if ($markers[$mark]['lat'] == 'address') {
237 $markers[$mark]['lat'] = "'".$markers[$mark]['lat']."'";
238 $markers[$mark]['lng'] = "'".$markers[$mark]['lng']."'";
240 $markers[$mark]['lat'] = is_numeric($marker['lat']) ? floatval($marker['lat']) : 0;
241 $markers[$mark]['lng'] = is_numeric($marker['lng']) ? floatval($marker['lng']) : 0;
[all …]
/plugin/fckg/action/entities/utils/
Dentities.txt4 quotation mark
30 inverted exclamation mark
80 angle quotation mark (left)
159 angle quotation mark (right)
179 inverted question mark
547 left-to-right mark
551 right-to-left mark
566 left single quotation mark
571 right single quotation mark
576 single low-9 quotation mark
[all …]
/plugin/ckgdoku/action/entities/utils/
Dentities.txt4 quotation mark
30 inverted exclamation mark
80 angle quotation mark (left)
159 angle quotation mark (right)
179 inverted question mark
547 left-to-right mark
551 right-to-left mark
566 left single quotation mark
571 right single quotation mark
576 single low-9 quotation mark
[all …]
/plugin/ckgedit/action/entities/utils/
Dentities.txt4 quotation mark
30 inverted exclamation mark
80 angle quotation mark (left)
159 angle quotation mark (right)
179 inverted question mark
547 left-to-right mark
551 right-to-left mark
566 left single quotation mark
571 right single quotation mark
576 single low-9 quotation mark
[all …]
/plugin/data-graph/
Dsyntax.php119 $mark = "**";
121 $mark = "";
123 print($mark . "[[?group=". $g . "&aggregate=". $agg ."|". $g . "]]". $mark);
138 $mark = "**";
140 $mark = "";
142 print($mark."[[?group=". $groupBy . "&aggregate=". $g ."|". $g . "]]".$mark);
/plugin/datagraph/
Dsyntax.php119 $mark = "**";
121 $mark = "";
123 print($mark . "[[?group=". $g . "&aggregate=". $agg ."|". $g . "]]". $mark);
138 $mark = "**";
140 $mark = "";
142 print($mark."[[?group=". $groupBy . "&aggregate=". $g ."|". $g . "]]".$mark);
/plugin/tooltip/syntax/
Dshort.php87 $data['mark']= $match;
102 $mark= $data['mark'];
112 $renderer->doc.= $renderer->_xmlEntities($mark);
133 $renderer->doc.= $mark. ' ';
/plugin/adhocwrap/
H A Dall.less128 mark.yellow { background-color: #FFF176; color: #111; }
129 mark.orange { background-color: #FFB74D; color: #111; }
130 mark.brown { background-color: #BCAAA4; color: #111; }
131 mark.red { background-color: #E57373; color: #111; }
132 mark.purple { background-color: #CE93D8; color: #111; }
133 mark.indigo { background-color: #9FA8DA; color: #111; }
134 mark.blue { background-color: #64B5F6; color: #111; }
135 mark.cyan { background-color: #4DD0E1; color: #111; }
136 mark.teal { background-color: #4DB6AC; color: #111; }
137 mark.green { background-color: #81C784; color: #111; }
[all …]
/plugin/diagramsnet/lib/js/orgchart/
DmxOrgChartLayout.js460 edge.mark = 1 << ix; //TODO Support up to 31 segments. In this a limit?
480 fp.mark = edge.mark;
485 up.mark |= fp.mark;
494 tp.mark = edge.mark;
499 up.mark |= tp.mark;
516 ip.mark = edge.mark | e2.mark;
521 up.mark |= ip.mark;
532 ip.mark = edge.mark | e2.mark;
537 up.mark |= ip.mark;
623 if (p.mark & lp.mark)
[all …]
/plugin/deflist/
Dsyntax.php406 list($dd, $mark) = each($aData[1][$i]);
408 if (TRUE === $mark) {
421 } else if (0 == $mark) {
426 } else if (0 > $mark) {
432 } else if (0 < $mark) {
/plugin/s5reloaded/ui/effects_support/
Dunittest.js26 if(this.mark) Element.remove(this.mark);
27 this.mark = document.createElement('div');
28 this.mark.appendChild(document.createTextNode(" "));
29 document.body.appendChild(this.mark);
30 this.mark.style.position = 'absolute';
31 this.mark.style.top = options.pointerY + "px";
32 this.mark.style.left = options.pointerX + "px";
33 this.mark.style.width = "5px";
34 this.mark.style.height = "5px;";
35 this.mark.style.borderTop = "1px solid red;";
[all …]
/plugin/serverinfos/serverinfos/lib/
DInfosServer.class.php251 if ($os == "Darwin") {$mark = $exp[0];}
252 if ($os == "FreeBSD") {$mark = $exp[0];}
259 $mark = $int2[0];
264 $mark = $int[1];
267 if ($os == "WINNT") {$mark = $exp[0];}
269 return $mark;
/plugin/prosemirror/schema/
DNode.php53 * @param Mark $mark
55 public function addMark(Mark $mark) argument
57 $this->marks[] = $mark;
/plugin/criticmarkup/
Dstyle.css18 mark { selector
40 mark:hover {
/plugin/dev/www/
Dawesomplete.css92 .awesomplete mark {
96 .awesomplete li:hover mark {
100 .awesomplete li[aria-selected="true"] mark {
/plugin/asciidocjs/node_modules/glob/
Dcommon.js5 exports.mark = mark
Dsync.js175 if (remain.length === 1 && !this.mark && !this.stat) {
218 if (this.mark)
299 if (!this.mark && !this.stat) {
/plugin/panoview/
H A Dscript.js110 this.mark = { 'x': 0, 'y': 0 }; property in PanoJS
586 this.x + (coords.x - this.mark.x),
587 this.y + (coords.y - this.mark.y)
666 this.positionTiles({ 'x': (coords.x - this.mark.x), 'y': (coords.y - this.mark.y) });
790 this.mark = coords;
796 'x': (coords.x - this.mark.x),
797 'y': (coords.y - this.mark.y)
802 this.mark = { 'x': 0, 'y': 0 }; property
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DIntStream.php134 public function mark() : int; function
/plugin/highlight2wiki/
Dscript.js49 instance.mark(lines[j], {
69 instance2.mark(lines[j], {
89 instance2.mark(lines[j], {
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
DDockerfile8 …on="Simple project for testing Guzzle scripts" --author="Márk Sági-Kazár <mark.sagikazar@gmail.com…
/plugin/advanced/lang/en/config/
Dacronyms.txt3 DokuWiki can mark abbreviations and acronyms (terminology) automatically. You can hover your mouse …

12345678910>>...13