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

1 2 3 4 5 67 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/bin/
python2.7-config 17 opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
21 if not opts:
27 opt_flags = [flag for (flag, val) in opts]
  /prebuilts/python/linux-x86/2.7.5/bin/
python-config 17 opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
21 if not opts:
27 opt_flags = [flag for (flag, val) in opts]
python2-config 17 opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
21 if not opts:
27 opt_flags = [flag for (flag, val) in opts]
python2.7-config 17 opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
21 if not opts:
27 opt_flags = [flag for (flag, val) in opts]
  /external/qemu/android/
qemulator.c 22 static double get_default_scale( AndroidOptions* opts );
48 AndroidOptions* opts = emulator->opts; local
50 if ( !emulator->window && !opts->no_window ) {
52 double scale = get_default_scale(emulator->opts);
102 if (emulator->opts->no_window)
136 AndroidOptions* opts )
141 emulator->keyboard = skin_keyboard_create(opts->charmap, opts->raw_keys);
145 emulator->opts[0] = opts[0]
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
Animation.java 98 ActivityOptions opts = ActivityOptions.makeCustomAnimation(Animation.this,
101 startActivity(new Intent(Animation.this, AlertDialogSamples.class), opts.toBundle());
112 ActivityOptions opts = ActivityOptions.makeCustomAnimation(Animation.this,
115 startActivity(new Intent(Animation.this, AlertDialogSamples.class), opts.toBundle());
123 ActivityOptions opts = ActivityOptions.makeScaleUpAnimation(
126 startActivity(new Intent(Animation.this, AlertDialogSamples.class), opts.toBundle());
142 ActivityOptions opts = ActivityOptions.makeThumbnailScaleUpAnimation(
145 startActivity(new Intent(Animation.this, AlertDialogSamples.class), opts.toBundle());
  /external/chromium_org/tools/grit/grit/tool/
interface.py 42 def SetOptions(self, opts):
43 self.o = opts
buildinfo.py 27 def Run(self, opts, args):
38 self.SetOptions(opts)
40 res_tree = grd_reader.Parse(opts.input, debug=opts.extra_verbose)
  /external/chromium_org/tools/json_schema_compiler/
compiler.py 145 (opts, filenames) = parser.parse_args()
151 if opts.generator != 'cpp-bundle' and len(filenames) > 1:
156 result = GenerateSchema(opts.generator, filenames, opts.root, opts.destdir,
157 opts.namespace, opts.dart_overrides_dir)
158 if not opts.destdir:
  /external/qemu/
qemu-char.c 252 static CharDriverState *qemu_chr_open_null(QemuOpts *opts)
574 static CharDriverState *qemu_chr_open_android_modem(QemuOpts* opts)
580 static CharDriverState *qemu_chr_open_android_gps(QemuOpts* opts)
587 static CharDriverState *qemu_chr_open_android_kmsg(QemuOpts* opts)
592 static CharDriverState *qemu_chr_open_android_qemud(QemuOpts* opts)
695 static CharDriverState *qemu_chr_open_file_out(QemuOpts *opts)
699 TFR(fd_out = qemu_open(qemu_opt_get(opts, "path"),
706 static CharDriverState *qemu_chr_open_pipe(QemuOpts *opts)
710 const char *filename = qemu_opt_get(opts, "path");
734 static CharDriverState *qemu_chr_open_fdpair(QemuOpts* opts)
2395 QemuOpts *opts; local
2649 QemuOpts *opts; local
    [all...]
  /external/dropbear/
common-runopts.c 32 runopts opts; /* GLOBAL */ variable
  /external/e2fsprogs/lib/ext2fs/
io_manager.c 22 errcode_t io_channel_set_options(io_channel channel, const char *opts)
29 if (!opts)
35 options = malloc(strlen(opts)+1);
38 strcpy(options, opts);
  /external/emma/core/java12/com/vladium/emma/data/
mergeCommand.java 64 final IOptsParser.IOpt [] opts = parsedopts.getOpts (); local
66 if (opts == null) // this means there were args parsing errors
77 for (int o = 0; o < opts.length; ++ o)
79 final IOptsParser.IOpt opt = opts [o];
99 // process prefixed opts:
  /external/openfst/src/bin/
fstdraw.cc 80 fst::SymbolTableTextOptions opts; local
81 opts.allow_negative = FLAGS_allow_negative_labels;
84 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts);
89 osyms = SymbolTable::ReadText(FLAGS_osymbols, opts);
fstprint.cc 73 fst::SymbolTableTextOptions opts; local
74 opts.allow_negative = FLAGS_allow_negative_labels;
77 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts);
82 osyms = SymbolTable::ReadText(FLAGS_osymbols, opts);
  /external/openfst/src/script/
prune.cc 26 void Prune(MutableFstClass *fst, const PruneOptions &opts) {
27 PruneArgs1 args(fst, opts);
34 const PruneOptions &opts) {
35 PruneArgs2 args(ifst, fst, opts);
  /external/openfst/src/test/
fst_test.h 242 FstWriteOptions opts; local
243 opts.source = aligned;
244 opts.align = true;
245 CHECK(fst.Write(ostr, opts));
248 FstReadOptions opts; local
249 opts.mode = FstReadOptions::ReadMode("map");
250 opts.source = aligned;
251 G *gfst = G::Read(istr, opts);
261 FstWriteOptions opts; local
262 opts.source = aligned
267 FstReadOptions opts; local
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
expanded-fst.h 38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) {
39 FstReadOptions ropts(opts);
42 hdr = *opts.header;
44 if (!hdr.Read(strm, opts.source))
closure.h 76 ClosureFstOptions(const RationalFstOptions &opts, ClosureType t)
77 : RationalFstOptions(opts), type(t) {}
106 ClosureFst(const Fst<A> &fst, const ClosureFstOptions &opts)
107 : RationalFst<A>(opts) {
108 Impl()->InitClosure(fst, opts.type);
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasession_unittest.cc 367 MediaSessionOptions opts; local
368 opts.has_video = true;
370 f1_.CreateOffer(opts, NULL));
384 f2_.CreateAnswer(offer.get(), opts, NULL));
439 MediaSessionOptions opts; local
440 opts.has_video = true;
443 offer(f1_.CreateOffer(opts, NULL));
481 MediaSessionOptions opts; local
482 opts.has_audio = true;
483 opts.has_video = true
511 MediaSessionOptions opts; local
547 MediaSessionOptions opts; local
583 MediaSessionOptions opts; local
629 MediaSessionOptions opts; local
662 MediaSessionOptions opts; local
721 MediaSessionOptions opts; local
749 MediaSessionOptions opts; local
777 MediaSessionOptions opts; local
807 MediaSessionOptions opts; local
834 MediaSessionOptions opts; local
957 MediaSessionOptions opts; local
974 MediaSessionOptions opts; local
992 MediaSessionOptions opts; local
1027 MediaSessionOptions opts; local
1174 MediaSessionOptions opts; local
1302 MediaSessionOptions opts; local
1352 MediaSessionOptions opts; local
1424 MediaSessionOptions opts; local
1478 MediaSessionOptions opts; local
1536 MediaSessionOptions opts; local
    [all...]
  /external/openfst/src/include/fst/
difference.h 40 explicit DifferenceFstOptions(const CacheOptions &opts,
73 const CacheOptions &opts = CacheOptions()) {
91 const DifferenceFstOptions<A, M, F, T> &opts) {
95 ComposeFstOptions<A, R> copts(opts);
97 opts.matcher1);
99 MATCHER_REWRITE_ALWAYS, opts.matcher2);
162 const DifferenceOptions &opts = DifferenceOptions()) {
165 if (opts.filter_type == AUTO_FILTER) {
169 } else if (opts.filter_type == SEQUENCE_FILTER) {
173 } else if (opts.filter_type == ALT_SEQUENCE_FILTER)
    [all...]
closure.h 84 ClosureFstOptions(const RationalFstOptions &opts, ClosureType t)
85 : RationalFstOptions(opts), type(t) {}
114 ClosureFst(const Fst<A> &fst, const ClosureFstOptions &opts)
115 : RationalFst<A>(opts) {
116 GetImpl()->InitClosure(fst, opts.type);
  /external/sepolicy/tools/
checkfc.c 33 struct selinux_opt opts[] = { local
80 opts[1].value = contextFile;
82 sehnd = selabel_open(backend, opts, 2);
  /external/chromium_org/chrome/common/extensions/docs/server2/
link_converter.py 80 opts, argv = parser.parse_args()
81 if opts.file:
82 _ConvertFile(opts.file, opts.out)
89 _ConvertFile(os.path.join(root, name), opts.out)
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 110 final BitmapFactory.Options opts = new BitmapFactory.Options(); local
111 opts.inSampleSize = Math.max(bounds.x / maxSize, bounds.y / maxSize);
112 result.bitmap = decodeStream(factory, null, opts);
139 * @param opts null-ok; Options that control downsampling and whether the
142 * decoded, or, if opts is non-null, if opts requested only the
143 * size be returned (in opts.outWidth and opts.outHeight)
146 final BitmapFactory.Options opts) throws FileNotFoundException {
156 final Bitmap originalBitmap = BitmapFactory.decodeStream(is, outPadding, opts);
199 final BitmapFactory.Options opts = new BitmapFactory.Options(); local
    [all...]

Completed in 434 milliseconds

1 2 3 4 5 67 8 91011>>