Searched refs:mapper (Results 26 - 50 of 92) sorted by relevance

1234

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dmap.h54 // // 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 during
74 // decoding. We also include map versions that pass the mapper
78 // Maps an arc type A using a mapper functio
81 Map(MutableFst<A> *fst, C* mapper) argument
149 Map(MutableFst<A> *fst, C mapper) argument
158 Map(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) argument
231 Map(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) argument
269 MapFstImpl(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts) argument
279 MapFstImpl(const Fst<A> &fst, C *mapper, const MapFstOptions& opts) argument
464 MapFst(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts) argument
468 MapFst(const Fst<A> &fst, C* mapper, const MapFstOptions& opts) argument
472 MapFst(const Fst<A> &fst, const C &mapper) argument
476 MapFst(const Fst<A> &fst, C* mapper) argument
[all...]
H A Dequivalent.h133 EncodeMapper<Arc> mapper(kEncodeWeights|kEncodeLabels, ENCODE);
134 Map(&efst1, &mapper);
135 Map(&efst2, &mapper);
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DSsaToRop.java105 RegisterMapper mapper = allocator.allocateRegisters();
109 System.out.println(((BasicRegisterMapper)mapper).toHuman());
114 ssaMeth.mapRegisters(mapper);
219 BasicRegisterMapper mapper
225 mapper.addMapping(i, regCount - paramWidth + i, 1);
227 mapper.addMapping(i, i - paramWidth, 1);
236 ssaMeth.mapRegisters(mapper);
H A DFirstFitLocalCombiningAllocator.java61 /** Register mapper which will be our result */
62 private final InterferenceRegisterMapper mapper; field in class:FirstFitLocalCombiningAllocator
91 mapper = new InterferenceRegisterMapper(
152 return mapper;
492 int moveRopReg = mapper.oldToNew(moveReg);
496 int checkRopReg = mapper.oldToNew(checkReg);
520 int moveRopReg = mapper.oldToNew(moveReg);
521 int checkRopReg = mapper.oldToNew(checkReg);
596 || mapper.interferes(ssaSpec, ropReg));
706 mapper
[all...]
/external/openfst/src/include/fst/
H A Darcsort.h49 ArcSortMapper(const ArcSortMapper<Arc, Compare> &mapper, argument
51 : fst_(fst ? *fst : mapper.fst_), comp_(mapper.comp_), i_(0) {}
98 ArcSortMapper<Arc, Compare> mapper(*fst, comp);
99 StateMap(fst, mapper);
H A Dequivalent.h167 EncodeMapper<Arc> mapper(kEncodeWeights|kEncodeLabels, ENCODE);
168 ArcMap(&efst1, &mapper);
169 ArcMap(&efst2, &mapper);
/external/chromium_org/chrome/browser/extensions/api/push_messaging/
H A Dpush_messaging_apitest.cc157 scoped_ptr<StrictMock<MockInvalidationMapper> > mapper(
159 StrictMock<MockInvalidationMapper>* unsafe_mapper = mapper.get();
160 // PushMessagingEventRouter owns the mapper now.
162 mapper.PassAs<PushMessagingInvalidationMapper>());
/external/chromium_org/content/browser/gamepad/
H A Dgamepad_platform_data_fetcher_win.cc116 pad_state_[pad_index].mapper = NULL;
139 state.mapper = GetGamepadStandardMappingFunction(vendor, product);
143 gamepad->id, state.mapper ? L"STANDARD GAMEPAD " : L"",
146 if (state.mapper)
295 if (pad_state_[index].mapper)
296 pad_state_[index].mapper(raw_pad, pad);
H A Dgamepad_platform_data_fetcher_linux.cc120 GamepadStandardMappingFunction& mapper = mappers_[index]; local
148 mapper = GetGamepadStandardMappingFunction(vendor_id, product_id);
186 mapper ? "STANDARD GAMEPAD " : "",
194 if (mapper) {
H A Dgamepad_platform_data_fetcher_win.h86 GamepadStandardMappingFunction mapper; member in struct:content::GamepadPlatformDataFetcherWin::PadState
H A Dgamepad_platform_data_fetcher_mac.h91 GamepadStandardMappingFunction mapper; member in struct:content::GamepadPlatformDataFetcherMac::AssociatedData::__anon7154::__anon7155
/external/chromium_org/third_party/icu/source/test/letest/
H A DPortableFontInstance.h99 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
103 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
H A DPortableFontInstance.cpp446 LEGlyphID PortableFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
448 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
453 LEGlyphID PortableFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
455 return LEFontInstance::mapCharToGlyph(ch, mapper);
/external/chromium_org/third_party/icu/source/test/perf/leperf/
H A DPortableFontInstance.h99 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
103 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
H A DPortableFontInstance.cpp446 LEGlyphID PortableFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
448 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
453 LEGlyphID PortableFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
455 return LEFontInstance::mapCharToGlyph(ch, mapper);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DMoveParamCombiner.java108 RegisterMapper mapper = new RegisterMapper() {
130 use.mapSourceRegisters(mapper);
H A DNormalSsaInsn.java41 public final void mapSourceRegisters(RegisterMapper mapper) { argument
43 RegisterSpecList newSources = mapper.map(oldSources);
H A DSsaRenamer.java302 private final RenamingMapper mapper; field in class:SsaRenamer.BlockRenamer
315 mapper = new RenamingMapper();
499 insn.mapSourceRegisters(mapper);
590 insn.mapSourceRegisters(mapper);
/external/icu/icu4c/source/test/letest/
H A DPortableFontInstance.h99 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
103 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
/external/icu/icu4c/source/test/perf/leperf/
H A DPortableFontInstance.h99 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
103 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
/external/openfst/src/include/fst/script/
H A Dmap.h31 const M &mapper) {
34 ArcMap(fst, ofst, mapper);
40 const M &mapper) {
43 StateMap(fst, ofst, mapper);
100 FSTERROR() << "Error: unknown/unsupported mapper type: "
30 ArcMap(const Fst<typename M::FromArc> &fst, const M &mapper) argument
39 StateMap(const Fst<typename M::FromArc> &fst, const M &mapper) argument
/external/chromium_org/content/renderer/pepper/
H A Dcontent_decryptor_delegate.cc75 BufferAutoMapper mapper(buffer.get());
76 if (!mapper.data() || mapper.size() < size)
78 memcpy(mapper.data(), data, size);
958 BufferAutoMapper mapper(enter.object());
959 if (!mapper.data() || !mapper.size() ||
960 mapper.size() < block_info->data_size) {
968 media::DecoderBuffer::CopyFrom(static_cast<uint8*>(mapper.data()),
1182 BufferAutoMapper mapper(media_resourc
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfpdf_sysfontinfo.cpp80 DLLEXPORT void STDCALL FPDF_AddInstalledFont(void* mapper, const char* name, int charset) argument
82 ((CFX_FontMapper*)mapper)->AddInstalledFont(name, charset);
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeDoc.h98 // TODO(edisonn): deprecate the mapper - was used when we supported multiple
100 // The mapper maps allows an object to be mapped to a different dictionary type
102 const SkPdfMapper* mapper() const;
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeDoc.h98 // TODO(edisonn): deprecate the mapper - was used when we supported multiple
100 // The mapper maps allows an object to be mapped to a different dictionary type
102 const SkPdfMapper* mapper() const;

Completed in 531 milliseconds

1234