/toolchain/binutils/binutils-2.25/binutils/testsuite/lib/ |
utils-lib.exp | 269 set opts(addr2line) {} 270 set opts(ar) {} 271 set opts(as) {} 272 set opts(nm) {} 273 set opts(objcopy) {} 274 set opts(objdump) {} 275 set opts(strip) {} 276 set opts(ranlib) {} 277 set opts(readelf) {} 278 set opts(size) { [all...] |
/external/valgrind/docs/xml/ |
valgrind-manpage.xml | 55 <xi:include href="manual-core.xml" xpointer="tool.opts.para" 58 <xi:include href="manual-core.xml" xpointer="tool.opts.list" 68 <xi:include href="manual-core.xml" xpointer="basic.opts.para" 71 <xi:include href="manual-core.xml" xpointer="basic.opts.list" 81 <xi:include href="manual-core.xml" xpointer="error-related.opts.para" 84 <xi:include href="manual-core.xml" xpointer="error-related.opts.list" 94 <xi:include href="manual-core.xml" xpointer="malloc-related.opts.para" 97 <xi:include href="manual-core.xml" xpointer="malloc-related.opts.list" 108 <xi:include href="manual-core.xml" xpointer="uncommon.opts.para" 111 <xi:include href="manual-core.xml" xpointer="uncommon.opts.list [all...] |
/frameworks/compile/slang/ |
llvm-rs-cc.cpp | 76 // Append '/' to Opts.mBitcodeOutputDir if not presents 135 * Opts - options controlling compilation. 147 const llvm::SmallVector<const char*, 16> &Inputs, slang::RSCCOptions &Opts, 152 if (Opts.mEmit3264) { 153 if (Opts.mBitWidth == 64) { 163 const char *BCOutputFile = DetermineOutputFile(Opts.mBitcodeOutputDir, 165 Opts.mOutputType, 169 if (Opts.mEmitDependency) { 174 DetermineOutputFile(Opts.mDependencyOutputDir, "", InputFile, 176 if (Opts.mOutputType == slang::Slang::OT_Dependency) [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
BitmapDecode.java | 71 BitmapFactory.Options opts = new BitmapFactory.Options(); local 74 opts.inJustDecodeBounds = true; 75 bm = BitmapFactory.decodeStream(is, null, opts); 77 // now opts.outWidth and opts.outHeight are the dimension of the 80 opts.inJustDecodeBounds = false; // this will request the bm 81 opts.inSampleSize = 4; // scaled down by 4 82 bm = BitmapFactory.decodeStream(is, null, opts);
|
/external/autotest/server/samples/ |
run_test.srv | 22 opts, args = getopt.getopt(args, 't:l:', []) 28 for flag, value in opts:
|
/external/avahi/initscript/gentoo/ |
avahi-daemon.in | 5 opts="reload"
|
avahi-dnsconfd.in | 5 opts="reload"
|
/external/e2fsprogs/contrib/ |
e2croncheck | 28 OPTS="-Fttv -C0" 29 #OPTS="-Fttv -E fragcheck" 34 if nice logsave -as $TMPFILE e2fsck -p $OPTS "/dev/${VG}/${VOLUME}-snap" && \ 35 nice logsave -as $TMPFILE e2fsck -fy $OPTS "/dev/${VG}/${VOLUME}-snap" ; then
|
/external/iptables/extensions/ |
libip6t_dst.man | 6 \fB\-\-dst\-opts\fP \fItype\fP[\fB:\fP\fIlength\fP][\fB,\fP\fItype\fP[\fB:\fP\fIlength\fP]...]
|
libip6t_hbh.man | 6 \fB\-\-hbh\-opts\fP \fItype\fP[\fB:\fP\fIlength\fP][\fB,\fP\fItype\fP[\fB:\fP\fIlength\fP]...]
|
/frameworks/compile/libbcc/tests/debuginfo/host-tests/ |
func_invoke_and_crash.cpp | 1 // RUN: %clangxx %s -g -fexceptions %extra-clang-opts -o %t
|
test_info_sources.cpp | 1 // RUN: %clangxx %s -g -fexceptions %extra-clang-opts -o %t
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/ |
ImageUtils.java | 107 final BitmapFactory.Options opts = new BitmapFactory.Options(); local 108 opts.inSampleSize = Math.max(bounds.x / maxSize, bounds.y / maxSize); 109 result.bitmap = decodeStream(factory, null, opts); 136 * @param opts null-ok; Options that control downsampling and whether the 139 * decoded, or, if opts is non-null, if opts requested only the 140 * size be returned (in opts.outWidth and opts.outHeight) 143 final BitmapFactory.Options opts) throws FileNotFoundException { 155 final Bitmap originalBitmap = BitmapFactory.decodeStream(is, outPadding, opts); 198 final BitmapFactory.Options opts = new BitmapFactory.Options(); local [all...] |
/packages/apps/DevCamera/src/com/android/devcamera/ |
BitmapUtility.java | 34 BitmapFactory.Options opts = new BitmapFactory.Options(); local 35 opts.inSampleSize = 16; // 3264 / 16 = 204. 36 opts.inTempStorage = decodeBuffer; 37 Bitmap b = BitmapFactory.decodeByteArray(data, 0, data.length, opts);
|
/prebuilts/go/darwin-x86/src/crypto/x509/ |
root_windows.go | 15 // in the opts.Intermediates CertPool. 20 func createStoreContext(leaf *Certificate, opts *VerifyOptions) (*syscall.CertContext, error) { 40 if opts.Intermediates != nil { 41 for _, intermediate := range opts.Intermediates.certs { 100 func checkChainSSLServerPolicy(c *Certificate, chainCtx *syscall.CertChainContext, opts *VerifyOptions) error { 101 servernamep, err := syscall.UTF16PtrFromString(opts.DNSName) 130 return HostnameError{c, opts.DNSName} 143 func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) { 144 hasDNSName := opts != nil && len(opts.DNSName) > [all...] |
verify.go | 146 func (c *Certificate) isValid(certType int, currentChain []*Certificate, opts *VerifyOptions) error { 147 now := opts.CurrentTime 158 if opts.DNSName == domain || 159 (strings.HasSuffix(opts.DNSName, domain) && 160 len(opts.DNSName) >= 1+len(domain) && 161 opts.DNSName[len(opts.DNSName)-len(domain)-1] == '.') { 204 // certificate in opts.Roots, using certificates in opts.Intermediates if 206 // element of the chain is c and the last element is from opts.Roots [all...] |
/prebuilts/go/linux-x86/src/crypto/x509/ |
root_windows.go | 15 // in the opts.Intermediates CertPool. 20 func createStoreContext(leaf *Certificate, opts *VerifyOptions) (*syscall.CertContext, error) { 40 if opts.Intermediates != nil { 41 for _, intermediate := range opts.Intermediates.certs { 100 func checkChainSSLServerPolicy(c *Certificate, chainCtx *syscall.CertChainContext, opts *VerifyOptions) error { 101 servernamep, err := syscall.UTF16PtrFromString(opts.DNSName) 130 return HostnameError{c, opts.DNSName} 143 func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) { 144 hasDNSName := opts != nil && len(opts.DNSName) > [all...] |
verify.go | 146 func (c *Certificate) isValid(certType int, currentChain []*Certificate, opts *VerifyOptions) error { 147 now := opts.CurrentTime 158 if opts.DNSName == domain || 159 (strings.HasSuffix(opts.DNSName, domain) && 160 len(opts.DNSName) >= 1+len(domain) && 161 opts.DNSName[len(opts.DNSName)-len(domain)-1] == '.') { 204 // certificate in opts.Roots, using certificates in opts.Intermediates if 206 // element of the chain is c and the last element is from opts.Roots [all...] |
/external/llvm/unittests/Option/ |
Makefile | 14 BUILT_SOURCES = Opts.inc 21 $(ObjDir)/Opts.inc.tmp : Opts.td $(LLVM_TBLGEN) $(ObjDir)/.dir
|
/external/clang/utils/ABITest/ |
ABITestGen.py | 480 (opts, args) = parser.parse_args() 482 if not opts.useRandomSeed: 483 random.seed(opts.seed) 487 if opts.useBuiltins: 489 if opts.useChar: ints.append(('char',1)) 490 if opts.useShort: ints.append(('short',2)) 491 if opts.useInt: ints.append(('int',4)) 493 if opts.useLong: ints.append(('long',4)) 494 if opts.useLongLong: ints.append(('long long',8)) 495 if opts.useUnsigned: [all...] |
/external/clang/utils/ |
FuzzTest | 127 if opts.verbose: 132 if opts.log_dir: 133 stdout_log_path = os.path.join(opts.log_dir, '%s.out' % index) 134 stderr_log_path = os.path.join(opts.log_dir, '%s.err' % index) 143 test_result = (exit_code == opts.expected_exit_code or 144 exit_code in opts.extra_exit_codes) 151 if not opts.log_all and test_result: 157 elif not opts.succinct: 162 global opts 268 (opts, args) = parser.parse_args( [all...] |
/external/webrtc/talk/session/media/ |
mediasession_unittest.cc | 435 MediaSessionOptions opts; local 436 opts.recv_video = true; 438 f1_.CreateOffer(opts, NULL)); 452 f2_.CreateAnswer(offer.get(), opts, NULL)); 505 MediaSessionOptions opts; local 506 opts.recv_video = true; 509 offer(f1_.CreateOffer(opts, NULL)); 547 MediaSessionOptions opts; local 548 opts.recv_audio = true; 549 opts.recv_video = true 577 MediaSessionOptions opts; local 614 MediaSessionOptions opts; local 649 MediaSessionOptions opts; local 661 MediaSessionOptions opts; local 689 MediaSessionOptions opts; local 729 MediaSessionOptions opts; local 793 MediaSessionOptions opts; local 826 MediaSessionOptions opts; local 861 MediaSessionOptions opts; local 917 MediaSessionOptions opts; local 945 MediaSessionOptions opts; local 973 MediaSessionOptions opts; local 1003 MediaSessionOptions opts; local 1030 MediaSessionOptions opts; local 1153 MediaSessionOptions opts; local 1170 MediaSessionOptions opts; local 1188 MediaSessionOptions opts; local 1223 MediaSessionOptions opts; local 1357 MediaSessionOptions opts; local 1392 MediaSessionOptions opts; local 1520 MediaSessionOptions opts; local 1572 MediaSessionOptions opts; local 1627 MediaSessionOptions opts; local 1676 MediaSessionOptions opts; local 1720 MediaSessionOptions opts; local 1750 MediaSessionOptions opts; local 1785 MediaSessionOptions opts; local 1828 MediaSessionOptions opts; local 1886 MediaSessionOptions opts; local 2323 MediaSessionOptions opts; local [all...] |
/external/chromium-trace/catapult/third_party/flot/ |
jquery.flot.time.js | 145 function dateGenerator(ts, opts) { 146 if (opts.timezone == "browser") { 148 } else if (!opts.timezone || opts.timezone == "utc") { 154 d.setTimezone(opts.timezone); 201 var opts = axis.options; 203 if (opts.mode == "time") { 207 var d = dateGenerator(axis.min, opts); 213 var spec = (opts.tickSize && opts.tickSize[1] == [all...] |
/external/ipsec-tools/src/racoon/ |
nattraversal.c | 227 natt_fill_options (struct ph1natt_options *opts, int version) 229 if (! opts) 232 opts->version = version; 237 opts->float_port = 0; /* No port floating for those drafts */ 238 opts->payload_nat_d = ISAKMP_NPTYPE_NATD_DRAFT; 239 opts->payload_nat_oa = ISAKMP_NPTYPE_NATOA_DRAFT; 240 opts->mode_udp_tunnel = IPSECDOI_ATTR_ENC_MODE_UDPTUNNEL_DRAFT; 241 opts->mode_udp_transport = IPSECDOI_ATTR_ENC_MODE_UDPTRNS_DRAFT; 242 opts->encaps_type = UDP_ENCAP_ESPINUDP_NON_IKE; 248 opts->float_port = lcconf->port_isakmp_natt [all...] |
/external/clang/lib/Basic/ |
Warnings.cpp | 34 // opts 45 const DiagnosticOptions &Opts, 48 Diags.setIgnoreAllWarnings(Opts.IgnoreWarnings); 49 Diags.setShowOverloads(Opts.getShowOverloads()); 51 Diags.setElideType(Opts.ElideType); 52 Diags.setPrintTemplateTree(Opts.ShowTemplateTree); 53 Diags.setShowColors(Opts.ShowColors); 56 if (Opts.ErrorLimit) 57 Diags.setErrorLimit(Opts.ErrorLimit); 58 if (Opts.TemplateBacktraceLimit [all...] |