HomeSort by relevance Sort by last modified time
    Searched refs:mapper (Results 26 - 50 of 143) sorted by null

12 3 4 5 6

  /external/marisa-trie/lib/marisa/
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...]
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-c.cc 53 marisa_trie_() : trie(), mapper() {}
56 marisa::Mapper mapper; member in struct:marisa_trie_
87 h->mapper.clear();
96 h->trie.mmap(&h->mapper, filename, offset, whence);
105 h->mapper.clear();
115 h->mapper.clear();
124 h->mapper.clear();
133 h->mapper.clear();
340 h->mapper.clear()
    [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...]
bitvector.h 22 void mmap(Mapper *mapper, const char *filename,
25 void map(Mapper &mapper);
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
tail.h 16 void mmap(Mapper *mapper, const char *filename,
19 void map(Mapper &mapper);
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...]
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...]
bitvector.cc 256 void BitVector::mmap(Mapper *mapper, const char *filename,
258 MARISA_ALPHA_THROW_IF(mapper == NULL, MARISA_ALPHA_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...]
bitvector.h 22 void mmap(Mapper *mapper, const char *filename,
25 void map(Mapper &mapper);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
map.h 47 // Mapper Interface - class determinies how arcs and final weights
50 // class Mapper {
54 // // Specifies final action the mapper requires (see above).
55 // // The mapper will be passed final weights as arcs of the
59 // // mapper. It takes as argument the input Fst's known properties.
64 // method of the mapper to determine how to treat final weights,
71 // we pass the mapper. We allow passing the mapper by pointer
72 // for cases that we need to change the state of the user's mapper.
73 // This is the case with the encode mapper, which is reused durin
    [all...]
encode.h 187 // A mapper to encode/decode weighted transducers. Encoding of an
192 // The Encode mapper stores the encoding in a local hash table (EncodeTable)
213 EncodeMapper(const EncodeMapper& mapper)
214 : ref_count_(mapper.ref_count_ + 1),
215 flags_(mapper.flags_),
216 type_(mapper.type_),
217 table_(mapper.table_) { }
220 EncodeMapper(const EncodeMapper& mapper, EncodeType type)
221 : ref_count_(mapper.ref_count_ + 1),
222 flags_(mapper.flags_)
    [all...]
  /external/openfst/src/include/fst/
arc-map.h 66 // (They may set by the mapper).
81 // // Specifies final action the mapper requires (see above).
82 // // The mapper will be passed final weights as arcs of the
85 // // Specifies input symbol table action the mapper requires (see above).
87 // // Specifies output symbol table action the mapper requires (see above).
90 // // mapper. It takes as argument the input Fst's known properties.
95 // method of the mapper to determine how to treat final weights,
102 // we pass the mapper. We allow passing the mapper by pointer
103 // for cases that we need to change the state of the user's mapper
    [all...]
encode.h 287 // A mapper to encode/decode weighted transducers. Encoding of an
292 // The Encode mapper stores the encoding in a local hash table (EncodeTable)
315 EncodeMapper(const EncodeMapper& mapper)
316 : flags_(mapper.flags_),
317 type_(mapper.type_),
318 table_(mapper.table_),
324 EncodeMapper(const EncodeMapper& mapper, EncodeType type)
325 : flags_(mapper.flags_),
327 table_(mapper.table_),
328 error_(mapper.error_)
    [all...]
  /external/openfst/src/include/fst/script/
map.h 31 const M &mapper) {
34 ArcMap(fst, ofst, mapper);
40 const M &mapper) {
43 StateMap(fst, ofst, mapper);
100 FSTERROR() << "Error: unknown/unsupported mapper type: "
  /external/skia/src/effects/gradients/
SkLinearGradient.h 18 SkShader::TileMode mode, SkUnitMapper* mapper);
SkRadialGradient.h 18 SkShader::TileMode mode, SkUnitMapper* mapper);
SkSweepGradient.h 17 const SkScalar pos[], int count, SkUnitMapper* mapper);
  /external/skia/gm/
gradients.cpp 37 SkShader::TileMode tm, SkUnitMapper* mapper) {
39 data.fCount, tm, mapper);
43 SkShader::TileMode tm, SkUnitMapper* mapper) {
48 data.fPos, data.fCount, tm, mapper);
52 SkShader::TileMode tm, SkUnitMapper* mapper) {
57 data.fPos, data.fCount, mapper);
61 SkShader::TileMode tm, SkUnitMapper* mapper) {
70 data.fColors, data.fPos, data.fCount, tm, mapper);
74 SkShader::TileMode tm, SkUnitMapper* mapper) {
83 data.fCount, tm, mapper);
    [all...]
  /external/icu4c/test/letest/
PortableFontInstance.h 95 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
99 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
  /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/emma/core/java12/com/vladium/util/
IProperties.java 65 * Creates an empty IProperties set with an optional property mapper.
67 * @param mapper [may be null]
70 public static IProperties create (final IMapper mapper)
72 return new PropertiesImpl (null, mapper);
77 * with an optional property mapper. Note that 'properties' content is
82 * @param mapper [may be null]
85 public static IProperties wrap (final Properties properties, final IMapper mapper)
99 return new PropertiesImpl (map, mapper); // note: map is a defensive clone
109 * @return [never null; an empty property set with a null mapper is created
299 PropertiesImpl (final HashMap values, final IMapper mapper)
    [all...]
  /external/marisa-trie/tests/
io-test.cc 65 marisa::Mapper mapper; local
66 mapper.open("io-test.dat");
68 mapper.map(&value);
70 mapper.map(&value);
73 mapper.map(&values, 3);
78 EXCEPT(mapper.map(&byte), MARISA_IO_ERROR);
  /external/marisa-trie/v0_1_5/tests/
io-test.cc 66 marisa_alpha::Mapper mapper; local
67 mapper.open("io-test.dat");
69 mapper.map(&value);
71 mapper.map(&value);
74 mapper.map(&values, 3);
79 EXCEPT(mapper.map(&byte), MARISA_ALPHA_IO_ERROR);

Completed in 2200 milliseconds

12 3 4 5 6