Home
last modified time | relevance | path

Searched refs:text (Results 226 – 250 of 3022) sorted by relevance

12345678910>>...121

/plugin/authgooglesheets/vendor/google/apiclient-services/src/AdSenseHost/
H A DAdStyleColors.php33 public $text; variable in Google\\Service\\AdSenseHost\\AdStyleColors
74 public function setText($text) argument
76 $this->text = $text;
83 return $this->text;
/plugin/database2/
H A Dstyle.css20 text-align: center;
48 text-align: center;
99 text-align: right;
108 text-align: right;
124 text-align: right;
129 text-align: center;
135 text-align: right;
163 text-decoration: underline;
168 text-align: right;
180 text-align: center;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DTeamCity.php382 private static function escapeValue($text) argument
384 $text = str_replace('|', '||', $text);
385 $text = str_replace("'", "|'", $text);
386 $text = str_replace("\n", '|n', $text);
387 $text = str_replace("\r", '|r', $text);
388 $text = str_replace(']', '|]', $text);
389 $text = str_replace('[', '|[', $text);
391 return $text;
/plugin/nroff/
H A Drenderer.php127 $this->toc[] = $text;
176 function cdata($text) { argument
349 function php($text) { argument
351 eval($text);
357 $this->php($text);
365 function html($text) { argument
366 $this->doc .= $text;
370 $this->html($text);
377 function file($text) { argument
403 $text = preg_replace('/^\s*?\n/','',$text);
[all …]
/plugin/refnotes/
H A Dnote.php97 public function setText($text) { argument
116 protected $text; variable in refnotes_note
146 $this->text = '';
192 public function setText($text) { argument
193 if ($this->text == '' || !$this->inline) {
194 $this->text = $text;
202 return $this->text;
227 return !$this->processed && !empty($this->reference) && $this->text != '';
318 return !$this->processed && !empty($this->reference) && ($this->text !
[all...]
H A Dbibtex.php68 public function parse($text) { argument
72 $this->lexer->parse(str_replace("\r\n", "\n", $text));
84 public function parse($text) { argument
87 while (is_array($parsed = $this->reduce($text))) {
105 return $this->invokeHandler($text, DOKU_LEXER_UNMATCHED, 0);
111 protected function invokeHandler($text, $state, $pos) { argument
112 if ($text == "" && $state == DOKU_LEXER_UNMATCHED) {
119 return $this->handler->$handler($text, $state, $pos);
609 $text = $token->text;
624 addToken($type, $text) global() argument
633 public $text; global() variable in refnotes_bibtex_field_token
638 __construct($type, $text) global() argument
[all...]
/plugin/sketchcanvas/
H A DREADME.md16 * Has a text format that is easily examined and edited by human.
17 * Can also be saved as a separate text file.
18 * Can be easily compared with text-wise diff.
62 - type: text
64 text: Normal Text
65 - type: text
68 text: Bold Text
69 - type: text
72 text: Extra Bold Text
73 - type: text
[all...]
/plugin/hidden/
H A Dsyntax.php46 $return = array('text' => $this->getLang('switch.default'), 'type' => 'switch');
49 $return['text'] = $match;
51 $return['text'] = htmlspecialchars($return['text']);
122 $text = trim($match);
123 if($text != ''){
124 $return['onHidden'] = $text;
125 $return['onVisible'] = $text;
130 } else { //if one string is specified but not the other, take the defaul text
135 //If we don't have an exportPdf text, tak
[all...]
/plugin/mediasyntax/test/
H A Dmediasyntax-test.txt6 preformatted text
7 preformatted text starting one line later
10 a codeblock, as opposed to a preblock, can contain <font color=red>red</font> text
12 preformatted text in a "pre" tag, line 1
16 <pre>Preformatted text inside a "pre"-tag, all in one line</pre>
32 normal text with a GB specialPattern in the line
33 preformatted text directly under normal text
/plugin/pgn4web/
H A Dpgn4web.patch4text += '"; CLASS="buttonControl" TITLE="go to game start" ID="btnGoToStart" onClick="clickedBbtn(…
5 if (buttonSize > 0) { text += 'width: ' + buttonSize + 'px;'; }
6text += '"; CLASS="buttonControl" TITLE="move backward" ID="btnMoveBackward1" onClick="clickedBbtn…
7 - text += '<INPUT ID="autoplayButton" TYPE="BUTTON" VALUE=' + (isAutoPlayOn ? "=" : "+") + ' STY…
8 + text += '<INPUT ID="autoplayButton" TYPE="BUTTON" VALUE=' + (isAutoPlayOn ? "=" : "\u2192") + …
9 if (buttonSize > 0) { text += 'width: ' + buttonSize + 'px;'; }
10text += isAutoPlayOn ? '"; CLASS="buttonControlStop" TITLE="toggle autoplay (stop)" ' : '"; CLASS=…
11text += ' ID="btnPlay" NAME="AutoPlay" onClick="clickedBbtn(this,event);" ONFOCUS="this.blur();"><…
/plugin/structcombolookup/
H A Dscript.js34 value = selected.val() ? selected.text() : "";
77 text: false
100 var text = $( this ).text();
101 if ( this.value && ( !request.term || matcher.test(text) ) )
103 label: text,
104 value: text,
122 if ( $( this ).text().toLowerCase() === valueLowerCase ) {
/plugin/zotero/
H A DTextZoteroRepository.php65 private function extractZoteroKey($text) argument
68 if (preg_match("/\[\[.*\|(.*)\]\]/", $text, $matches))
70 $text = str_replace($matches[0], $matches[1], $text);
72 return $text;
93 $text = self::HEADER . "\n";
96 $text .= $this->serializeEntry($e);
98 file_put_contents($this->fileName, $text);
/plugin/toolbox/
H A DToolboxCounter.js17 function charcounter(text) { argument
18 var list = text.split(/[^\w\-_]+/);
19 var len = text.length;
31 function wordcounter(text) { argument
32 var list = text.split(/[^\w\-_]+/);
68 var text = selection.getText();
69 counts.csel = charcounter(text);
70 counts.wsel = wordcounter(text);
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.button.reset.php4 function ButtonResetBox($text) { argument
5 $this->ButtonBox($text);
10 $text = $root->get_attribute("value");
12 $text = DEFAULT_RESET_TEXT;
15 $box =& new ButtonResetBox($text);
/plugin/markdowku/
H A Dgithubcodeblocks.php35 $text = preg_replace('/^```[a-z0-9_]+\n/m', '', $match);
36 $text = preg_replace('/^```$/m', '', $text);
38 $handler->_addCall('file', array($text, $lang, 'snippet.'.$lang), $pos);
40 $handler->_addCall('code', array($text, $lang), $pos);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/
H A DGoogleCloudVisionV1p2beta1Symbol.php33 public $text; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p2beta1Symbol
80 public function setText($text) argument
82 $this->text = $text;
89 return $this->text;
H A DGoogleCloudVisionV1p3beta1Symbol.php33 public $text; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p3beta1Symbol
80 public function setText($text) argument
82 $this->text = $text;
89 return $this->text;
H A DGoogleCloudVisionV1p4beta1Symbol.php33 public $text; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p4beta1Symbol
80 public function setText($text) argument
82 $this->text = $text;
89 return $this->text;
H A DSymbol.php33 public $text; variable in Google\\Service\\Vision\\Symbol
80 public function setText($text) argument
82 $this->text = $text;
89 return $this->text;
H A DGoogleCloudVisionV1p1beta1Symbol.php33 public $text; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p1beta1Symbol
80 public function setText($text) argument
82 $this->text = $text;
89 return $this->text;
/plugin/authucenter/lib/uc_client/lib/
H A Duccode.class.php85 function parseurl($url, $text) { argument
86 …t|rtsp|mms|callto|bctp|ed2k|thunder|synacast){1}:\/\/|www\.)[^\[\"']+/i", trim($text), $matches)) {
90 $text = substr($url, 0, intval($length * 0.5)).' ... '.substr($url, - intval($length * 0.3));
92 …ubstr(strtolower($url), 0, 4) == 'www.' ? 'http://'.$url : $url).'" target="_blank">'.$text.'</a>';
98 return '<a href="'.$url.'" target="_blank">'.$text.'</a>';
102 function parseemail($email, $text) { argument
103 $text = str_replace('\"', '"', $text);
/plugin/prosemirror/
H A Drenderer.php281 public function header($text, $level, $pos) argument
286 $tnode = new Node('text');
287 $tnode->setText($text);
294 public function cdata($text) argument
296 if ($text === '') {
303 $text = str_replace("\n", ' ', $text);
321 $node = new Node('text');
322 $node->setText($text);
329 public function preformatted($text) argument
338 code($text, $lang = null, $file = null) global() argument
350 file($text, $lang = null, $file = null) global() argument
355 html($text) global() argument
364 htmlblock($text) global() argument
374 php($text) global() argument
383 phpblock($text) global() argument
733 unformatted($text) global() argument
[all...]
/plugin/inlineedit/
H A Dsyntax.php88 $text = $match ? trim($match) : '...';
89 $opts['text'] = $text;
115 $text = $opts['text'];
116 if(!$text) $text = '...';
117 $renderer->doc .= $renderer->_xmlEntities($text);
/plugin/combo/resources/theme/default/pages/partials/
H A Dhead-partial.hbs16 --bs-link-color: {{primary-color-text}};
17 --bs-link-hover-color: {{primary-color-text-hover}};
18 --cs-primary-color-text: {{primary-color-text}};
19 --cs-primary-color-text-hover: {{primary-color-text-hover}};
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DScriptStackFrame.php45 public $text; variable in Google\\Service\\Bigquery\\ScriptStackFrame
120 public function setText($text) argument
122 $this->text = $text;
129 return $this->text;

12345678910>>...121