/external/mesa3d/bin/ |
mklib | 78 OPTS=$1 90 ar ${OPTS} ${LIBNAME} ${OBJECTS} 123 echo ' -altopts OPTS alternate options to override all others' 328 OPTS="-mx32 ${OPTS}" 332 OPTS="-m64 ${OPTS}" 336 OPTS="-m32 ${OPTS}" 345 OPTS="-Xlinker -Bsymbolic -shared [all...] |
/external/chromium-trace/catapult/third_party/flot/ |
jquery.flot.time.min.js | 7 (function($){var options={xaxis:{timezone:null,timeformat:null,twelveHourClock:false,monthNames:null}};function floorInBase(n,base){return base*Math.floor(n/base)}function formatDate(d,fmt,monthNames,dayNames){if(typeof d.strftime=="function"){return d.strftime(fmt)}var leftPad=function(n,pad){n=""+n;pad=""+(pad==null?"0":pad);return n.length==1?pad+n:n};var r=[];var escape=false;var hours=d.getHours();var isAM=hours<12;if(monthNames==null){monthNames=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}if(dayNames==null){dayNames=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]}var hours12;if(hours>12){hours12=hours-12}else if(hours==0){hours12=12}else{hours12=hours}for(var i=0;i<fmt.length;++i){var c=fmt.charAt(i);if(escape){switch(c){case"a":c=""+dayNames[d.getDay()];break;case"b":c=""+monthNames[d.getMonth()];break;case"d":c=leftPad(d.getDate());break;case"e":c=leftPad(d.getDate()," ");break;case"h":case"H":c=leftPad(hours);break;case"I":c=leftPad(hours12);break;case"l":c=leftPad(hours12," ");break;case"m":c=leftPad(d.getMonth()+1);break;case"M":c=leftPad(d.getMinutes());break;case"q":c=""+(Math.floor(d.getMonth()/3)+1);break;case"S":c=leftPad(d.getSeconds());break;case"y":c=leftPad(d.getFullYear()%100);break;case"Y":c=""+d.getFullYear();break;case"p":c=isAM?""+"am":""+"pm";break;case"P":c=isAM?""+"AM":""+"PM";break;case"w":c=""+d.getDay();break}r.push(c);escape=false}else{if(c=="%"){escape=true}else{r.push(c)}}}return r.join("")}function makeUtcWrapper(d){function addProxyMethod(sourceObj,sourceMethod,targetObj,targetMethod){sourceObj[sourceMethod]=function(){return targetObj[targetMethod].apply(targetObj,arguments)}}var utc={date:d};if(d.strftime!=undefined){addProxyMethod(utc,"strftime",d,"strftime")}addProxyMethod(utc,"getTime",d,"getTime");addProxyMethod(utc,"setTime",d,"setTime");var props=["Date","Day","FullYear","Hours","Milliseconds","Minutes","Month","Seconds"];for(var p=0;p<props.length;p++){addProxyMethod(utc,"get"+props[p],d,"getUTC"+props[p]);addProxyMethod(utc,"set"+props[p],d,"setUTC"+props[p])}return utc}function dateGenerator(ts,opts){if(opts.timezone=="browser"){return new Date(ts)}else if(!opts.timezone||opts.timezone=="utc"){return makeUtcWrapper(new Date(ts))}else if(typeof timezoneJS!="undefined"&&typeof timezoneJS.Date!="undefined"){var d=new timezoneJS.Date;d.setTimezone(opts.timezone);d.setTime(ts);return d}else{return makeUtcWrapper(new Date(ts))}}var timeUnitSize={second:1e3,minute:60*1e3,hour:60*60*1e3,day:24*60*60*1e3,month:30*24*60*60*1e3,quarter:3*30*24*60*60*1e3,year:365.2425*24*60*60*1e3};var baseSpec=[[1,"second"],[2,"second"],[5,"second"],[10,"second"],[30,"second"],[1,"minute"],[2,"minute"],[5,"minute"],[10,"minute"],[30,"minute"],[1,"hour"],[2,"hour"],[4,"hour"],[8,"hour"],[12,"hour"],[1,"day"],[2,"day"],[3,"day"],[.25,"month"],[.5,"month"],[1,"month"],[2,"month"]];var specMonths=baseSpec.concat([[3,"month"],[6,"month"],[1,"year"]]);var specQuarters=baseSpec.concat([[1,"quarter"],[2,"quarter"],[1,"year"]]);function init(plot){plot.hooks.processOptions.push(function(plot,options){$.each(plot.getAxes(),function(axisName,axis){var opts=axis.options;if(opts.mode=="time"){axis.tickGenerator=function(axis){var ticks=[];var d=dateGenerator(axis.min,opts);var minSize=0;var spec=opts.tickSize&&opts.tickSize[1]==="quarter"||opts.minTickSize&&opts.minTickSize[1]==="quarter"?specQuarters:specMonths (…) [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-d10v/ |
d10v.exp | 115 set opts(as) {} 116 set opts(ld) {} 117 set opts(xfail) {} 118 set opts(target) {} 119 set opts(notarget) {} 120 set opts(name) {} 121 set opts(source) {} 127 if ![info exists opts($opt_name)] { 148 if [string length $opts($opt_name)] { 155 set opts($opt_name) [concat $opts($opt_name) $opt_val [all...] |
/external/autotest/server/site_tests/firmware_ShellBall/ |
control | 27 opts = dict([[k, v] for (k, _, v) in [x.partition('=') for x in args]]) 34 if 'shellball_path' and 'shellball_name' not in opts: 40 shellball_path=opts['shellball_path'], 41 shellball_name=opts['shellball_name'],
|
/external/libnl/lib/route/sch/ |
sfq.c | 58 struct tc_sfq_qopt *opts; local 63 if (qdisc->q_opts->d_size < sizeof(*opts)) 70 opts = (struct tc_sfq_qopt *) qdisc->q_opts->d_data; 72 sfq->qs_quantum = opts->quantum; 73 sfq->qs_perturb = opts->perturb_period; 74 sfq->qs_limit = opts->limit; 75 sfq->qs_divisor = opts->divisor; 76 sfq->qs_flows = opts->flows; 111 struct tc_sfq_qopt opts; local 122 memset(&opts, 0, sizeof(opts)) [all...] |
/external/toybox/toys/other/ |
insmod.c | 19 #define finit_module(fd, opts, flags) syscall(SYS_finit_module, fd, opts, flags) 20 #define init_module(mod, len, opts) syscall(SYS_init_module, mod, len, opts)
|
/frameworks/compile/libbcc/tests/debuginfo/host-tests/ |
simple_func_invoke_and_crash.cpp | 1 // RUN: %clangxx %s -g -fexceptions %extra-clang-opts -o %t
|
/packages/apps/Messaging/tools/ |
buglesql | 20 opts='-column -header' 26 opts='-column -header' 30 opts='-line' 43 adb shell su -c sqlite3 $opts data/data/com.android.messaging/databases/bugle_db "$1"
|
mmssql | 20 opts='-column -header' 26 opts='-column -header' 30 opts='-line' 43 adb shell su -c sqlite3 $opts data/data/com.android.providers.telephony/databases/mmssms.db "$1"
|
/frameworks/base/core/java/android/app/ |
ActivityOptions.java | 284 ActivityOptions opts = new ActivityOptions(); local 285 opts.mPackageName = context.getPackageName(); 286 opts.mAnimationType = ANIM_CUSTOM; 287 opts.mCustomEnterResId = enterResId; 288 opts.mCustomExitResId = exitResId; 289 opts.setOnAnimationStartedListener(handler, listener); 290 return opts; 310 ActivityOptions opts = new ActivityOptions(); local 311 opts.mPackageName = context.getPackageName(); 312 opts.mAnimationType = ANIM_CUSTOM_IN_PLACE 389 ActivityOptions opts = new ActivityOptions(); local 417 ActivityOptions opts = new ActivityOptions(); local 500 ActivityOptions opts = new ActivityOptions(); local 567 ActivityOptions opts = new ActivityOptions(); local 587 ActivityOptions opts = new ActivityOptions(); local 642 ActivityOptions opts = new ActivityOptions(); local 682 ActivityOptions opts = new ActivityOptions(); local 705 final ActivityOptions opts = new ActivityOptions(); local 715 final ActivityOptions opts = new ActivityOptions(); local [all...] |
/external/libselinux/src/ |
label_internal.h | 20 int selabel_file_init(struct selabel_handle *rec, const struct selinux_opt *opts, 22 int selabel_media_init(struct selabel_handle *rec, const struct selinux_opt *opts, 24 int selabel_x_init(struct selabel_handle *rec, const struct selinux_opt *opts, 27 const struct selinux_opt *opts, unsigned nopts) hidden; 29 const struct selinux_opt *opts, unsigned nopts) hidden;
|
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...] |
/external/iptables/extensions/ |
libip6t_dst.c | 18 " --dst-opts TYPE[:LEN][,TYPE[:LEN]...]\n" 27 {.name = "dst-opts", .id = O_DSTOPTS, .type = XTTYPE_STRING}, 56 parse_options(const char *optsstr, uint16_t *opts) 81 opts[i] = (parse_opts_num(cp, "opt") & 0xFF) << 8; 83 if (opts[i] == 0) 86 opts[i] |= parse_opts_num(range, "length") & 0xFF; 88 opts[i] |= (0x00FF); 91 printf("opts str: %s %s\n", cp, range); 92 printf("opts opt: %04X\n", opts[i]) [all...] |
libip6t_hbh.c | 20 " --hbh-opts TYPE[:LEN][,TYPE[:LEN]...] \n" 29 {.name = "hbh-opts", .id = O_HBH_OPTS, .type = XTTYPE_STRING}, 58 parse_options(const char *optsstr, uint16_t *opts) 77 opts[i] = (parse_opts_num(cp, "opt") & 0xFF) << 8; 79 if (opts[i] == 0) 81 opts[i] |= parse_opts_num(range, "length") & 0xFF; 83 opts[i] |= (0x00FF); 87 printf("opts str: %s %s\n", cp, range); 88 printf("opts opt: %04X\n", opts[i]) [all...] |
/external/llvm/utils/Misc/ |
zkill | 92 if opts.debug: 112 if opts.debug: 138 global opts 202 (opts, args) = parser.parse_args() 204 if opts.listSignals: 213 signal = kSignals[opts.signalName] 215 if opts.verbose: 237 if opts.execName is not None: 239 if re_full_match(opts.execName, 241 if opts.execPath is not None [all...] |
/external/chromium-trace/catapult/third_party/html5lib-python/ |
parse.py | 20 opts,args = optParser.parse_args() 51 treebuilder = treebuilders.getTreeBuilder(opts.treebuilder) 53 if opts.sanitize: 58 p = html5parser.HTMLParser(tree=treebuilder, tokenizer=tokenizer, debug=opts.log) 60 if opts.fragment: 65 if opts.profile: 79 elif opts.time: 85 printOutput(p, document, opts) 93 printOutput(p, document, opts) 103 def printOutput(parser, document, opts) [all...] |
/external/llvm/utils/lit/lit/ |
main.py | 20 def __init__(self, opts, numTests, progressBar=None): 21 self.opts = opts 30 elif self.opts.quiet: 32 elif self.opts.succinct: 38 if self.opts.incremental: 46 self.opts.showAllOutput or \ 47 (not self.opts.quiet and not self.opts.succinct) 60 if (test.result.code.isFailure and self.opts.showOutput) or [all...] |
/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...] |
/external/llvm/tools/llvm-readobj/ |
llvm-readobj.cpp | 47 namespace opts { namespace 230 } // namespace opts 311 if (opts::FileHeaders) 313 if (opts::Sections) 315 if (opts::Relocations) 317 if (opts::DynRelocs) 319 if (opts::Symbols) 321 if (opts::DynamicSymbols) 323 if (opts::UnwindInfo) 325 if (opts::DynamicTable [all...] |
/hardware/bsp/intel/peripheral/libupm/doxy/node/ |
docgen.js | 29 , opts = require('commander') 35 _.extend(opts, { addOptions: function(module) { return module.addOptions(opts); } }); 36 opts 51 var formats = opts.formats.split(','); 54 var dir = opts.outdir + '/' + format + '/' + specjs.MODULE;
|
/external/iproute2/tipc/ |
bearer.c | 70 static int enable_l2_bearer(struct nlmsghdr *nlh, struct opt *opts, 76 if (!(opt = get_opt(opts, "device"))) { 126 static int enable_udp_bearer(struct nlmsghdr *nlh, struct opt *opts, 151 if (!(opt = get_opt(opts, "name"))) { 158 if (!(opt = get_opt(opts, "localip"))) { 165 if ((opt = get_opt(opts, "remoteip"))) 168 if ((opt = get_opt(opts, "localport"))) 171 if ((opt = get_opt(opts, "remoteport"))) 232 struct opt opts[] = { local 245 if (parse_opts(opts, cmdl) < 0) 360 struct opt opts[] = { local 447 struct opt opts[] = { local 586 struct opt opts[] = { local [all...] |
/frameworks/base/graphics/java/android/graphics/ |
BitmapFactory.java | 391 * @param opts null-ok; Options that control downsampling and whether the 394 * decoded, or, if opts is non-null, if opts requested only the 395 * size be returned (in opts.outWidth and opts.outHeight) 397 public static Bitmap decodeFile(String pathName, Options opts) { 402 bm = decodeStream(stream, null, opts); 436 InputStream is, Rect pad, Options opts) { 438 if (opts == null) { 439 opts = new Options() [all...] |