/sdk/eclipse/scripts/ |
collect_sources_for_sdk.py | 75 opts, args = getopt.getopt(argv[1:], 82 for o, a in opts:
|
/development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/ |
AccelerometerPlayActivity.java | 361 Options opts = new Options(); local 362 opts.inDither = true; 363 opts.inPreferredConfig = Bitmap.Config.RGB_565; 364 mWood = BitmapFactory.decodeResource(getResources(), R.drawable.wood, opts);
|
/external/dhcpcd/ |
arp.c | 115 struct if_options *opts = state->options; local 155 state->arping_index <= opts->arping_len && 156 (reply_s == opts->arping[state->arping_index - 1] || 158 reply_t == opts->arping[state->arping_index - 1])))
|
/external/dropbear/ |
tcp-accept.c | 116 if (opts.listen_fwd_all
|
/external/linux-tools-perf/util/ |
sort.h | 113 void setup_sorting(const char * const usagestr[], const struct option *opts);
|
/external/openfst/src/include/fst/ |
mutable-fst.h | 88 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) { 89 FstReadOptions ropts(opts); 92 hdr = *opts.header; 94 if (!hdr.Read(strm, opts.source))
|
replace.h | 276 ReplaceFstOptions(const CacheOptions &opts, int64 r) 277 : CacheOptions(opts), 342 const ReplaceFstOptions<A, T> &opts) 343 : CacheImpl<A>(opts), 344 epsilon_on_replace_(opts.epsilon_on_replace), 345 state_table_(opts.state_table ? opts.state_table : 346 new StateTable(fst_tuples, opts.root)) { 376 fst_array_.push_back(opts.take_ownership ? fst : fst->Copy()); 398 Label nonterminal = nonterminal_hash_[opts.root] [all...] |
/external/openfst/src/include/fst/script/ |
register.h | 85 const FstReadOptions &opts);
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
arcsort.h | 91 const ArcSortFstOptions &opts) 92 : CacheImpl<A>(opts), fst_(fst.Copy()), comp_(comp) { 199 ArcSortFst(const Fst<A> &fst, const C &comp, const ArcSortFstOptions &opts) 200 : impl_(new ArcSortFstImpl<A, C>(fst, comp, opts)) {}
|
rational.h | 56 explicit RationalFstImpl(const RationalFstOptions &opts) 57 : ReplaceFstImpl<A>(ReplaceFstOptions(opts, kNoLabel)), 235 explicit RationalFst(const RationalFstOptions &opts) 236 : impl_(new RationalFstImpl<A>(opts)) {}
|
map.h | 241 MapFstOptions(const CacheOptions& opts) : CacheOptions(opts) {} 270 const MapFstOptions& opts) 271 : CacheImpl<B>(opts), fst_(fst.Copy()), 280 const MapFstOptions& opts) 281 : CacheImpl<B>(opts), fst_(fst.Copy()), 465 const MapFstOptions& opts) 466 : impl_(new MapFstImpl<A, B, C>(fst, mapper, opts)) {} 469 const MapFstOptions& opts) 470 : impl_(new MapFstImpl<A, B, C>(fst, mapper, opts)) {} [all...] |
/external/valgrind/main/mpi/ |
mpiwrap_type_test.c | 225 char* opts; local 231 opts = getenv("MPIWRAP_DEBUG"); 232 if ((!opts) || NULL==strstr(opts, "initkludge")) {
|
/build/tools/ |
parsedeps.py | 82 opts = optparse.OptionParser() 83 opts.add_option("-i", "--interactive", action="store_true", dest="interactive", 85 (options, args) = opts.parse_args()
|
/external/e2fsprogs/misc/ |
util.c | 177 void parse_journal_opts(const char *opts) 183 len = strlen(opts); 190 strcpy(buf, opts);
|
fsck.c | 244 const char *type, const char *opts, 255 fs->opts = string_copy(opts ? opts : ""); 274 char *dev, *device, *mntpnt, *type, *opts, *freq, *passno, *cp; local 286 opts = parse_word(&cp); 296 parse_escape(opts); 307 fs = create_fs_device(device, mntpnt, type ? type : "auto", opts, 711 strncmp(fstype, "opts=", 5) && strncmp(fstype, "loop", 4) && 784 /* loop is really short-hand for opts=loop * [all...] |
/external/openfst/src/include/fst/extensions/far/ |
compile-strings.h | 192 SymbolTableTextOptions opts; local 193 opts.allow_negative = allow_negative_labels; 194 syms = SymbolTable::ReadText(symbols_fname, opts);
|
/external/qemu/ |
sysemu.h | 181 int add_init_drive(const char *opts); 198 const char *opts); 199 void drive_hot_add(Monitor *mon, const char *pci_addr, const char *opts);
|
/frameworks/base/test-runner/src/android/test/mock/ |
MockContentProvider.java | 129 String mimeType, Bundle opts) 131 return MockContentProvider.this.openTypedAssetFile(url, mimeType, opts); 237 public AssetFileDescriptor openTypedAssetFile(Uri url, String mimeType, Bundle opts) {
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
Drawable.java | 776 InputStream is, String srcName, BitmapFactory.Options opts) { 797 if (opts == null) opts = new BitmapFactory.Options(); 798 opts.inScreenDensity = res != null 800 Bitmap bm = BitmapFactory.decodeResourceStream(res, value, is, pad, opts); [all...] |
/external/icu4c/common/ |
uniset_props.cpp | 455 int32_t opts = RuleCharacterIterator::PARSE_VARIABLES | 458 opts |= RuleCharacterIterator::SKIP_WHITESPACE; 490 if (resemblesPropertyPattern(chars, opts)) { 505 c = chars.next(opts, literal, ec); 517 c = chars.next(opts, literal, ec); 523 c = chars.next(opts, literal, ec); 587 chars.skipIgnored(opts); 660 c = chars.next(opts, literal, ec); 699 c = chars.next(opts, literal, ec); 730 c = chars.next(opts, literal, ec) [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
construction.rb | 373 def self.ast_test( opts, &special_test ) 374 input = opts[ :input ] 375 rule = opts[ :rule ] 376 expected_tree = opts[ :ast ] 377 flag = opts[ :flag ] 378 args = opts[ :arguments ] || [] 379 message = opts[ :message ] || rule.to_s #"should parse %p with rule %s and make tree %s" % [input, rule, expected_tree]
|
/external/libselinux/src/ |
label_file.c | 395 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, 414 switch(opts[n].type) { 416 path = opts[n].value; 419 prefix = opts[n].value; 422 baseonly = !!opts[n].value; 675 int selabel_file_init(struct selabel_handle *rec, const struct selinux_opt *opts, 690 return init(rec, opts, nopts);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
cursesw.h | 94 inline chtype UNDEF(color_set)(short p, void* opts) { return color_set(p, opts); } 453 inline int UNDEF(chgat)(int n, attr_t attr, short color, const void *opts) { 454 return chgat(n, attr, color, opts); } 461 attr_t attr, short color, const void *opts) { 462 return mvchgat(y, x, n, attr, color, opts); } 469 attr_t attr, short color, const void *opts) { 470 return mvwchgat(win, y, x, n, attr, color, opts); } 999 int color_set(short color_pair_number, void* opts=NULL) { 1000 return ::wcolor_set(w, color_pair_number, opts); } [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursesw.h | 94 inline chtype UNDEF(color_set)(short p, void* opts) { return color_set(p, opts); } 453 inline int UNDEF(chgat)(int n, attr_t attr, short color, const void *opts) { 454 return chgat(n, attr, color, opts); } 461 attr_t attr, short color, const void *opts) { 462 return mvchgat(y, x, n, attr, color, opts); } 469 attr_t attr, short color, const void *opts) { 470 return mvwchgat(win, y, x, n, attr, color, opts); } 999 int color_set(short color_pair_number, void* opts=NULL) { 1000 return ::wcolor_set(w, color_pair_number, opts); } [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursesw.h | 94 inline chtype UNDEF(color_set)(short p, void* opts) { return color_set(p, opts); } 453 inline int UNDEF(chgat)(int n, attr_t attr, short color, const void *opts) { 454 return chgat(n, attr, color, opts); } 461 attr_t attr, short color, const void *opts) { 462 return mvchgat(y, x, n, attr, color, opts); } 469 attr_t attr, short color, const void *opts) { 470 return mvwchgat(win, y, x, n, attr, color, opts); } 999 int color_set(short color_pair_number, void* opts=NULL) { 1000 return ::wcolor_set(w, color_pair_number, opts); } [all...] |