Home
last modified time | relevance | path

Searched refs:changeRow (Results 1 – 9 of 9) sorted by relevance

/dokuwiki/_test/tests/Search/Index/
H A DFileIndexTest.php26 $index->changeRow(5, 'test');
30 $index->changeRow(3, 'foo');
34 $index->changeRow(5, 'bar');
35 $index->changeRow(7, 'bang');
44 $index->changeRow(5, 'test');
H A DMemoryIndexTest.php26 $index->changeRow(5, 'test');
30 $index->changeRow(3, 'foo');
34 $index->changeRow(5, 'bar');
35 $index->changeRow(7, 'bang');
48 $index->changeRow(5, 'test');
64 $index->changeRow(0, '');
70 $index->changeRow(3, 'test');
H A DAbstractIndexTestCase.php100 $index->changeRow(5, 'test');
/dokuwiki/inc/Search/Collection/
H A DDirectCollection.php64 $tokenIndex->changeRow($entityId, $token);
H A DAbstractCollection.php448 $reverseIndex->changeRow($entityId, $record);
513 $freqIndex->changeRow($tokenId, $record);
/dokuwiki/inc/Search/
H A DIndexer.php463 $reverseIndex->changeRow(
468 $freqIndex->changeRow($oldid, '');
469 $freqIndex->changeRow($newid, $newFreqLine);
473 $tokenIndex->changeRow($oldid, $newvalue);
/dokuwiki/inc/Search/Index/
H A DAbstractIndex.php142 abstract public function changeRow(int $rid, string $value); function in dokuwiki\\Search\\Index\\AbstractIndex
H A DMemoryIndex.php69 public function changeRow(int $rid, string $value): void function in dokuwiki\\Search\\Index\\MemoryIndex
H A DFileIndex.php27 public function changeRow(int $rid, string $value): void function in dokuwiki\\Search\\Index\\FileIndex