| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/ |
| D | Text.php | 102 foreach ($words as $word) { 103 if (strlen($tempLine.$word) >= 99) { 104 if (strlen($tempLine.$word) === 99) { 107 $lines[] = $tempLine.$word; 109 } else if (strlen($tempLine.$word) === 100) { 111 $lines[] = $tempLine.$word; 115 $tempLine = $word.' '; 118 $tempLine .= $word.' '; 148 foreach ($words as $word) { 149 if (strlen($tempTitle.$word) >= 45) { [all …]
|
| /plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/ |
| D | wordWindow.js | 83 var word = this._getWordObject( textIndex, wordIndex ); 84 if( word ) { 85 return word.value; 90 var word = this._getWordObject( textIndex, wordIndex ); 91 if( word ) { 92 if( word.type == "text" ) { 93 word.focus(); 94 word.style.backgroundColor = this.checkWordBgColor; 100 var word = this._getWordObject( textIndex, wordIndex ); 101 if( word ) { [all …]
|
| /plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/ |
| D | wordWindow.js | 83 var word = this._getWordObject( textIndex, wordIndex ); 84 if( word ) { 85 return word.value; 90 var word = this._getWordObject( textIndex, wordIndex ); 91 if( word ) { 92 if( word.type == "text" ) { 93 word.focus(); 94 word.style.backgroundColor = this.checkWordBgColor; 100 var word = this._getWordObject( textIndex, wordIndex ); 101 if( word ) { [all …]
|
| /plugin/grensladawritezor/fckeditor/editor/dialog/fck_spellerpages/spellerpages/ |
| D | wordWindow.js | 83 var word = this._getWordObject( textIndex, wordIndex ); 84 if( word ) { 85 return word.value; 90 var word = this._getWordObject( textIndex, wordIndex ); 91 if( word ) { 92 if( word.type == "text" ) { 93 word.focus(); 94 word.style.backgroundColor = this.checkWordBgColor; 100 var word = this._getWordObject( textIndex, wordIndex ); 101 if( word ) { [all …]
|
| /plugin/aichat/vendor/mehrab-wj/tiktoken-php/src/ |
| D | Encoder.php | 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, $i, null, true), 238 $slicer = $i > $j || 0 === $j ? [] : array_slice($word, $i, $j - $i, true); 249 if ($word[$i] === $first && $i < count($word) - 1 && $word[$i + 1] === $second) { [all …]
|
| /plugin/csv/ |
| D | helper.php | 219 $word = ''; 235 $word .= $str[$i]; 246 $fields[] = $word; 247 $word = ''; 259 if ($fields === [] && $word === '') continue; 262 $fields[] = $word; 263 $word = ''; 281 $word .= $str[$i]; 288 $word .= $str[$i]; 301 $word .= $str[$i]; [all …]
|
| /plugin/hyphenation/phpHyphenation/ |
| D | hyphenation.php | 67 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 = ""; }
|
| D | phpHyphenation.class.php | 160 $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/ |
| D | calc.php | 63 $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/ |
| D | syntax.php | 109 foreach ($cloud as $word => $size) { 116 $name = $word; 122 $page = $resolver->resolveId($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)); 147 $link = wl($word, 'do=search'); 207 foreach ($this->stopwords as $word) { [all …]
|
| /plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
| D | Hyphenator.php | 38 * @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 …_match('/^(["\'' . $startpunctuation . '])+(.{' . $this->mpdf->SHYcharmin . ',})$/u', $word, $m)) { 77 $word = $m[2]; 80 …h('/^(.{' . $this->mpdf->SHYcharmin . ',})([\'\.,;:!?"' . $endpunctuation . ']+)$/u', $word, $m)) { 81 $word = $m[1]; 85 if (mb_strlen($word, 'UTF-8') < $this->mpdf->SHYcharmin) { 92 if (isset($this->words[mb_strtolower($word)])) { [all …]
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | camelCase.js | 24 var camelCase = createCompounder(function(result, word, index) { argument 25 word = word.toLowerCase(); 26 return result + (index ? capitalize(word) : word);
|
| /plugin/phpbblinks/ |
| D | action.php | 87 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/ |
| D | GoogleCloudContactcenterinsightsV1ConversationTranscriptTranscriptSegmentWordInfo.php | 37 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/ |
| D | GoogleCloudVideointelligenceV1p3beta1WordInfo.php | 41 public $word; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1p3beta1WordInfo 102 public function setWord($word) argument 104 $this->word = $word; 111 return $this->word;
|
| D | GoogleCloudVideointelligenceV1WordInfo.php | 41 public $word; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1WordInfo 102 public function setWord($word) argument 104 $this->word = $word; 111 return $this->word;
|
| D | GoogleCloudVideointelligenceV1beta2WordInfo.php | 41 public $word; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1beta2WordInfo 102 public function setWord($word) argument 104 $this->word = $word; 111 return $this->word;
|
| D | GoogleCloudVideointelligenceV1p1beta1WordInfo.php | 41 public $word; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1p1beta1WordInfo 102 public function setWord($word) argument 104 $this->word = $word; 111 return $this->word;
|
| D | GoogleCloudVideointelligenceV1p2beta1WordInfo.php | 41 public $word; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1p2beta1WordInfo 102 public function setWord($word) argument 104 $this->word = $word; 111 return $this->word;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/ |
| D | PrefixNode.php | 41 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/ |
| D | WordInfo.php | 41 public $word; variable in Google\\Service\\Speech\\WordInfo 102 public function setWord($word) argument 104 $this->word = $word; 111 return $this->word;
|
| /plugin/spellcheck/ |
| D | spellcheck.php | 162 $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>';
|
| D | aspell.php | 56 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/ |
| D | sys.php | 15 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/ |
| D | style.css | 15 overflow-wrap: break-word; 20 word-wrap: break-word; 21 overflow-wrap: break-word;
|