Home
last modified time | relevance | path

Searched refs:word (Results 1 – 25 of 430) sorted by relevance

12345678910>>...18

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/
H A DText.php102 foreach ($words as $word) {
103 if (strlen($tempLine.$word) >= 99) {
107 $lines[] = $tempLine.$word;
111 $lines[] = $tempLine.$word;
115 $tempLine = $word.' ';
118 $tempLine .= $word.' ';
148 foreach ($words as $word) {
161 $tempTitle = $word;
164 $tempTitle .= $word.' ';
183 foreach ($words as $word) {
[all …]
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/
H A DwordWindow.js84 if( word ) {
85 return word.value;
91 if( word ) {
92 if( word.type == "text" ) {
93 word.focus();
101 if( word ) {
103 word.blur();
113 if( word ) {
115 var oldText = word.value;
130 word.value = newText;
[all …]
/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/
H A DwordWindow.js84 if( word ) {
85 return word.value;
91 if( word ) {
92 if( word.type == "text" ) {
93 word.focus();
101 if( word ) {
103 word.blur();
113 if( word ) {
115 var oldText = word.value;
130 word.value = newText;
[all …]
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/src/
H A DEncoder.php169 * Return set of symbol pairs in a word.
172 * @param array<int, string> $word
176 private function buildSymbolPairs(array $word): array argument
180 foreach ($word as $i => $part) {
197 $word = mb_str_split($token, 1, 'UTF-8');
198 $initialLength = count($word);
199 $pairs = $this->buildSymbolPairs($word);
228 while ($i < count($word)) {
229 $j = $this->indexOf($word, $first, $i);
233 ...array_slice($word,
[all...]
/plugin/csv/
H A Dhelper.php215 $word = '';
231 $word .= $str[$i];
243 $fields[] = $word;
244 $word = '';
260 $word = '';
278 $word .= $str[$i];
300 $word .= $str[$i];
307 $word = '';
322 $word = '';
327 $word .= $str[$i];
[all …]
/plugin/hyphenation/phpHyphenation/
H A Dhyphenation.php67 function word_hyphenation($word) { argument
68 if(mb_strlen($word) < $GLOBALS["charmin"]) return $word;
69 if(mb_strpos($word, $GLOBALS["hyphen"]) !== false) return $word;
70 if(isset($GLOBALS["dictionary words"][$word])) return $GLOBALS["dictionary words"][$word];
72 $text_word = '_' . $word . '_';
101 for($i = $GLOBALS["leftmin"]; $i <= (mb_strlen($word) - $GLOBALS["rightmin"]); $i++) {
113 global $exclude_tags; $word = ""; $tag = ""; $tag_jump = 0; $output = array();
120 $word .= $char;
122 if($word != "") { $output[] = word_hyphenation($word); $word = ""; }
H A DphpHyphenation.class.php160 $word = '';
167 $word .= $char;
170 if ($word != '') {
171 $result[] = $this->wordHyphenation($word);
172 $word = '';
207 * @param string $word Single word to hyphenate
210 public function wordHyphenation($word) { argument
211 if(mb_strlen($word) < $this->charMin) return $word;
212 if(mb_strpos($word, $this->hyphen) !== false) return $word;
213 … if(isset($this->dictWords[mb_strtolower($word)])) return $this->dictWords[mb_strtolower($word)];
[all …]
/plugin/readability/
H A Dcalc.php63 $word = str_word_count($text);
64 $m = floor($word / 200);
65 $s = floor($word % 200 / (200 / 60));
148 function count_syllables($word) { argument
181 $word = preg_replace('/[^a-z]/is', '', strtolower($word));
182 $word_parts = preg_split('/[^aeiouy]+/', $word);
192 if (strpos($word, $syl) !== false) {
197 if (strpos($word, $syl) !== false) {
201 if (strlen($word) == 1) {
/plugin/cloud/
H A Dsyntax.php116 $name = $word;
126 $page = $word;
134 $name = $word;
139 $link = wl($word, array('do'=>'showtag', 'tag'=>$word));
142 $title = $word;
145 $link = wl($word, array('do'=>'search', 'id'=>$word));
208 if (isset($cloud[$word]))
209 unset($cloud[$word]);
219 foreach ($blacklist as $word) {
220 if (isset($cloud[$word]))
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DHyphenator.php38 * @param string $word
43 public function hyphenateWord($word, $currptr) argument
47 if (preg_match('/^(http:|www\.)/', $word)) {
67 $word = mb_convert_encoding($word, 'UTF-8', $this->mpdf->mb_enc);
75 if (preg_match('/^(["\'' . $startpunctuation . '])+(.{' . $this->mpdf->SHYcharmin . ',})$/u', $word, $m)) {
77 $word = $m[2];
80 if (preg_match('/^(.{' . $this->mpdf->SHYcharmin . ',})([\'\.,;:!?"' . $endpunctuation . ']+)$/u', $word, $m)) {
81 $word = $m[1];
85 if (mb_strlen($word, 'UT
[all...]
/plugin/phpbblinks/
H A Daction.php87 foreach ($textpice as $word)
90 if (empty($word))
98 $org = $word;
101 if (substr($word,0,2) == '[[' && substr($word,-2) == ']]' )
104 if (strpos($word,'|'))
109 $word = substr($word,2,-2);
110 if (strlen($word) <= $urlc)
115 if (substr($word,0,$urlc) != $url)
121 $pices = parse_url($word);
132 $wu = parse_url($word);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/
H A DGoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentWordInfo.php37 public $word; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentWordInfo
84 public function setWord($word) argument
86 $this->word = $word;
93 return $this->word;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudVideoIntelligence/
H A DGoogleCloudVideointelligenceV1beta2WordInfo.php41 public $word; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1beta2WordInfo
102 public function setWord($word) argument
104 $this->word = $word;
111 return $this->word;
H A DGoogleCloudVideointelligenceV1p2beta1WordInfo.php41 public $word; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1p2beta1WordInfo
102 public function setWord($word) argument
104 $this->word = $word;
111 return $this->word;
H A DGoogleCloudVideointelligenceV1p1beta1WordInfo.php41 public $word; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1p1beta1WordInfo
102 public function setWord($word) argument
104 $this->word = $word;
111 return $this->word;
H A DGoogleCloudVideointelligenceV1WordInfo.php41 public $word; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1WordInfo
102 public function setWord($word) argument
104 $this->word = $word;
111 return $this->word;
H A DGoogleCloudVideointelligenceV1p3beta1WordInfo.php41 public $word; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1p3beta1WordInfo
102 public function setWord($word) argument
104 $this->word = $word;
111 return $this->word;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
H A DPrefixNode.php41 public $word; variable in Google\\Service\\Spanner\\PrefixNode
102 public function setWord($word) argument
104 $this->word = $word;
111 return $this->word;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Speech/
H A DWordInfo.php41 public $word; variable in Google\\Service\\Speech\\WordInfo
102 public function setWord($word) argument
104 $this->word = $word;
111 return $this->word;
/plugin/spellcheck/
H A Dspellcheck.php162 $word = $match[1];
167 $word = $match[1];
181 $len = utf8_strlen($word);
182 $data[$lcnt] = utf8_substr_replace($data[$lcnt],spell_formatword($word,$sug),$off, $len);
184 $len = strlen($word);
185 $data[$lcnt] = substr_replace($data[$lcnt],spell_formatword($word,$sug),$off, $len);
211 function spell_formatword($word,$suggestions=null){ argument
232 'class="spell_error" id="spell__error'.$i.'">'.htmlspecialchars($word).'</a>';
H A Daspell.php56 function pspell_check(&$dict,$word){ argument
57 return $dict->check($word);
60 function pspell_suggest(&$dict, $word){ argument
61 return $dict->suggest($word);
289 function suggest($word){ argument
290 if($this->runAspell("^$word",$out,$err)){
313 function check($word){ argument
314 if(is_array($this->suggest($word))){
/plugin/autolink3/
H A Dsys.php15 function link_replace($text = NULL, $word, $link, $filename) argument
40 if (preg_match('/(\W|^)('.$word.')($|[^a-z0-9_\-])/i', $element) == 1)
42 …$element = preg_replace('/(\W|^)('.$word.')($|[^a-z0-9_\-])/i','\1'."[[".substr($link,0, strlen($l…
43 $element = link_replace($element, $word, $link, $filename);
135 function is_link_exist($page, $local, $word) argument
137 $global = sprintf("%s %s %s\r\n", $word, $page, $local);
142 if (!strcmp($check, $global) || (!strcmp($word, $nword[0]) && !strcmp($local, $nword[2])))
145 if (preg_match('/:/', $word))
/plugin/mediatooltip/
H A Dstyle.css15 overflow-wrap: break-word;
20 word-wrap: break-word;
21 overflow-wrap: break-word;
/plugin/pagestat/
H A Dremote.php205 $word = $word_def[0];
210 $out_txt.="===== $word =====\n";
211 $out_txt.=" * <wrap vo>$word</wrap> ($pron) \\\\ **$defsimp**\n";
233 foreach($word_list as $i=>$word){
235 if(isset($def_map[$word])){
236 $def = $def_map[$word];
240 $out_txt.="===== $word !!! =====\n";
241 $out_txt.= " - $word : !!!!!NO DEF!!!!!\n";
/plugin/codemirror/dist/modes/
H A Dsas.min.js.map1word","nextword","inDataStep","indexOf","start","pos","backUp","inProc","inMacro","startState","to…

12345678910>>...18