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

1 2 3 4 5 67 8 91011>>

  /external/openfst/src/bin/
fstcompose.cc 88 fst::ComposeOptions opts(FLAGS_connect, compose_filter);
90 s::Compose(*ifst1, *ifst2, &ofst, opts);
fstdeterminize.cc 58 s::DeterminizeOptions opts(
63 s::Determinize(*ifst, &ofst, opts);
fstdifference.cc 80 fst::DifferenceOptions opts(FLAGS_connect, cf);
82 s::Difference(*ifst1, *ifst2, &ofst, opts);
fstintersect.cc 81 fst::IntersectOptions opts(FLAGS_connect, compose_filter);
83 s::Intersect(*ifst1, *ifst2, &ofst, opts);
fstprune.cc 57 s::PruneOptions opts(weight_threshold, FLAGS_nstate, 0, FLAGS_delta);
59 s::Prune(fst, opts);
  /external/openfst/src/extensions/pdt/
pdtshortestpath.cc 76 s::PdtShortestPathOptions opts(qt, FLAGS_keep_parentheses, FLAGS_path_gc);
77 s::PdtShortestPath(*ifst, parens, &ofst, opts);
  /external/openfst/src/script/
randequivalent.cc 41 const RandGenOptions<RandArcSelection> &opts) {
44 RandEquivalentInnerArgs2 args(fst1, fst2, seed, num_paths, delta, opts);
shortest-distance.cc 26 const ShortestDistanceOptions &opts) {
27 ShortestDistanceArgs1 args(fst, distance, opts);
shortest-path.cc 26 const ShortestPathOptions &opts) {
29 ShortestPathArgs1 args(ifst, ofst, distance, opts);
  /external/qemu/
blockdev.h 29 QemuOpts *opts; member in struct:DriveInfo
48 DriveInfo *add_init_drive(const char *opts);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
BitmapFactoryTest.java 30 BitmapFactory.Options opts = new BitmapFactory.Options(); local
31 Bitmap bitmap = BitmapFactory.decodeResource(Robolectric.application.getResources(), R.drawable.an_image, opts);
35 assertEquals(100, opts.outWidth);
36 assertEquals(100, opts.outHeight);
70 BitmapFactory.Options opts = new BitmapFactory.Options(); local
71 Bitmap bitmap = BitmapFactory.decodeResource(Robolectric.application.getResources(), R.drawable.an_image, opts);
75 assertEquals(123, opts.outWidth);
76 assertEquals(456, opts.outHeight);
  /frameworks/base/native/android/
looper.cpp 32 ALooper* ALooper_prepare(int opts) {
33 return Looper::prepare(opts).get();
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
shortest-path.h 52 // state to each state in 'ifst'. 'opts' is used to specify options
64 ShortestPathOptions<Arc, Queue, ArcFilter> &opts) {
80 Queue *state_queue = opts.state_queue;
81 StateId source = opts.source == kNoStateId ? ifst.Start() : opts.source;
87 if (opts.nshortest != 1)
209 // 'ifst'. 'opts' is used to specify options such as the number of
230 ShortestPathOptions<Arc, Queue, ArcFilter> &opts) {
237 size_t n = opts.nshortest;
240 SingleShortestPath(ifst, ofst, distance, opts);
    [all...]
determinize.h 107 explicit DeterminizeFstOptions(const CacheOptions &opts, float del = kDelta)
108 : CacheOptions(opts), delta(del) {}
135 DeterminizeFstImplBase(const Fst<A> &fst, const CacheOptions &opts)
136 : CacheImpl<A>(opts), fst_(fst.Copy()) {
225 const DeterminizeFstOptions &opts)
226 : DeterminizeFstImplBase<A>(fst, opts),
227 delta_(opts.delta), common_divisor_(common_divisor),
490 DeterminizeFstImpl(const Fst<A> &fst, const DeterminizeFstOptions &opts);
546 const DeterminizeFstOptions &opts = DeterminizeFstOptions()) {
550 impl_ = new DeterminizeFsaImpl<A, D>(fst, D(), opts);
    [all...]
const-fst.h 68 static ConstFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
70 bool Write(ostream &strm, const FstWriteOptions &opts) const;
162 const FstReadOptions &opts) {
165 if (!impl->ReadHeaderAndSymbols(strm, opts, kMinFileVersion, &hdr))
180 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
189 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
197 const FstWriteOptions &opts) const {
202 WriteHeaderAndSymbols(strm, opts, kFileVersion, &hdr);
215 LOG(ERROR) << "ConstFst::Write: Write failed: " << opts.source;
276 static ConstFst<A> *Read(istream &strm, const FstReadOptions &opts) {
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
instrCommand.java 67 final IOptsParser.IOpt [] opts = parsedopts.getOpts (); local
69 if (opts == null) // this means there were args parsing errors
79 for (int o = 0; o < opts.length; ++ o)
81 final IOptsParser.IOpt opt = opts [o];
115 "invalid '" + opts [o].getName () + "' option value: " + ov);
127 // process prefixed opts:
  /external/openfst/src/include/fst/
rmepsilon.h 79 const RmEpsilonOptions<Arc, Queue> &opts)
80 : fst_(fst), distance_(distance), sd_state_(fst_, distance, opts, true),
230 const RmEpsilonOptions<Arc, Queue> &opts) {
292 rmeps_state(*fst, distance, opts);
321 if (opts.weight_threshold != Weight::Zero() ||
322 opts.state_threshold != kNoStateId)
323 Prune(fst, opts.weight_threshold, opts.state_threshold);
324 if (opts.connect && (opts.weight_threshold == Weight::Zero() |
    [all...]
  /external/iproute2/tc/
m_xt_old.c 65 static struct option *opts = original_opts; variable in typeref:struct:option
86 opts = original_opts;
242 c = getopt_long(argc, argv, "j:", opts, NULL);
254 opts =
255 merge_options(opts, m->extra_opts,
284 free_opts(opts);
342 free_opts(opts);
397 opts =
398 merge_options(opts, m->extra_opts,
428 free_opts(opts);
    [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
SnapshotDialogFragment.java 66 BitmapFactory.Options opts = new BitmapFactory.Options(); local
67 opts.inJustDecodeBounds = true;
69 jpegImage.length, opts);
71 if (opts.outWidth > 1024 || opts.outHeight > 1024) {
72 int scaleFactorX = opts.outWidth / 1024 + 1;
73 int scaleFactorY = opts.outHeight / 1024 + 1;
76 opts.inSampleSize = scaleFactor;
78 opts.inJustDecodeBounds = false;
80 jpegImage.length, opts);
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
CheckerRegistration.cpp 103 CheckerManager *ento::createCheckerManager(const AnalyzerOptions &opts,
110 for (unsigned i = 0, e = opts.CheckersControlList.size(); i != e; ++i) {
111 const std::pair<std::string, bool> &opt = opts.CheckersControlList[i];
  /external/llvm/utils/llvm-build/llvmbuild/
main.py 636 def add_magic_target_components(parser, project, opts):
637 """add_magic_target_components(project, opts) -> None
657 'Unknown' : None }.get(opts.native_target,
658 opts.native_target)
665 opts.native_target,))
668 opts.native_target,))
671 if opts.enable_targets is None:
675 if ' ' in opts.enable_targets:
676 enable_target_names = opts.enable_targets.split()
678 enable_target_names = opts.enable_targets.split(';'
    [all...]
  /external/openfst/src/include/fst/extensions/far/
print-strings.h 61 SymbolTableTextOptions opts; local
62 opts.allow_negative = true;
63 syms = SymbolTable::ReadText(symbols_fname, opts);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapsAlphaActivity.java 56 BitmapFactory.Options opts = new BitmapFactory.Options(); local
57 opts.inPreferredConfig = Bitmap.Config.ARGB_8888;
58 mBitmap3 = BitmapFactory.decodeResource(c.getResources(), R.drawable.sunset3, opts);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesm.h 105 inline void options_on (Item_Options opts) {
106 OnError (::item_opts_on (item, opts));
110 inline void options_off (Item_Options opts) {
111 OnError (::item_opts_off (item, opts));
120 inline void set_options (Item_Options opts) {
121 OnError (::set_item_opts (item, opts));
447 inline void options_on (Menu_Options opts) {
448 OnError (::menu_opts_on (menu,opts));
451 inline void options_off(Menu_Options opts) {
452 OnError (::menu_opts_off(menu,opts));
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
cursesm.h 105 inline void options_on (Item_Options opts) {
106 OnError (::item_opts_on (item, opts));
110 inline void options_off (Item_Options opts) {
111 OnError (::item_opts_off (item, opts));
120 inline void set_options (Item_Options opts) {
121 OnError (::set_item_opts (item, opts));
447 inline void options_on (Menu_Options opts) {
448 OnError (::menu_opts_on (menu,opts));
451 inline void options_off(Menu_Options opts) {
452 OnError (::menu_opts_off(menu,opts));
    [all...]

Completed in 4325 milliseconds

1 2 3 4 5 67 8 91011>>