/external/qemu/hw/ |
msmouse.h | 2 CharDriverState *qemu_chr_open_msmouse(QemuOpts *opts);
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
signalbar.cpp | 30 QStyleOptionProgressBar opts; local 43 opts.minimum = -95; 44 opts.maximum = -35; 45 if (signal < opts.minimum) 46 opts.progress = opts.minimum; 47 else if (signal > opts.maximum) 48 opts.progress = opts.maximum; 50 opts.progress = signal [all...] |
/external/qemu/android/ |
main-common.h | 37 void parse_keyset(const char* keyset, AndroidOptions* opts); 51 AndroidOptions* opts, 61 AndroidOptions* opts); 67 void sanitizeOptions( AndroidOptions* opts ); 71 * opts - Options passed to the main() 77 struct AvdInfo* createAVD(AndroidOptions* opts, int* inAndroidBuild); 83 AndroidOptions* opts ); 89 * opts - Options passed to the main() 94 AndroidOptions* opts, int inAndroidBuild); 99 void handle_ui_options( AndroidOptions* opts ); [all...] |
main.c | 181 AndroidOptions opts[1]; local 188 if ( android_parse_options( &argc, &argv, opts ) < 0 ) { 196 handle_ui_options(opts); 246 if (opts->version) { 266 if (opts->snapshot_list) { 267 if (opts->snapstorage == NULL) { 269 avd = createAVD(opts, &inAndroidBuild); 270 opts->snapstorage = avdInfo_getSnapStoragePath(avd); 271 if (opts->snapstorage != NULL) { 272 D("autoconfig: -snapstorage %s", opts->snapstorage) [all...] |
/external/chromium_org/chrome/tools/build/ |
appid.py | 22 def GenerateAppIdHeader(opts): 23 contents = GENERATED_APPID_INCLUDE_FILE_CONTENTS % opts.appid 26 ofp = open(opts.output_file, 'r') 33 open(opts.output_file, 'w').write(contents) 42 (opts, args) = parser.parse_args() 44 if opts.appid is None or not opts.output_file: 50 GenerateAppIdHeader(opts)
|
/external/openssh/ |
auth-options.c | 95 auth_parse_options(struct passwd *pw, char *opts, char *file, u_long linenum) 103 if (!opts) 106 while (*opts && *opts != ' ' && *opts != '\t') { 108 if (strncasecmp(opts, cp, strlen(cp)) == 0) { 110 opts += strlen(cp); 114 if (strncasecmp(opts, cp, strlen(cp)) == 0) { 117 opts += strlen(cp); 121 if (strncasecmp(opts, cp, strlen(cp)) == 0) [all...] |
/frameworks/base/graphics/java/android/graphics/ |
BitmapFactory.java | 365 * @param opts null-ok; Options that control downsampling and whether the 368 * decoded, or, if opts is non-null, if opts requested only the 369 * size be returned (in opts.outWidth and opts.outHeight) 371 public static Bitmap decodeFile(String pathName, Options opts) { 376 bm = decodeStream(stream, null, opts); 410 InputStream is, Rect pad, Options opts) { 412 if (opts == null) { 413 opts = new Options() [all...] |
/external/chromium_org/third_party/mesa/src/ |
common.py | 77 def AddOptions(opts): 86 opts.Add(EnumOption('build', 'build type', 'debug', 88 opts.Add(BoolOption('verbose', 'verbose output', 'no')) 89 opts.Add(EnumOption('machine', 'use machine-specific assembly code', default_machine, 91 opts.Add(EnumOption('platform', 'target platform', host_platform, 93 opts.Add(BoolOption('embedded', 'embedded build', 'no')) 94 opts.Add('toolchain', 'compiler toolchain', default_toolchain) 95 opts.Add(BoolOption('gles', 'EXPERIMENTAL: enable OpenGL ES support', 'no')) 96 opts.Add(BoolOption('llvm', 'use LLVM', default_llvm)) 97 opts.Add(BoolOption('openmp', 'EXPERIMENTAL: compile with openmp (swrast)', 'no') [all...] |
/external/mesa3d/ |
common.py | 77 def AddOptions(opts): 86 opts.Add(EnumOption('build', 'build type', 'debug', 88 opts.Add(BoolOption('verbose', 'verbose output', 'no')) 89 opts.Add(EnumOption('machine', 'use machine-specific assembly code', default_machine, 91 opts.Add(EnumOption('platform', 'target platform', host_platform, 93 opts.Add(BoolOption('embedded', 'embedded build', 'no')) 94 opts.Add('toolchain', 'compiler toolchain', default_toolchain) 95 opts.Add(BoolOption('gles', 'EXPERIMENTAL: enable OpenGL ES support', 'no')) 96 opts.Add(BoolOption('llvm', 'use LLVM', default_llvm)) 97 opts.Add(BoolOption('openmp', 'EXPERIMENTAL: compile with openmp (swrast)', 'no') [all...] |
/external/qemu/ |
qemu_socket.h | 12 int inet_listen_opts(QemuOpts *opts, int port_offset); 15 int inet_connect_opts(QemuOpts *opts); 17 int inet_dgram_opts(QemuOpts *opts); 20 int unix_listen_opts(QemuOpts *opts); 22 int unix_connect_opts(QemuOpts *opts);
|
qemu-sockets-android.c | 80 int inet_listen_opts(QemuOpts *opts, int port_offset) 92 const char* socket_fd = qemu_opt_get(opts, "socket"); 98 if ((qemu_opt_get(opts, "host") == NULL) || 99 (qemu_opt_get(opts, "port") == NULL)) { 103 pstrcpy(port, sizeof(port), qemu_opt_get(opts, "port")); 104 addr = qemu_opt_get(opts, "host"); 106 to = qemu_opt_get_number(opts, "to", 0); 107 if (qemu_opt_get_bool(opts, "ipv4", 0)) 109 if (qemu_opt_get_bool(opts, "ipv6", 0)) 179 qemu_opt_set(opts, "host", uaddr) 446 QemuOpts *opts; local 474 QemuOpts *opts; local 557 QemuOpts *opts; local 586 QemuOpts *opts; local [all...] |
qemu-option.c | 515 QemuOpts *opts; member in struct:QemuOpt 527 static QemuOpt *qemu_opt_find(QemuOpts *opts, const char *name) 531 QTAILQ_FOREACH_REVERSE(opt, &opts->head, QemuOptHead, next) { 539 const char *qemu_opt_get(QemuOpts *opts, const char *name) 541 QemuOpt *opt = qemu_opt_find(opts, name); 545 int qemu_opt_get_bool(QemuOpts *opts, const char *name, int defval) 547 QemuOpt *opt = qemu_opt_find(opts, name); 555 uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval) 557 QemuOpt *opt = qemu_opt_find(opts, name); 565 uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval 655 QemuOpts *opts; local 686 QemuOpts *opts = NULL; local 717 QemuOpts *opts, *next_opts; local 732 QemuOpts *opts; local 826 QemuOpts *opts; local 895 QemuOpts *opts; local 965 QemuOpts *opts; local [all...] |
qemu-option.h | 107 const char *qemu_opt_get(QemuOpts *opts, const char *name); 108 int qemu_opt_get_bool(QemuOpts *opts, const char *name, int defval); 109 uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval); 110 uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval); 111 int qemu_opt_set(QemuOpts *opts, const char *name, const char *value); 113 int qemu_opt_foreach(QemuOpts *opts, qemu_opt_loopfunc func, void *opaque, 119 void qemu_opts_loc_restore(QemuOpts *opts); 122 const char *qemu_opts_id(QemuOpts *opts); 123 void qemu_opts_del(QemuOpts *opts); 124 int qemu_opts_validate(QemuOpts *opts, const QemuOptDesc *desc) [all...] |
/external/openfst/src/include/fst/script/ |
shortest-path.h | 60 const ShortestPathOptions &opts = args->arg4; local 67 *(opts.weight_threshold.GetWeight<Weight>()); 69 switch (opts.queue_type) { 75 queue, ArcFilter(), opts.nshortest, opts.unique, 76 opts.has_distance, opts.delta, opts.first_path, 77 weight_threshold, opts.state_threshold); 87 queue, ArcFilter(), opts.nshortest, opts.unique [all...] |
randgen.h | 41 const RandGenOptions<RandArcSelection> &opts = args->arg4; local 43 if (opts.arc_selector == UNIFORM_ARC_SELECTOR) { 46 ropts(arc_selector, opts.max_length, 47 opts.npath, opts.weighted); 49 } else if (opts.arc_selector == FAST_LOG_PROB_ARC_SELECTOR) { 52 ropts(arc_selector, opts.max_length, 53 opts.npath, opts.weighted); 58 ropts(arc_selector, opts.max_length [all...] |
/external/chromium_org/tools/grit/grit/tool/ |
count.py | 21 def Run(self, opts, args): 22 self.SetOptions(opts) 25 res_tree = grd_reader.Parse(opts.input, debug=opts.extra_verbose)
|
/external/chromium_org/tools/ |
prepare-bisect-perf-regression.py | 52 (opts, args) = parser.parse_args() 54 if not opts.working_directory: 60 if not bisect_utils.CheckIfBisectDepotExists(opts): 62 bisect_utils.CreateBisectDirectoryAndSetupDepot(opts,
|
omahaproxy.py | 68 (opts, args) = parser.parse_args() 72 if os_versions['os'] != opts.os: 76 if version['channel'] != opts.channel: 79 if opts.field not in version: 82 print version[opts.field] 86 opts.field, opts.os, opts.channel)
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
preview.py | 65 (opts, argv) = parser.parse_args() 67 if opts.render: 68 if opts.render.find('#') >= 0: 69 (path, iterations) = opts.render.rsplit('#', 1) 72 path = opts.render 75 if opts.time: 86 if opts.time: 92 print('Starting previewserver on port %s' % opts.port) 96 print(' http://localhost:%s/extensions/' % opts.port) 100 print(' http://localhost:%s/apps/' % opts.port [all...] |
/external/chromium/build/linux/ |
rewrite_dirs.py | 22 def RewritePath(path, opts): 24 sysroot = opts.sysroot 25 prefix = opts.strip_prefix 34 def RewriteLine(line, opts): 46 args[i] = RewritePath(args[i], opts) 51 args[i] = prefix + RewritePath(args[i][len(prefix):], opts) 60 opts, args = parser.parse_args(argv[1:]) 63 line = RewriteLine(line.strip(), opts)
|
/external/chromium_org/build/linux/ |
rewrite_dirs.py | 22 def RewritePath(path, opts): 24 sysroot = opts.sysroot 25 prefix = opts.strip_prefix 35 def RewriteLine(line, opts): 47 args[i] = RewritePath(args[i], opts) 52 args[i] = prefix + RewritePath(args[i][len(prefix):], opts) 62 opts, args = parser.parse_args(argv[1:]) 65 line = RewriteLine(line.strip(), opts)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/ |
prettify.rb | 14 OptionParser.new do |opts| 15 opts.banner = "Usage: #{File.basename($0)} [options] [patch-file]" 17 opts.separator "" 19 opts.on("--html-exceptions", "Print exceptions to stdout as HTML") { |h| options[:html_exceptions] = h }
|
/frameworks/base/core/java/android/app/ |
ActivityOptions.java | 154 ActivityOptions opts = new ActivityOptions(); local 155 opts.mPackageName = context.getPackageName(); 156 opts.mAnimationType = ANIM_CUSTOM; 157 opts.mCustomEnterResId = enterResId; 158 opts.mCustomExitResId = exitResId; 159 opts.setListener(handler, listener); 160 return opts; 209 ActivityOptions opts = new ActivityOptions(); local 210 opts.mPackageName = source.getContext().getPackageName(); 211 opts.mAnimationType = ANIM_SCALE_UP 293 ActivityOptions opts = new ActivityOptions(); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
getopt.py | 52 """getopt(args, options[, long_options]) -> opts, args 78 opts = [] 88 opts, args = do_longs(opts, args[0][2:], longopts, args[1:]) 90 opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:]) 92 return opts, args 95 """getopt(args, options[, long_options]) -> opts, args 109 opts = [] 131 opts, args = do_longs(opts, args[0][2:], longopts, args[1:] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
getopt.py | 52 """getopt(args, options[, long_options]) -> opts, args 78 opts = [] 88 opts, args = do_longs(opts, args[0][2:], longopts, args[1:]) 90 opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:]) 92 return opts, args 95 """getopt(args, options[, long_options]) -> opts, args 109 opts = [] 131 opts, args = do_longs(opts, args[0][2:], longopts, args[1:] [all...] |