| /dokuwiki/inc/Search/ |
| H A D | Tokenizer.php | 103 foreach ($wordlist as $i => $word) { 104 $wordlist[$i] = (preg_match('/[^0-9A-Za-z]/u', $word)) ? 105 PhpString::strtolower($word) : strtolower($word); 108 foreach ($wordlist as $i => $word) { 110 (!is_numeric($word) && strlen($word) < static::getMinWordLength()) 111 || in_array($word, static::getStopwords(), true)
|
| H A D | FulltextSearch.php | 99 foreach ($q['words'] as $word) { 100 if (!Tokenizer::isValidSearchTerm($word)) continue; 101 $search->addTerm($word);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| H A D | Rijndael.php | 334 foreach ($words as $word) { 335 $state[] = $word ^ $w[++$wc]; 423 foreach ($words as $word) { 424 $state[] = $word ^ $dw[++$wc]; 455 $word = ($state[$i] & (PHP_INT_SIZE == 8 ? 0xFF000000 : -16777216)) | 460 $temp[$i] = $dw[$i] ^ ($isbox[$word & 0x000000FF] | 461 ($isbox[$word >> 8 & 0x000000FF] << 8) | 462 ($isbox[$word >> 16 & 0x000000FF] << 16) | 463 ($isbox[$word >> 24 & 0x000000FF] << 24)); 634 * @param int $word [all …]
|
| /dokuwiki/vendor/splitbrain/php-cli/src/ |
| H A D | TableFormatter.php | 306 foreach ($words as $word) { 307 if (preg_match_all(Colors::C_CODE_REGEX, $word, $color_codes) ) { 318 if ($this->strlen($actual . $word) <= $width) { 319 $actual .= $word . ' '; 324 $actual = $color . $word;
|
| /dokuwiki/_test/tests/Search/Query/ |
| H A D | QueryEvaluatorTest.php | 19 * @param string $word the word this term represents 23 protected function makeTerm(string $word, array $frequencies): Term argument 25 $term = new Term($word); 27 $term->addMatch($page, $word, $freq);
|
| /dokuwiki/inc/lang/el/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/lang/et/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/Search/Query/ |
| H A D | QueryEvaluator.php | 71 $word = substr($token, 3); 72 if (isset($this->terms[$word])) { 73 $stack[] = new PageSet($this->terms[$word]->getEntityFrequencies());
|
| H A D | QueryParser.php | 32 foreach ($words as $word) { 33 $phrase_mode = $phrase_mode || Asian::isAsianWords($word); 34 $parsed .= $this->termParser($word, false, $phrase_mode);
|
| /dokuwiki/inc/lang/ar/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/lang/cy/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/lang/nl/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/lang/id/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/lang/fa/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/lang/en/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | design.less | 207 word-wrap: break-word; 304 word-wrap: break-word; 310 overflow-wrap: break-word;
|
| /dokuwiki/inc/lang/ca-valencia/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/lang/az/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/lang/da/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/lang/fo/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/inc/lang/de-informal/ |
| H A D | stopwords.txt | 1 # This is a list of words the indexer ignores, one word per line
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | style.less | 73 word-break: break-word;
|
| /dokuwiki/inc/ |
| H A D | DifferenceEngine.php | 980 foreach ($words as $word) { 982 if ($word == '') 984 if ($word[0] == "\n") { 987 $word = substr($word, 1); 989 assert(!strstr($word, "\n")); 990 $this->_group .= $word;
|
| /dokuwiki/vendor/geshi/geshi/src/ |
| H A D | geshi.php | 1568 * @param string $word The word to add to the keyword group 1571 public function add_keyword($key, $word) { argument 1575 if (!in_array($word, $this->language_data['KEYWORDS'][$key])) { 1576 $this->language_data['KEYWORDS'][$key][] = $word; 1581 … $this->language_data['CACHED_KEYWORD_LISTS'][$key][$subkey] .= '|' . preg_quote($word, '/'); 1590 * @param string $word The word to remove from the keyword group 1599 public function remove_keyword($key, $word, $recompile = true) { argument 1600 $key_to_remove = array_search($word, $this->language_data['KEYWORDS'][$key]); 3260 foreach ($this->language_data['KEYWORDS'][$k] as $word) { 3261 if (strcasecmp($word, $keyword_match) == 0) { [all …]
|
| /dokuwiki/vendor/splitbrain/lesserphp/src/ |
| H A D | Parser.php | 549 if ($this->keyword($word)) { 550 $value = ['keyword', $word]; 1012 if ($this->keyword($word)) { 1013 $attrParts[] = $word; 1189 protected function keyword(&$word) argument 1192 $word = $m[1];
|