/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ThumbnailLoadTask.java | 120 final BitmapFactory.Options opts = new BitmapFactory.Options(); local 121 opts.inJustDecodeBounds = true; 122 opts.inDensity = DisplayMetrics.DENSITY_LOW; 124 BitmapFactory.decodeFileDescriptor(fd.getFileDescriptor(), null, opts); local 125 if (isCancelled() || opts.outWidth == -1 || opts.outHeight == -1) { 129 opts.inJustDecodeBounds = false; 133 final int wDivider = Math.max(opts.outWidth / mWidth, 1); 134 final int hDivider = Math.max(opts.outHeight / mHeight, 1); 135 opts.inSampleSize = Math.min(wDivider, hDivider) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
opts.h | 266 bool (*handler) (struct gcc_options *opts, 325 extern void init_options_struct (struct gcc_options *opts, 332 extern void decode_options (struct gcc_options *opts, 338 extern int option_enabled (int opt_idx, void *opts); 341 extern void set_option (struct gcc_options *opts, 345 extern void *option_flag_var (int opt_index, struct gcc_options *opts); 346 bool handle_generated_option (struct gcc_options *opts, 357 extern void read_cmdline_option (struct gcc_options *opts, 368 struct gcc_options *opts, 373 extern bool common_handle_option (struct gcc_options *opts, [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
clean-header-guards | 7 OptionParser.new do |opts| 8 opts.banner = "Usage: clean-header-guards [options]" 10 opts.on("--prefix [PREFIX]", "Append a header prefix to all guards") do |prefix|
|
/external/libnl/lib/route/sch/ |
fifo.c | 105 struct tc_fifo_qopt opts; local 116 memset(&opts, 0, sizeof(opts)); 117 opts.limit = fifo->qf_limit; 119 if (nlmsg_append(msg, &opts, sizeof(opts), NL_DONTPAD) < 0)
|
tbf.c | 70 struct tc_tbf_qopt opts; local 73 nla_memcpy(&opts, tb[TCA_TBF_PARMS], sizeof(opts)); 74 tbf->qt_limit = opts.limit; 75 tbf->qt_mpu = opts.rate.mpu; 77 rtnl_copy_ratespec(&tbf->qt_rate, &opts.rate); 78 tbf->qt_rate_txtime = opts.buffer; 79 bufsize = rtnl_tc_calc_bufsize(nl_ticks2us(opts.buffer), 80 opts.rate.rate); 83 rtnl_copy_ratespec(&tbf->qt_peakrate, &opts.peakrate) 156 struct tc_tbf_qopt opts; local [all...] |
/external/openfst/src/bin/ |
fstrelabel.cc | 75 SymbolTableTextOptions opts; 76 opts.allow_negative = FLAGS_allow_negative_labels; 81 : SymbolTable::ReadText(FLAGS_isymbols, opts); 84 : SymbolTable::ReadText(FLAGS_relabel_isymbols, opts); 89 : SymbolTable::ReadText(FLAGS_osymbols, opts); 92 : SymbolTable::ReadText(FLAGS_relabel_osymbols, opts);
|
/external/openfst/src/lib/ |
mapped-file.cc | 61 MappedFile* MappedFile::Map(istream* s, const FstReadOptions &opts, 64 if (opts.mode == FstReadOptions::MAP && spos >= 0 && 67 int fd = open(opts.source.c_str(), O_RDONLY); 83 << " from " << opts.source.c_str() << " to addr " << map; 93 if (opts.mode != FstReadOptions::READ) { 95 << opts.source << " could not be honored, reading instead.";
|
/prebuilts/python/darwin-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]
|
/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/chromium_org/tools/gyp/ |
gyptest.py | 171 opts, args = parser.parse_args(argv[1:]) 173 if opts.chdir: 174 os.chdir(opts.chdir) 176 if opts.path: 177 extra_path = [os.path.abspath(p) for p in opts.path] 182 if not opts.all: 197 if opts.list: 202 CommandRunner.verbose = not opts.quiet 203 CommandRunner.active = not opts.no_exec 207 if not opts.quiet [all...] |
/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); 103 if (emulator->opts->no_window) 137 AndroidOptions* opts ) 142 emulator->keyboard = skin_keyboard_create(opts->charmap, opts->raw_keys); 146 emulator->opts[0] = opts[0] [all...] |
/external/skia/ |
Android.mk | 545 $(LOCAL_PATH)/src/opts \ 587 src/opts/memset.arm.S \ 588 src/opts/SkBitmapProcState_opts_arm.cpp \ 589 src/opts/SkBlitMask_opts_arm.cpp \ 590 src/opts/SkBlitRow_opts_arm.cpp \ 591 src/opts/SkBlurImage_opts_arm.cpp \ 592 src/opts/SkMorphology_opts_arm.cpp \ 593 src/opts/SkUtils_opts_arm.cpp \ 594 src/opts/SkXfermode_opts_arm.cpp 598 src/opts/memset16_neon.S [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/content/renderer/p2p/ |
ipc_socket_factory.h | 36 int opts) OVERRIDE; 42 int opts) OVERRIDE;
|
/external/chromium_org/remoting/client/plugin/ |
pepper_packet_socket_factory.h | 26 int opts) OVERRIDE; 32 int opts) OVERRIDE;
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
basicpacketsocketfactory.h | 49 const SocketAddress& local_address, int min_port, int max_port, int opts); 52 const ProxyInfo& proxy_info, const std::string& user_agent, int opts);
|
/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/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/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/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
record.c | 76 struct perf_record_opts *opts) 85 if (opts->group) 89 opts->no_inherit = true; 92 perf_evsel__config(evsel, opts);
|