/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...] |
/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_org/chromeos/network/onc/ |
onc_mapper.cc | 14 Mapper::Mapper() { 17 Mapper::~Mapper() { 20 scoped_ptr<base::Value> Mapper::MapValue(const OncValueSignature& signature, 46 scoped_ptr<base::DictionaryValue> Mapper::MapObject( 59 scoped_ptr<base::Value> Mapper::MapPrimitive(const OncValueSignature& signature, 65 void Mapper::MapFields(const OncValueSignature& object_signature, 88 scoped_ptr<base::Value> Mapper::MapField( 109 scoped_ptr<base::ListValue> Mapper::MapArray [all...] |
onc_mapper.h | 37 class CHROMEOS_EXPORT Mapper { 39 Mapper(); 40 virtual ~Mapper(); 107 DISALLOW_COPY_AND_ASSIGN(Mapper);
|
onc_normalizer.h | 17 class CHROMEOS_EXPORT Normalizer : public Mapper {
|
/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/chromium_org/extensions/browser/ |
quota_service_unittest.cc | 35 class Mapper : public QuotaLimitHeuristic::BucketMapper { 37 Mapper() {} 38 virtual ~Mapper() { STLDeleteValues(&buckets_); } 53 DISALLOW_COPY_AND_ASSIGN(Mapper); 85 new TimedLimit(k2PerMinute, new Mapper(), kGenericName)); 100 TimeDelta::FromMinutes(5), k2PerMinute, new Mapper(), kGenericName)); 103 new TimedLimit(k20PerHour, new Mapper(), kGenericName)); 116 new TimedLimit(kFrozenConfig, new Mapper(), kGenericName));
|