Searched refs:opt (Results 51 - 75 of 985) sorted by relevance

1234567891011>>

/external/libcxx/test/utilities/optional/optional.object/optional.object.observe/
H A Dvalue_const.fail.cpp34 constexpr optional<X> opt; local
35 static_assert(opt.value().test() == 3, "");
/external/jdiff/src/jdiff/
H A DOptions.java36 String opt = option.toLowerCase();
39 if (opt.equals("-authorid")) return 2;
40 if (opt.equals("-versionid")) return 2;
41 if (opt.equals("-d")) return 2;
42 if (opt.equals("-classlist")) return 1;
43 if (opt.equals("-title")) return 2;
44 if (opt.equals("-docletid")) return 1;
45 if (opt.equals("-evident")) return 2;
46 if (opt.equals("-skippkg")) return 2;
47 if (opt
[all...]
/external/iproute2/tc/
H A Dq_htb.c63 struct tc_htb_glob opt; local
66 memset(&opt,0,sizeof(opt));
67 opt.rate2quantum = 10;
68 opt.version = 3;
73 if (get_u32(&opt.rate2quantum, *argv, 10)) {
78 if (get_u32(&opt.defcls, *argv, 16)) {
85 opt.debug |= (*p-'0')<<(2*i);
96 addattr_l(n, 2024, TCA_HTB_INIT, &opt, NLMSG_ALIGN(sizeof(opt)));
104 struct tc_htb_opt opt; local
241 htb_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
[all...]
H A Dq_gred.c55 struct tc_gred_sopt opt = { 0 }; local
83 opt.DPs);
87 opt.grio = 1;
104 opt.DPs = dps;
105 opt.def_DP = def_dp;
107 DPRINTF("TC_GRED: sending DPs=%d default=%d\n",opt.DPs,opt.def_DP);
111 addattr_l(n, 1024, TCA_GRED_DPS, &opt, sizeof(struct tc_gred_sopt));
121 struct tc_gred_qopt opt; local
131 memset(&opt,
262 gred_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
[all...]
H A Dq_prio.c35 struct tc_prio_qopt opt={3,{ 1, 2, 2, 2, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1 }}; local
44 if (get_integer(&opt.bands, *argv, 10)) {
70 if (band > opt.bands) {
78 opt.priomap[idx++] = band;
86 opt.priomap[idx] = opt.priomap[TC_PRIO_BESTEFFORT];
89 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
96 int prio_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
102 if (opt
[all...]
H A Dq_rr.c36 struct tc_prio_qopt opt={3,{ 1, 2, 2, 2, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1 }}; local
45 if (get_integer(&opt.bands, *argv, 10)) {
71 if (band > opt.bands) {
79 opt.priomap[idx++] = band;
84 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
91 int rr_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
97 if (opt == NULL)
100 if (parse_rtattr_nested_compat(tb, TCA_PRIO_MAX, opt, qopt,
H A Dq_mqprio.c36 struct tc_mqprio_qopt opt = { local
46 if (get_u8(&opt.num_tc, *argv, 10)) {
53 if (get_u8(&opt.prio_tc_map[idx], *argv, 10)) {
60 opt.prio_tc_map[idx] = 0;
72 if (get_u16(&opt.count[idx], tok, 10)) {
78 if (get_u16(&opt.offset[idx], tok, 10)) {
88 if (get_u8(&opt.hw, *argv, 10)) {
103 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
107 int mqprio_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
[all...]
/external/clang/include/clang/Driver/
H A DToolChain.h24 namespace opt { namespace in namespace:llvm
59 const llvm::opt::ArgList &Args;
83 const llvm::opt::ArgList &Args);
91 static void addSystemInclude(const llvm::opt::ArgList &DriverArgs,
92 llvm::opt::ArgStringList &CC1Args,
94 static void addExternCSystemInclude(const llvm::opt::ArgList &DriverArgs,
95 llvm::opt::ArgStringList &CC1Args,
98 addExternCSystemIncludeIfExists(const llvm::opt::ArgList &DriverArgs,
99 llvm::opt::ArgStringList &CC1Args,
101 static void addSystemIncludes(const llvm::opt
[all...]
H A DCompilation.h19 namespace opt { namespace in namespace:llvm
42 llvm::opt::InputArgList *Args;
46 llvm::opt::DerivedArgList *TranslatedArgs;
57 llvm::opt::DerivedArgList *> TCArgs;
60 llvm::opt::ArgStringList TempFiles;
77 llvm::opt::InputArgList *Args,
78 llvm::opt::DerivedArgList *TranslatedArgs);
85 const llvm::opt::InputArgList &getInputArgs() const { return *Args; }
87 const llvm::opt::DerivedArgList &getArgs() const { return *TranslatedArgs; }
89 llvm::opt
[all...]
H A DSanitizerArgs.h59 SanitizerArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
80 void addArgs(const llvm::opt::ArgList &Args,
81 llvm::opt::ArgStringList &CmdArgs) const;
93 static unsigned parse(const Driver &D, const llvm::opt::Arg *A,
99 static bool parse(const Driver &D, const llvm::opt::ArgList &Args,
100 const llvm::opt::Arg *A, unsigned &Add, unsigned &Remove,
108 const llvm::opt::ArgList &Args,
115 static std::string describeSanitizeArg(const llvm::opt::ArgList &Args,
116 const llvm::opt::Arg *A,
131 const llvm::opt
[all...]
/external/qemu/util/
H A Dqemu-option.c529 QemuOpt *opt; local
531 QTAILQ_FOREACH_REVERSE(opt, &opts->head, QemuOptHead, next) {
532 if (strcmp(opt->name, name) != 0)
534 return opt;
541 QemuOpt *opt = qemu_opt_find(opts, name); local
542 return opt ? opt->str : NULL;
547 QemuOpt *opt = qemu_opt_find(opts, name); local
549 if (opt == NULL)
551 assert(opt
557 QemuOpt *opt = qemu_opt_find(opts, name); local
567 QemuOpt *opt = qemu_opt_find(opts, name); local
575 qemu_opt_parse(QemuOpt *opt) argument
594 qemu_opt_del(QemuOpt *opt) argument
604 QemuOpt *opt; local
642 QemuOpt *opt; local
748 QemuOpt *opt; local
763 QemuOpt *opt; local
913 QemuOpt *opt; local
934 QemuOpt *opt; local
[all...]
/external/pcre/dist/
H A DRunTest152 for opt in "" "-s" "-dfa" "-s -dfa"; do
153 ./pcretest -q $opt $testdata/testinputEBC >testtry
159 if [ "$opt" = "-s" ] ; then echo " OK with study"
160 elif [ "$opt" = "-dfa" ] ; then echo " OK using DFA"
161 elif [ "$opt" = "-s -dfa" ] ; then echo " OK using DFA with study"
425 for opt in "" "-s" $jitopt; do
426 $sim $valgrind ./pcretest -q $bmode $opt $testdata/testinput1 testtry
432 if [ "$opt" = "-s" ] ; then echo " OK with study"
433 elif [ "$opt" = "-s+" ] ; then echo " OK with JIT study"
443 for opt i
[all...]
/external/libcxx/test/utilities/optional/optional.object/optional.object.ctor/
H A Dinitializer_list.pass.cpp80 optional<std::vector<int>> opt(in_place, {3, 1});
81 assert(static_cast<bool>(opt) == true);
82 assert((*opt == std::vector<int>{3, 1}));
83 assert(opt->size() == 2);
86 optional<std::vector<int>> opt(in_place, {3, 1}, std::allocator<int>());
87 assert(static_cast<bool>(opt) == true);
88 assert((*opt == std::vector<int>{3, 1}));
89 assert(opt->size() == 2);
93 constexpr optional<Y> opt(in_place, {3, 1});
94 static_assert(static_cast<bool>(opt)
[all...]
/external/chromium_org/third_party/libxml/src/win32/
H A Dconfigure.js84 function boolToStr(opt)
86 if (opt == false)
88 else if (opt == true)
96 function strToBool(opt)
98 if (opt == 0 || opt == "no")
100 else if (opt == 1 || opt == "yes")
440 var arg, opt;
442 opt
[all...]
/external/libpng/scripts/
H A Doptions.awk261 opt = $2
262 sub(/,$/,"",opt)
263 onoff = option[opt] # records current (and the default is "", enabled)
272 print "option", opt ": ERROR: missing contination line"
274 print "option", opt ": ERROR: error reading continuation line"
294 print "option", opt ": ERROR: turning unrecognized option", val
303 print "option", opt ": currently", onoff ": attempt to turn", val
310 requires[opt] = requires[opt] " " val
312 iffs[opt]
[all...]
/external/llvm/include/llvm/CodeGen/
H A DCommandFlags.h11 // command line tools. The tools "llc" and "opt" both use this file to prevent
27 cl::opt<std::string>
30 cl::opt<std::string>
42 cl::opt<Reloc::Model>
57 cl::opt<llvm::CodeModel::Model>
73 cl::opt<TargetMachine::CodeGenFileType>
85 cl::opt<bool>
90 cl::opt<bool>
95 cl::opt<bool>
100 cl::opt<boo
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-343609.js38 function opt() { function
49 opt();
50 opt();
51 opt();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
H A DupdateBugState.sh3 export JAVA_HOME=/opt/sun-java2-1.4;
4 export ANT_HOME=/opt/apache-ant-1.6;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
H A DfeedManipulation.sh13 export JAVA_HOME=/opt/sun-java2-5.0;
14 export ANT_HOME=/opt/apache-ant-1.6;
/external/libcxx/test/utilities/optional/optional.object/
H A Doptional_not_noexcept_destructible.fail.cpp30 optional<X> opt; local
/external/libcxx/test/utilities/optional/optional.syn/
H A Doptional_const_in_place_t.fail.cpp24 optional<const in_place_t> opt;
H A Doptional_const_nullopt_t.fail.cpp24 optional<const nullopt_t> opt;
H A Doptional_in_place_t.fail.cpp24 optional<in_place_t> opt;
H A Doptional_nullopt_t.fail.cpp24 optional<nullopt_t> opt;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcgroup.h15 extern int parse_cgroups(const struct option *opt, const char *str, int unset);

Completed in 237 milliseconds

1234567891011>>