HomeSort by relevance Sort by last modified time
    Searched refs:Mapper (Results 1 - 25 of 49) sorted by null

1 2

  /external/marisa-trie/lib/marisa/
mapper.h 10 class Mapper {
12 Mapper();
13 Mapper(const void *ptr, std::size_t size);
14 ~Mapper();
37 void swap(Mapper *rhs);
56 Mapper(const Mapper &);
57 Mapper &operator=(const Mapper &);
mapper.cc 13 #include "mapper.h"
18 Mapper::Mapper()
22 Mapper::Mapper(const void *ptr, std::size_t size)
28 Mapper::Mapper()
31 Mapper::Mapper(const void *ptr, std::size_t size)
38 Mapper::~Mapper()
    [all...]
tail.h 16 void mmap(Mapper *mapper, const char *filename,
19 void map(Mapper &mapper);
intvector.cc 43 void IntVector::mmap(Mapper *mapper, const char *filename,
45 MARISA_THROW_IF(mapper == NULL, MARISA_PARAM_ERROR);
46 Mapper temp_mapper;
49 temp_mapper.swap(mapper);
53 Mapper mapper(ptr, size);
54 map(mapper);
57 void IntVector::map(Mapper &mapper) {
    [all...]
bitvector.h 22 void mmap(Mapper *mapper, const char *filename,
25 void map(Mapper &mapper);
intvector.h 15 void mmap(Mapper *mapper, const char *filename,
18 void map(Mapper &mapper);
vector.h 14 void mmap(Mapper *mapper, const char *filename,
17 void map(Mapper &mapper);
tail.cc 30 void Tail::mmap(Mapper *mapper, const char *filename,
32 if (mapper == NULL) {
35 Mapper temp_mapper;
38 temp_mapper.swap(mapper);
42 Mapper mapper(ptr, size);
43 map(mapper);
46 void Tail::map(Mapper &mapper) {
    [all...]
trie.cc 12 void Trie::mmap(Mapper *mapper, const char *filename,
14 MARISA_THROW_IF(mapper == NULL, MARISA_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) {
    [all...]
vector-inline.h 21 void Vector<T>::mmap(Mapper *mapper, const char *filename,
23 MARISA_THROW_IF(mapper == NULL, MARISA_PARAM_ERROR);
24 Mapper temp_mapper;
27 temp_mapper.swap(mapper);
32 Mapper mapper(ptr, size);
33 map(mapper);
37 void Vector<T>::map(Mapper &mapper) {
    [all...]
bitvector.cc 256 void BitVector::mmap(Mapper *mapper, const char *filename,
258 MARISA_THROW_IF(mapper == NULL, MARISA_PARAM_ERROR);
259 Mapper temp_mapper;
262 temp_mapper.swap(mapper);
266 Mapper mapper(ptr, size);
267 map(mapper);
270 void BitVector::map(Mapper &mapper) {
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
mapper.h 10 class Mapper {
12 Mapper();
13 Mapper(const void *ptr, std::size_t size);
14 ~Mapper();
38 void swap(Mapper *rhs);
57 Mapper(const Mapper &);
58 Mapper &operator=(const Mapper &);
mapper.cc 13 #include "mapper.h"
18 Mapper::Mapper()
22 Mapper::Mapper(const void *ptr, std::size_t size)
29 Mapper::Mapper()
32 Mapper::Mapper(const void *ptr, std::size_t size)
40 Mapper::~Mapper()
    [all...]
tail.h 16 void mmap(Mapper *mapper, const char *filename,
19 void map(Mapper &mapper);
intvector.cc 43 void IntVector::mmap(Mapper *mapper, const char *filename,
45 MARISA_ALPHA_THROW_IF(mapper == NULL, MARISA_ALPHA_PARAM_ERROR);
46 Mapper temp_mapper;
49 temp_mapper.swap(mapper);
53 Mapper mapper(ptr, size);
54 map(mapper);
57 void IntVector::map(Mapper &mapper) {
    [all...]
bitvector.h 22 void mmap(Mapper *mapper, const char *filename,
25 void map(Mapper &mapper);
intvector.h 15 void mmap(Mapper *mapper, const char *filename,
18 void map(Mapper &mapper);
vector.h 14 void mmap(Mapper *mapper, const char *filename,
17 void map(Mapper &mapper);
tail.cc 30 void Tail::mmap(Mapper *mapper, const char *filename,
32 if (mapper == NULL) {
35 Mapper temp_mapper;
38 temp_mapper.swap(mapper);
42 Mapper mapper(ptr, size);
43 map(mapper);
46 void Tail::map(Mapper &mapper) {
    [all...]
trie.cc 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) {
    [all...]
vector-inline.h 21 void Vector<T>::mmap(Mapper *mapper, const char *filename,
23 MARISA_ALPHA_THROW_IF(mapper == NULL, MARISA_ALPHA_PARAM_ERROR);
24 Mapper temp_mapper;
27 temp_mapper.swap(mapper);
32 Mapper mapper(ptr, size);
33 map(mapper);
37 void Vector<T>::map(Mapper &mapper) {
    [all...]
  /external/chromium/chrome/browser/extensions/
extensions_quota_service_unittest.cc 28 class Mapper : public QuotaLimitHeuristic::BucketMapper {
30 Mapper() {}
31 virtual ~Mapper() { STLDeleteValues(&buckets_); }
44 DISALLOW_COPY_AND_ASSIGN(Mapper);
67 heuristics->push_back(new TimedLimit(k2PerMinute, new Mapper()));
79 k2PerMinute, new Mapper()));
81 heuristics->push_back(new TimedLimit(k20PerHour, new Mapper()));
90 heuristics->push_back(new TimedLimit(kFrozenConfig, new Mapper()));
  /external/marisa-trie/tools/
marisa-lookup.cc 34 marisa::Mapper mapper; local
37 trie.mmap(&mapper, args[0]);
  /external/marisa-trie/v0_1_5/tools/
marisa_alpha-lookup.cc 34 marisa_alpha::Mapper mapper; local
37 trie.mmap(&mapper, args[0]);
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp 294 void AArch64InstPrinter::printNamedImmOperand(const NamedImmMapper &Mapper,
299 StringRef Name = Mapper.toString(MO.getImm(), ValidName);
308 AArch64InstPrinter::printSysRegOperand(const A64SysReg::SysRegMapper &Mapper,
314 std::string Name = Mapper.toString(MO.getImm(), ValidName);

Completed in 1114 milliseconds

1 2