/external/iproute2/tc/ |
m_xt_old.c | 65 static struct option *opts = original_opts; variable in typeref:struct:option 86 opts = original_opts; 240 c = getopt_long(argc, argv, "j:", opts, NULL); 252 opts = 253 merge_options(opts, m->extra_opts, 282 free_opts(opts); 340 free_opts(opts); 395 opts = 396 merge_options(opts, m->extra_opts, 426 free_opts(opts); [all...] |
/frameworks/base/core/java/android/provider/ |
DocumentsProvider.java | 584 public final AssetFileDescriptor openTypedAssetFile(Uri uri, String mimeTypeFilter, Bundle opts) 586 if (opts != null && opts.containsKey(EXTRA_THUMBNAIL_SIZE)) { 587 final Point sizeHint = opts.getParcelable(EXTRA_THUMBNAIL_SIZE); 590 return super.openTypedAssetFile(uri, mimeTypeFilter, opts); 601 Uri uri, String mimeTypeFilter, Bundle opts, CancellationSignal signal) 603 if (opts != null && opts.containsKey(EXTRA_THUMBNAIL_SIZE)) { 604 final Point sizeHint = opts.getParcelable(EXTRA_THUMBNAIL_SIZE); 607 return super.openTypedAssetFile(uri, mimeTypeFilter, opts, signal) [all...] |
/pdk/apps/TestingCamera/src/com/android/testingcamera/ |
SnapshotDialogFragment.java | 66 BitmapFactory.Options opts = new BitmapFactory.Options(); local 67 opts.inJustDecodeBounds = true; 69 jpegImage.length, opts); 71 if (opts.outWidth > 1024 || opts.outHeight > 1024) { 72 int scaleFactorX = opts.outWidth / 1024 + 1; 73 int scaleFactorY = opts.outHeight / 1024 + 1; 76 opts.inSampleSize = scaleFactor; 78 opts.inJustDecodeBounds = false; 80 jpegImage.length, opts); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
ttk.py | 66 opts = [] 69 opts.append("-%s" % opt) 71 opts.append(_format_optvalue(value, script)) 73 return _flatten(opts) 110 opts = [] 112 opts.extend(("-%s" % opt, 115 return _flatten(opts) 120 opts = () 139 opts = _format_optdict(kw, script) 146 opts = (_format_optvalue(args[1], script), [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
ttk.py | 66 opts = [] 69 opts.append("-%s" % opt) 71 opts.append(_format_optvalue(value, script)) 73 return _flatten(opts) 110 opts = [] 112 opts.extend(("-%s" % opt, 115 return _flatten(opts) 120 opts = () 139 opts = _format_optdict(kw, script) 146 opts = (_format_optvalue(args[1], script), [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
determinize.h | 107 explicit DeterminizeFstOptions(const CacheOptions &opts, float del = kDelta) 108 : CacheOptions(opts), delta(del) {} 135 DeterminizeFstImplBase(const Fst<A> &fst, const CacheOptions &opts) 136 : CacheImpl<A>(opts), fst_(fst.Copy()) { 225 const DeterminizeFstOptions &opts) 226 : DeterminizeFstImplBase<A>(fst, opts), 227 delta_(opts.delta), common_divisor_(common_divisor), 490 DeterminizeFstImpl(const Fst<A> &fst, const DeterminizeFstOptions &opts); 546 const DeterminizeFstOptions &opts = DeterminizeFstOptions()) { 550 impl_ = new DeterminizeFsaImpl<A, D>(fst, D(), opts); [all...] |
const-fst.h | 68 static ConstFstImpl<A> *Read(istream &strm, const FstReadOptions &opts); 70 bool Write(ostream &strm, const FstWriteOptions &opts) const; 162 const FstReadOptions &opts) { 165 if (!impl->ReadHeaderAndSymbols(strm, opts, kMinFileVersion, &hdr)) 180 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source; 189 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source; 197 const FstWriteOptions &opts) const { 202 WriteHeaderAndSymbols(strm, opts, kFileVersion, &hdr); 215 LOG(ERROR) << "ConstFst::Write: Write failed: " << opts.source; 276 static ConstFst<A> *Read(istream &strm, const FstReadOptions &opts) { [all...] |
mutable-fst.h | 71 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) { 72 FstReadOptions ropts(opts); 75 hdr = *opts.header; 77 if (!hdr.Read(strm, opts.source))
|
/external/chromium_org/third_party/sqlite/src/tool/ |
omittest.tcl | 29 * The makefile should support the variable "OPTS" as a way to pass 34 make -f $::MAKEFILE testfixture OPTS="-DSQLITE_OMIT_ALTERTABLE=1" 38 they do not respect the OPTS variable. 52 # Compile the value of the OPTS Makefile variable. 53 set opts "-DSQLITE_MEMDEBUG -DSQLITE_DEBUG -DSQLITE_NO_SYNC" 55 append opts " -DSQLITE_OS_WIN=1" 58 append opts " -DSQLITE_OS_OS2=1" 60 append opts " -DSQLITE_OS_UNIX=1" 63 append opts " -D${sym}=1" 76 exec make -C $dir -f $::MAKEFILE $target OPTS=$opts >& $dir/build.lo [all...] |
/external/llvm/utils/llvm-build/llvmbuild/ |
main.py | 636 def add_magic_target_components(parser, project, opts): 637 """add_magic_target_components(project, opts) -> None 657 'Unknown' : None }.get(opts.native_target, 658 opts.native_target) 665 opts.native_target,)) 668 opts.native_target,)) 671 if opts.enable_targets is None: 675 if ' ' in opts.enable_targets: 676 enable_target_names = opts.enable_targets.split() 678 enable_target_names = opts.enable_targets.split(';' [all...] |
/external/chromium_org/tools/ |
unused-symbols-report.py | 158 opts, args = parser.parse_args() 165 skip_paths=opts.skip_paths, 166 only_paths=opts.only_paths)
|
/external/openfst/src/include/fst/extensions/far/ |
print-strings.h | 61 SymbolTableTextOptions opts; local 62 opts.allow_negative = true; 63 syms = SymbolTable::ReadText(symbols_fname, opts);
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
BitmapsAlphaActivity.java | 56 BitmapFactory.Options opts = new BitmapFactory.Options(); local 57 opts.inPreferredConfig = Bitmap.Config.ARGB_8888; 58 mBitmap3 = BitmapFactory.decodeResource(c.getResources(), R.drawable.sunset3, opts);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
cursesm.h | 105 inline void options_on (Item_Options opts) { 106 OnError (::item_opts_on (item, opts)); 110 inline void options_off (Item_Options opts) { 111 OnError (::item_opts_off (item, opts)); 120 inline void set_options (Item_Options opts) { 121 OnError (::set_item_opts (item, opts)); 447 inline void options_on (Menu_Options opts) { 448 OnError (::menu_opts_on (menu,opts)); 451 inline void options_off(Menu_Options opts) { 452 OnError (::menu_opts_off(menu,opts)); [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursesm.h | 105 inline void options_on (Item_Options opts) { 106 OnError (::item_opts_on (item, opts)); 110 inline void options_off (Item_Options opts) { 111 OnError (::item_opts_off (item, opts)); 120 inline void set_options (Item_Options opts) { 121 OnError (::set_item_opts (item, opts)); 447 inline void options_on (Menu_Options opts) { 448 OnError (::menu_opts_on (menu,opts)); 451 inline void options_off(Menu_Options opts) { 452 OnError (::menu_opts_off(menu,opts)); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursesm.h | 105 inline void options_on (Item_Options opts) { 106 OnError (::item_opts_on (item, opts)); 110 inline void options_off (Item_Options opts) { 111 OnError (::item_opts_off (item, opts)); 120 inline void set_options (Item_Options opts) { 121 OnError (::set_item_opts (item, opts)); 447 inline void options_on (Menu_Options opts) { 448 OnError (::menu_opts_on (menu,opts)); 451 inline void options_off(Menu_Options opts) { 452 OnError (::menu_opts_off(menu,opts)); [all...] |
/development/ndk/platforms/android-9/include/android/ |
looper.h | 63 * The opts may be ALOOPER_PREPARE_ALLOW_NON_CALLBACKS or 0. 65 ALooper* ALooper_prepare(int opts);
|
/external/clang/bindings/python/examples/cindex/ |
cindex-includes.py | 25 (opts, args) = parser.parse_args()
|
/external/dropbear/ |
runopts.h | 42 extern runopts opts;
|
/external/libselinux/include/selinux/ |
label.h | 61 * @opts: array of selabel_opt structures specifying label options or NULL. 62 * @nopts: number of elements in opts array or zero for no options. 65 * listed above. Options may be provided via the opts parameter; available 71 const struct selinux_opt *opts,
|
/external/llvm/tools/llvm-readobj/ |
llvm-readobj.h | 29 namespace opts { namespace 41 } // namespace opts
|
/external/openfst/src/extensions/pdt/ |
pdtscript.cc | 56 MutableFstClass *ofst, const PdtExpandOptions &opts) { 57 PdtExpandArgs args(ifst, parens, ofst, opts); 95 const PdtShortestPathOptions &opts) { 96 PdtShortestPathArgs args(ifst, parens, ofst, opts);
|
/external/openfst/src/include/fst/ |
expanded-fst.h | 46 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) { 47 FstReadOptions ropts(opts); 50 hdr = *opts.header; 52 if (!hdr.Read(strm, opts.source))
|
map.h | 61 MapFst(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts) 62 : ArcMapFst<A, B, C>(fst, mapper, opts) {} 64 MapFst(const Fst<A> &fst, C* mapper, const MapFstOptions& opts) 65 : ArcMapFst<A, B, C>(fst, mapper, opts) {}
|
/frameworks/native/include/android/ |
looper.h | 63 * The opts may be ALOOPER_PREPARE_ALLOW_NON_CALLBACKS or 0. 65 ALooper* ALooper_prepare(int opts);
|