Home
last modified time | relevance | path

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

/dokuwiki/inc/Search/
DIndexer.php76 foreach ($delwords as $word) {
77 if ($word != '') {
78 [$wlen, $wid] = explode('*', $word);
133 foreach ($words[$wlen] as $word => $freq) {
134 $word = (string)$word;
135 $wid = array_search($word, $word_idx, true);
138 $word_idx[] = $word;
415 foreach ($delwords as $word) {
416 if ($word != '') {
417 [$wlen, $wid] = explode('*', $word);
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
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] & intval(0xFF000000)) |
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));
632 * @param int $word
[all …]
/dokuwiki/vendor/splitbrain/php-cli/src/
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/inc/lang/el/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/et/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/ar/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/cy/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/nl/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/id/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/en/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/fa/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/lib/tpl/dokuwiki/css/
Ddesign.less207 word-wrap: break-word;
304 word-wrap: break-word;
310 overflow-wrap: break-word;
Dbasic.less283 word-wrap: normal;
/dokuwiki/inc/lang/ca-valencia/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/az/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/da/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/
Dfulltext.php89 $word = substr($token, 3);
90 if (isset($lookup[$word])) {
91 $stack[] = (array)$lookup[$word];
944 foreach ($words as $word) {
945 $phrase_mode = $phrase_mode ? true : Asian::isAsianWords($word);
946 $parsed .= ft_termParser($Indexer, $word, false, $phrase_mode);
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/inc/lang/fo/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/inc/lang/de-informal/
Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
/dokuwiki/lib/plugins/extension/
Dstyle.less73 word-break: break-word;
/dokuwiki/vendor/geshi/geshi/src/
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/
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];
/dokuwiki/vendor/simplepie/simplepie/src/
DItem.php2089 foreach ($temp as $word) {
2090 $keywords[] = trim($word);