Home | History | Annotate | Download | only in marisa_alpha

Lines Matching refs:mapper

12 void Trie::mmap(Mapper *mapper, const char *filename,
14 MARISA_ALPHA_THROW_IF(mapper == NULL, MARISA_ALPHA_PARAM_ERROR);
15 Mapper temp_mapper;
18 temp_mapper.swap(mapper);
22 Mapper mapper(ptr, size);
23 map(mapper);
26 void Trie::map(Mapper &mapper) {
28 temp.louds_.map(mapper);
29 temp.labels_.map(mapper);
30 temp.terminal_flags_.map(mapper);
31 temp.link_flags_.map(mapper);
32 temp.links_.map(mapper);
33 temp.tail_.map(mapper);
34 mapper.map(&temp.num_first_branches_);
35 mapper.map(&temp.num_keys_);
40 temp.trie_->map(mapper);