/external/icu4c/tools/genren/ |
genren.pl | 48 /^-n/ && (($nmopts = shift (@ARGV)), next); # nm opts 49 /^-p/ && (($post = shift (@ARGV)), next); # nm opts 50 /^-x/ && (($mode = shift (@ARGV)), next); # nm opts
|
/external/iptables/extensions/ |
libip6t_ipv6header.c | 144 " long names: hop-by-hop,ipv6-opts,ipv6-route,\n" 151 static struct option opts[] = { variable in typeref:struct:option 310 .extra_opts = opts,
|
libipt_MARK.c | 25 static struct option opts[] = { variable in typeref:struct:option 219 .extra_opts = opts 236 .extra_opts = opts
|
libip6t_CONNMARK.c | 51 static struct option opts[] = { variable in typeref:struct:option 214 .extra_opts = opts
|
libip6t_NFLOG.c | 17 static struct option opts[] = { variable in typeref:struct:option 155 .extra_opts = opts,
|
libip6t_ah.c | 23 static struct option opts[] = { variable in typeref:struct:option 220 .extra_opts = opts
|
libip6t_esp.c | 21 static struct option opts[] = { variable in typeref:struct:option 178 .extra_opts = opts
|
libip6t_limit.c | 33 static struct option opts[] = { variable in typeref:struct:option 189 .extra_opts = opts,
|
libip6t_owner.c | 39 static struct option opts[] = { variable in typeref:struct:option 242 .extra_opts = opts,
|
/external/qemu/ |
sysemu.h | 204 int add_init_drive(const char *opts); 210 const char *opts); 211 void drive_hot_add(Monitor *mon, const char *pci_addr, const char *opts);
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
compose.h | 79 explicit ComposeFstOptions(const CacheOptions &opts) : CacheOptions(opts) {} 107 const CacheOptions &opts) 108 :CacheImpl<A>(opts), fst1_(fst1.Copy()), fst2_(fst2.Copy()) { 346 const CacheOptions &opts) 347 :ComposeFstImplBase<A>(fst1, fst2, opts) { 698 const ComposeFstOptions<T> &opts) 699 : impl_(Init(fst1, fst2, opts)) { } 768 const ComposeFstOptions<T> &opts) { 794 return new ComposeFstImpl<A, T>(fst1, fst2, opts); [all...] |
cache.h | 78 explicit CacheBaseImpl(const CacheOptions &opts) 81 cache_first_state_(0), cache_gc_(opts.gc), cache_size_(0), 82 cache_limit_(opts.gc_limit > kMinCacheLimit || opts.gc_limit == 0 ? 83 opts.gc_limit : kMinCacheLimit) {} 377 explicit CacheImpl(const CacheOptions &opts) 378 : CacheBaseImpl< CacheState<A> >(opts) {}
|
synchronize.h | 72 SynchronizeFstImpl(const Fst<A> &fst, const SynchronizeFstOptions &opts) 73 : CacheImpl<A>(opts), fst_(fst.Copy()) { 334 SynchronizeFst(const Fst<A> &fst, const SynchronizeFstOptions &opts) 335 : impl_(new SynchronizeFstImpl<A>(fst, opts)) {} 452 SynchronizeFstOptions opts; local 453 opts.gc_limit = 0; // Cache only the last state for fastest copy. 454 *ofst = SynchronizeFst<Arc>(ifst, opts);
|
/external/emma/core/java12/com/vladium/emma/ |
runCommand.java | 63 final IOptsParser.IOpt [] opts = parsedopts.getOpts (); local 65 if (opts == null) // this means there were args parsing errors 75 for (int o = 0; o < opts.length; ++ o) 77 final IOptsParser.IOpt opt = opts [o]; 125 // process prefixed opts:
|
/external/e2fsprogs/misc/ |
fsck.c | 243 const char *type, const char *opts, 254 fs->opts = string_copy(opts ? opts : ""); 273 char *dev, *device, *mntpnt, *type, *opts, *freq, *passno, *cp; local 285 opts = parse_word(&cp); 295 parse_escape(opts); 306 fs = create_fs_device(device, mntpnt, type ? type : "auto", opts, 700 strncmp(fstype, "opts=", 5) && strncmp(fstype, "loop", 4) && 773 /* loop is really short-hand for opts=loop * [all...] |
util.c | 177 void parse_journal_opts(const char *opts) 183 len = strlen(opts); 190 strcpy(buf, opts);
|
/external/icu4c/tools/genuca/ |
genuca.cpp | 811 UColOptionSet *opts = (UColOptionSet *)uprv_malloc(sizeof(UColOptionSet)); local 813 if(opts == NULL) { 819 uprv_memset(opts, 0, sizeof(UColOptionSet)); 860 opts->variableTopValue = variableTopValue; 861 opts->strength = UCOL_TERTIARY; 862 opts->frenchCollation = UCOL_OFF; 863 opts->alternateHandling = UCOL_NON_IGNORABLE; /* attribute for handling variable elements*/ 864 opts->caseFirst = UCOL_OFF; /* who goes first, lower case or uppercase */ 865 opts->caseLevel = UCOL_OFF; /* do we have an extra case level */ 866 opts->normalizationMode = UCOL_OFF; /* attribute for normalization * [all...] |
/frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/ |
DpiTestActivity.java | 216 BitmapFactory.Options opts = new BitmapFactory.Options(); local 217 opts.inScaled = false; 218 bitmap = BitmapFactory.decodeResource(getResources(), id, opts);
|
/external/dropbear/ |
cli-runopts.c | 103 opts.listen_fwd_all = 0; 109 opts.ipv4 = 1; 110 opts.ipv6 = 1; 186 opts.listen_fwd_all = 1;
|
runopts.h | 42 extern runopts opts;
|
cli-tcpfwd.c | 102 if (opts.listen_fwd_all) { 132 if (opts.listen_fwd_all) {
|
/external/dropbear/libtommath/etc/ |
makefile.icc | 18 # Default to just generic max opts
|
/build/tools/ |
java-event-log-tags.py | 37 opts, args = getopt.getopt(sys.argv[1:], "ho:") 43 for o, a in opts:
|
merge-event-log-tags.py | 46 opts, args = getopt.getopt(sys.argv[1:], "ho:") 52 for o, a in opts:
|
/external/blktrace/btt/ |
bno_plot.py | 62 (opts, args) = getopt.getopt(in_args, s_opts, l_opts) 68 for (o, a) in opts:
|