Home
last modified time | relevance | path

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

12

/dokuwiki/inc/Search/
H A DTokenizer.php103 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 DFulltextSearch.php99 foreach ($q['words'] as $word) {
100 if (!Tokenizer::isValidSearchTerm($word)) continue;
101 $search->addTerm($word);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRijndael.php334 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 DTableFormatter.php306 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 DQueryEvaluatorTest.php19 * @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 Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/et/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/Search/Query/
H A DQueryEvaluator.php71 $word = substr($token, 3);
72 if (isset($this->terms[$word])) {
73 $stack[] = new PageSet($this->terms[$word]->getEntityFrequencies());
H A DQueryParser.php32 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 Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/cy/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/nl/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/id/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/fa/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/en/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/lib/tpl/dokuwiki/css/
H A Ddesign.less207 word-wrap: break-word;
304 word-wrap: break-word;
310 overflow-wrap: break-word;
/dokuwiki/inc/lang/ca-valencia/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/az/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/da/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/fo/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/de-informal/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/lib/plugins/extension/
H A Dstyle.less73 word-break: break-word;
/dokuwiki/inc/
H A DDifferenceEngine.php980 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 Dgeshi.php1568 * @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 DParser.php549 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];

12