HomeSort by relevance Sort by last modified time
    Searched refs:opts (Results 251 - 275 of 494) sorted by null

<<11121314151617181920

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
cache.h 78 explicit CacheBaseImpl(const CacheOptions &opts)
81 cache_first_state_(0), cache_gc_(opts.gc), cache_size_(0),
82 cache_limit_(opts.gc_limit > kMinCacheLimit || opts.gc_limit == 0 ?
83 opts.gc_limit : kMinCacheLimit) {}
377 explicit CacheImpl(const CacheOptions &opts)
378 : CacheBaseImpl< CacheState<A> >(opts) {}
synchronize.h 72 SynchronizeFstImpl(const Fst<A> &fst, const SynchronizeFstOptions &opts)
73 : CacheImpl<A>(opts), fst_(fst.Copy()) {
334 SynchronizeFst(const Fst<A> &fst, const SynchronizeFstOptions &opts)
335 : impl_(new SynchronizeFstImpl<A>(fst, opts)) {}
452 SynchronizeFstOptions opts; local
453 opts.gc_limit = 0; // Cache only the last state for fastest copy.
454 *ofst = SynchronizeFst<Arc>(ifst, opts);
compose.h 79 explicit ComposeFstOptions(const CacheOptions &opts) : CacheOptions(opts) {}
107 const CacheOptions &opts)
108 :CacheImpl<A>(opts), fst1_(fst1.Copy()), fst2_(fst2.Copy()) {
346 const CacheOptions &opts)
347 :ComposeFstImplBase<A>(fst1, fst2, opts) {
698 const ComposeFstOptions<T> &opts)
699 : impl_(Init(fst1, fst2, opts)) { }
768 const ComposeFstOptions<T> &opts) {
794 return new ComposeFstImpl<A, T>(fst1, fst2, opts);
    [all...]
vector-fst.h 198 static VectorFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
204 bool Write(ostream &strm, const FstWriteOptions &opts) const;
351 const FstReadOptions &opts) {
354 if (!impl->ReadHeaderAndSymbols(strm, opts, kMinFileVersion, &hdr))
366 LOG(ERROR) << "VectorFst::Read: read failed: " << opts.source;
377 LOG(ERROR) << "VectorFst::Read: read failed: " << opts.source;
421 const FstWriteOptions &opts) const {
425 WriteHeaderAndSymbols(strm, opts, kFileVersion, &hdr);
444 LOG(ERROR) << "VectorFst::Write: write failed: " << opts.source;
524 static VectorFst<A> *Read(istream &strm, const FstReadOptions &opts) {
    [all...]
concat.h 118 const ConcatFstOptions &opts) : RationalFst<A>(opts) {
register.h 44 typedef Fst<A> *(*Reader)(istream &strm, const FstReadOptions &opts);
138 const FstReadOptions &opts) = &F::Read;
union.h 119 UnionFst(const Fst<A> &fst1, const Fst<A> &fst2, const UnionFstOptions &opts)
120 : RationalFst<A>(opts) {
  /external/iproute2/tc/
m_ipt.c 55 static struct option *opts = original_opts; variable in typeref:struct:option
168 opts = original_opts;
422 c = getopt_long(argc, argv, "j:", opts, NULL);
434 opts =
435 merge_options(opts, m->extra_opts,
464 free_opts(opts);
522 free_opts(opts);
579 opts =
580 merge_options(opts, m->extra_opts,
610 free_opts(opts);
    [all...]
  /external/openfst/src/include/fst/
factor-weight.h 51 FactorWeightOptions(const CacheOptions &opts, float d,
54 : CacheOptions(opts), delta(d), mode(m), final_ilabel(il),
183 FactorWeightFstImpl(const Fst<A> &fst, const FactorWeightOptions<A> &opts)
184 : CacheImpl<A>(opts),
186 delta_(opts.delta),
187 mode_(opts.mode),
188 final_ilabel_(opts.final_ilabel),
189 final_olabel_(opts.final_olabel) {
413 FactorWeightFst(const Fst<A> &fst, const FactorWeightOptions<A> &opts)
414 : ImplToFst<Impl>(new Impl(fst, opts)) {}
    [all...]
relabel.h 215 const RelabelFstOptions &opts)
216 : CacheImpl<A>(opts), fst_(fst.Copy()),
244 const RelabelFstOptions &opts)
245 : CacheImpl<A>(opts), fst_(fst.Copy()),
406 const RelabelFstOptions &opts)
407 : ImplToFst<Impl>(new Impl(fst, ipairs, opairs, opts)) {}
419 const RelabelFstOptions &opts)
421 fst.OutputSymbols(), new_osymbols, opts)) {}
436 const RelabelFstOptions &opts)
438 new_osymbols, opts)) {}
    [all...]
vector-fst.h 207 static VectorFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
325 const FstReadOptions &opts) {
328 if (!impl->ReadHeader(strm, opts, kMinFileVersion, &hdr)) {
347 LOG(ERROR) << "VectorFst::Read: read failed: " << opts.source;
359 LOG(ERROR) << "VectorFst::Read: read failed: " << opts.source;
371 LOG(ERROR) << "VectorFst::Read: unexpected end of file: " << opts.source;
446 static VectorFst<A> *Read(istream &strm, const FstReadOptions &opts) {
447 Impl* impl = Impl::Read(strm, opts);
458 virtual bool Write(ostream &strm, const FstWriteOptions &opts) const {
459 return WriteFst(*this, strm, opts);
    [all...]
state-map.h 209 const StateMapFstOptions& opts)
210 : CacheImpl<B>(opts),
218 const StateMapFstOptions& opts)
219 : CacheImpl<B>(opts),
340 const StateMapFstOptions& opts)
341 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
343 StateMapFst(const Fst<A> &fst, C* mapper, const StateMapFstOptions& opts)
344 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
union.h 144 UnionFst(const Fst<A> &fst1, const Fst<A> &fst2, const UnionFstOptions &opts)
145 : RationalFst<A>(opts) {
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g 445 Map<String, Object> opts;
455 ( optionsSpec {opts = $optionsSpec.opts; grammar.setOptions(opts, $optionsSpec.start);}
498 optionsSpec returns [Map<String, Object> opts=new HashMap<String, Object>()]
499 : OPTIONS^ (option[$opts] SEMI!)+ RCURLY!
502 option[Map<String, Object> opts]
505 $opts.put($id.text, $optionValue.value);
585 ruleAltList[$optionsSpec.opts]
604 ((GrammarAST)$tree.getChild(0)).setBlockOptions($optionsSpec.opts);
    [all...]
AssignTokenTypesWalker.g 226 optionsSpec returns [Map<Object, Object> opts = new HashMap<Object, Object>()]
227 : ^( OPTIONS (option[$opts])+ )
230 option[Map<Object, Object> opts]
234 $opts.put(key, $optionValue.value);
  /external/skia/legacy/
Android.mk 252 src/opts/memset16_neon.S \
253 src/opts/memset32_neon.S
257 src/opts/opts_check_arm.cpp \
258 src/opts/memset.arm.S \
259 src/opts/SkBitmapProcState_opts_arm.cpp \
260 src/opts/SkBlitRow_opts_arm.cpp
263 src/opts/SkBlitRow_opts_none.cpp \
264 src/opts/SkBitmapProcState_opts_none.cpp \
265 src/opts/SkUtils_opts_none.cpp
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
task.rb 141 case opts = options[ :compile_options ]
142 when Array then opts
143 else Shellwords.shellwords( opts.to_s )
146 case opts = options[ :java_options ]
147 when Array then opts
148 else Shellwords.shellwords( opts.to_s )
  /build/tools/
generate-notice-files.py 42 opts, args = getopt.getopt(sys.argv[1:], "h")
48 for o, a in opts:
java-event-log-tags.py 38 opts, args = getopt.getopt(sys.argv[1:], "ho:")
44 for o, a in opts:
merge-event-log-tags.py 50 opts, args = getopt.getopt(sys.argv[1:], "ho:m:")
56 for o, a in opts:
  /external/dropbear/
cli-tcpfwd.c 102 if (opts.listen_fwd_all) {
132 if (opts.listen_fwd_all) {
  /external/icu4c/test/perf/normperf/
normperf.h 77 QuickCheckPerfFunction(QuickCheckFn func, ULine* srcLines,int32_t srcNumLines, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) {
87 QuickCheckPerfFunction(QuickCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) {
146 NormPerfFunction(NormFn func, int32_t opts, ULine* srcLines,int32_t srcNumLines,UBool _uselen) : options(opts) {
157 NormPerfFunction(NormFn func, int32_t opts, const UChar* source,int32_t sourceLen,UBool _uselen) : options(opts) {
  /external/icu4c/tools/
icu-svnprops-check.py 192 opts, args = getopt.getopt(argv, "fh", ("fix", "help"))
197 for opt, arg in opts:
  /external/openfst/src/include/fst/extensions/pdt/
compose.h 500 const PdtComposeOptions &opts = PdtComposeOptions()) {
501 bool expand = opts.filter_type != PAREN_FILTER;
502 bool keep_parens = opts.filter_type != EXPAND_FILTER;
507 if (opts.connect)
523 const PdtComposeOptions &opts = PdtComposeOptions()) {
524 bool expand = opts.filter_type != PAREN_FILTER;
525 bool keep_parens = opts.filter_type != EXPAND_FILTER;
530 if (opts.connect)
  /external/skia/bench/
bench_compare.py 58 opts, _ = getopt.getopt(sys.argv[1:], "f:o:n:s:ht", ['match='])
74 for option, value in opts:

Completed in 690 milliseconds

<<11121314151617181920