Searched defs:opts (Results 1 - 25 of 246) sorted by relevance

12345678910

/external/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.h16 namespace opts { namespace
18 } // namespace opts
/external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
H A Dcopy.pass.cpp55 const directory_options opts = directory_options::skip_permission_denied; local
56 recursive_directory_iterator it(testDir, opts);
63 TEST_CHECK(it.options() == opts);
H A Dmove.pass.cpp57 const directory_options opts = directory_options::skip_permission_denied; local
58 recursive_directory_iterator it(testDir, opts);
65 TEST_CHECK(it.options() == opts);
H A Dctor.pass.cpp61 directory_options opts = directory_options::none; local
73 RDI it(testPath, opts, ec);
79 TEST_CHECK_THROW(filesystem_error, RDI(testPath, opts));
222 const directory_options opts = directory_options::skip_permission_denied; local
224 RDI it1(goodDir, opts, ec);
226 TEST_CHECK(it1.options() == opts);
228 RDI it2(badDir, opts, ec);
237 const directory_options opts = directory_options::follow_directory_symlink; local
238 RDI it(goodDir, opts);
239 TEST_CHECK(it.options() == opts);
[all...]
/external/llvm/tools/llvm-pdbdump/
H A Dllvm-pdbdump.h16 namespace opts { namespace
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dsignalbar.cpp30 QStyleOptionProgressBar opts; local
43 opts.minimum = -95;
44 opts.maximum = -35;
45 if (signal < opts.minimum)
46 opts.progress = opts.minimum;
47 else if (signal > opts.maximum)
48 opts.progress = opts.maximum;
50 opts
[all...]
/external/boringssl/src/fipstools/
H A Dcavp_ecdsa2_keypair_test.cc87 FileTest::Options opts; local
88 opts.path = argv[1];
89 opts.callback = TestECDSA2KeyPair;
90 opts.silent = true;
91 opts.comment_callback = EchoComment;
92 return FileTestMain(opts);
H A Dcavp_ecdsa2_pkv_test.cc60 FileTest::Options opts; local
61 opts.path = argv[1];
62 opts.callback = TestECDSA2PKV;
63 opts.silent = true;
64 opts.comment_callback = EchoComment;
65 return FileTestMain(opts);
H A Dcavp_ecdsa2_siggen_test.cc118 FileTest::Options opts; local
119 opts.path = argv[2];
120 opts.callback = test_func;
121 opts.silent = true;
122 opts.comment_callback = EchoComment;
123 return FileTestMain(opts);
H A Dcavp_ecdsa2_sigver_test.cc78 FileTest::Options opts; local
79 opts.path = argv[1];
80 opts.callback = TestECDSA2SigVer;
81 opts.silent = true;
82 opts.comment_callback = EchoComment;
83 return FileTestMain(opts);
H A Dcavp_hmac_test.cc97 FileTest::Options opts; local
98 opts.path = argv[1];
99 opts.callback = TestHMAC;
100 opts.silent = true;
101 opts.comment_callback = EchoComment;
102 return FileTestMain(opts);
H A Dcavp_rsa2_keygen_test.cc88 FileTest::Options opts; local
89 opts.path = argv[1];
90 opts.callback = TestRSA2KeyGen;
91 opts.silent = true;
92 opts.comment_callback = EchoComment;
93 return FileTestMain(opts);
H A Dcavp_sha_monte_test.cc95 FileTest::Options opts; local
96 opts.path = argv[2];
97 opts.callback = TestSHAMonte;
98 opts.arg = &ctx;
99 opts.silent = true;
100 opts.comment_callback = EchoComment;
101 return FileTestMain(opts);
/external/compiler-rt/test/asan/TestCases/
H A Dstrtol_strict.c53 char *opts = getenv("ASAN_OPTIONS"); local
54 exit(opts && strstr(opts, "strict_string_checks=true"));
71 char *opts = getenv("ASAN_OPTIONS"); local
72 exit(opts && strstr(opts, "strict_string_checks=true"));
/external/iptables/include/linux/netfilter_ipv6/
H A Dip6t_opts.h12 __u16 opts[IP6T_OPTS_OPTSNR]; /* opts */ member in struct:ip6t_opts
/external/kernel-headers/original/uapi/linux/netfilter_ipv6/
H A Dip6t_opts.h12 __u16 opts[IP6T_OPTS_OPTSNR]; /* opts */ member in struct:ip6t_opts
/external/libcxx/test/std/experimental/filesystem/class.directory_iterator/directory_iterator.members/
H A Dctor.pass.cpp57 directory_options opts = directory_options::none; local
69 directory_iterator it(testPath, opts, ec);
75 TEST_CHECK_THROW(filesystem_error, directory_iterator(testPath, opts));
/external/libnl/lib/route/link/
H A Dbonding.c52 * @arg opts bonding options (currently unused)
58 * The \a opts argument is currently unused. In the future, it
73 struct rtnl_link *opts)
81 if (!name && opts)
82 name = rtnl_link_get_name(opts);
72 rtnl_link_bond_add(struct nl_sock *sock, const char *name, struct rtnl_link *opts) argument
/external/libnl/lib/route/qdisc/
H A Dplug.c73 struct tc_plug_qopt opts; local
78 opts.action = plug->action;
79 opts.limit = plug->limit;
81 return nlmsg_append(msg, &opts, sizeof(opts), NL_DONTPAD);
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h45 namespace opts { namespace
63 } // namespace opts
/external/ltp/testcases/kernel/syscalls/poll/
H A Dpoll02.c36 static option_t opts[] = { variable
52 tst_parse_opts(ac, av, opts, help);
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dprogram.hpp51 void compile(const ref_vector<device> &devs, const std::string &opts,
53 void link(const ref_vector<device> &devs, const std::string &opts,
62 build(const module &m = {}, const std::string &opts = {},
63 const std::string &log = {}) : binary(m), opts(opts), log(log) {}
69 std::string opts; member in struct:clover::program::build
/external/selinux/libsemanage/tests/
H A Dlibsemanage-tests.c85 struct option opts[] = { local
91 while ((i = getopt_long(argc, argv, "vi", opts, NULL)) != -1) {
/external/selinux/libsepol/tests/
H A Dlibsepol-tests.c88 struct option opts[] = { local
94 while ((i = getopt_long(argc, argv, "vi", opts, NULL)) != -1) {
/external/skia/tools/
H A Dcreate_flutter_test_images.cpp65 SkPngEncoder::Options opts; local
66 opts.fUnpremulBehavior = SkTransferFunctionBehavior::kIgnore; // Does not matter for opaque src
67 SkAssertResult(SkPngEncoder::Encode(&dst0, src, opts));
73 SkAssertResult(SkPngEncoder::Encode(&dst1, src, opts));
79 SkAssertResult(SkPngEncoder::Encode(&dst2, src, opts));

Completed in 6665 milliseconds

12345678910