Home
last modified time | relevance | path

Searched refs:lookup (Results 1 – 10 of 10) sorted by relevance

/dokuwiki/_test/tests/inc/
Dindexer_indexing.test.php19 …array('baz' => array('testpage' => 1), 'foo' => array('testpage' => 1)), $indexer->lookup($query));
27 …->assertEquals(array('001' => array(), '002' => array('testpage' => 1)), $indexer->lookup($query));
50 $this->assertEquals(array('1010' => array('testpage' => 1)), $indexer->lookup($query));
52 …->assertEquals(array('1010' => array('testpage' => 1, 'notfound' => 1)), $indexer->lookup($query));
Dindexer_rename.test.php31 …$this->assertEquals(array('old' => array($newid => 1)), $this->indexer->lookup($query), '"Old" doe…
48 …$this->assertEquals(array('existing' => array()), $this->indexer->lookup($query), 'Existing page h…
50 …$this->assertEquals(array('old' => array($newid => 1)), $this->indexer->lookup($query), '"Old" doe…
/dokuwiki/inc/
Dfulltext.php74 $lookup = $Indexer->lookup($q['words']);
90 if (isset($lookup[$word])) {
91 $stack[] = (array)$lookup[$word];
Dindexer.php232 return $Indexer->lookup($words);
/dokuwiki/vendor/splitbrain/php-jsstrip/
Dcomposer.lock271 "sebastian/code-unit-reverse-lookup": "^1.0.1",
645 "name": "sebastian/code-unit-reverse-lookup",
649 "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
654 …"url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c01…
686 "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
688 "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
689 "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
/dokuwiki/vendor/geshi/geshi/src/
Dgeshi.php1442 * @param array $lookup A lookup array to use instead of the default one
1448 public static function get_language_name_from_extension( $extension, $lookup = array() ) { argument
1451 if ( !is_array($lookup) || empty($lookup)) {
1452 $lookup = array(
1529 foreach ($lookup as $lang => $extensions) {
1551 * @param array $lookup A lookup array to use instead of the default one
1555 public function load_from_file($file_name, $lookup = array()) { argument
1558 …set_language(self::get_language_name_from_extension(substr(strrchr($file_name, '.'), 1), $lookup));
/dokuwiki/vendor/splitbrain/slika/
Dcomposer.lock494 "sebastian/code-unit-reverse-lookup": "^1.0.1",
868 "name": "sebastian/code-unit-reverse-lookup",
872 "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
877 …"url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c01…
909 "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
911 "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
912 "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
/dokuwiki/_test/
Dcomposer.lock603 "sebastian/code-unit-reverse-lookup": "^2.0.3",
1175 "name": "sebastian/code-unit-reverse-lookup",
1179 "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
1184 …"url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01cce…
1216 "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
1218 "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
1219 "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
/dokuwiki/vendor/geshi/geshi/
DTHANKS24 extension => language lookup
/dokuwiki/inc/Search/
DIndexer.php614 public function lookup(&$tokens) function in dokuwiki\\Search\\Indexer