HomeSort by relevance Sort by last modified time
    Searched refs:opt (Results 251 - 275 of 3025) sorted by null

<<11121314151617181920>>

  /external/libchrome/base/
optional.h 364 constexpr bool operator==(const Optional<T>& opt, base::nullopt_t) {
365 return !opt;
369 constexpr bool operator==(base::nullopt_t, const Optional<T>& opt) {
370 return !opt;
374 constexpr bool operator!=(const Optional<T>& opt, base::nullopt_t) {
375 return !!opt;
379 constexpr bool operator!=(base::nullopt_t, const Optional<T>& opt) {
380 return !!opt;
384 constexpr bool operator<(const Optional<T>& opt, base::nullopt_t) {
389 constexpr bool operator<(base::nullopt_t, const Optional<T>& opt) {
    [all...]
  /external/pdfium/third_party/base/
optional.h 364 constexpr bool operator==(const Optional<T>& opt, nullopt_t) {
365 return !opt;
369 constexpr bool operator==(nullopt_t, const Optional<T>& opt) {
370 return !opt;
374 constexpr bool operator!=(const Optional<T>& opt, nullopt_t) {
375 return !!opt;
379 constexpr bool operator!=(nullopt_t, const Optional<T>& opt) {
380 return !!opt;
384 constexpr bool operator<(const Optional<T>& opt, nullopt_t) {
389 constexpr bool operator<(nullopt_t, const Optional<T>& opt) {
    [all...]
  /art/test/536-checker-intrinsic-optimization/src/
Main.java 50 assertIntEquals(0, $opt$noinline$getStringLength(""));
51 assertIntEquals(3, $opt$noinline$getStringLength("abc"));
52 assertIntEquals(10, $opt$noinline$getStringLength("0123456789"));
54 assertBooleanEquals(true, $opt$noinline$isStringEmpty(""));
55 assertBooleanEquals(false, $opt$noinline$isStringEmpty("abc"));
56 assertBooleanEquals(false, $opt$noinline$isStringEmpty("0123456789"));
58 assertCharEquals('a', $opt$noinline$stringCharAt("a", 0));
59 assertCharEquals('a', $opt$noinline$stringCharAt("abc", 0));
60 assertCharEquals('b', $opt$noinline$stringCharAt("abc", 1));
61 assertCharEquals('c', $opt$noinline$stringCharAt("abc", 2))
    [all...]
  /external/syslinux/com32/lib/
getopt.c 23 int opt; local
55 /* Someone frobbed optind, change to new opt. */
59 opt = *pvt.optptr++;
61 if (opt != ':' && (osptr = strchr(optstring, opt))) {
81 return opt;
88 return opt;
92 optopt = opt;
  /external/iproute2/tc/
q_fifo.c 34 struct tc_fifo_qopt opt = {}; local
39 if (get_size(&opt.limit, *argv)) {
56 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
60 static int fifo_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
64 if (opt == NULL)
67 if (RTA_PAYLOAD(opt) < sizeof(*qopt))
69 qopt = RTA_DATA(opt);
97 extern int prio_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt);
q_prio.c 35 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)) {
71 if (band >= opt.bands) {
79 opt.priomap[idx++] = band;
87 opt.priomap[idx] = opt.priomap[TC_PRIO_BESTEFFORT];
90 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
97 int prio_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
103 if (opt == NULL
    [all...]
q_rr.c 36 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)) {
72 if (band > opt.bands) {
80 opt.priomap[idx++] = band;
85 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
92 static int rr_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
98 if (opt == NULL)
101 if (parse_rtattr_nested_compat(tb, TCA_PRIO_MAX, opt, qopt,
q_mqprio.c 36 struct tc_mqprio_qopt opt = { local
48 if (get_u8(&opt.num_tc, *argv, 10)) {
55 if (get_u8(&opt.prio_tc_map[idx], *argv, 10)) {
62 opt.prio_tc_map[idx] = 0;
74 if (get_u16(&opt.count[idx], tok, 10)) {
80 if (get_u16(&opt.offset[idx], tok, 10)) {
90 if (get_u8(&opt.hw, *argv, 10)) {
105 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
109 static int mqprio_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
    [all...]
  /art/test/439-npe/src/
Main.java 40 public static void $opt$noinline$setObjectField(Main m) {
45 public static void $opt$noinline$setIntField(Main m) {
50 public static void $opt$noinline$setFloatField(Main m) {
55 public static void $opt$noinline$setLongField(Main m) {
60 public static void $opt$noinline$setDoubleField(Main m) {
65 public static void $opt$noinline$setByteField(Main m) {
70 public static void $opt$noinline$setBooleanField(Main m) {
75 public static void $opt$noinline$setCharField(Main m) {
80 public static void $opt$noinline$setShortField(Main m) {
85 public static Object $opt$noinline$getObjectField(Main m)
    [all...]
  /external/libxml2/win32/
configure.js 85 function boolToStr(opt)
87 if (opt == false)
89 else if (opt == true)
97 function strToBool(opt)
99 if (opt == 0 || opt == "no")
101 else if (opt == 1 || opt == "yes")
459 var arg, opt;
461 opt = arg.substring(0, arg.indexOf("="))
    [all...]
  /art/tools/golem/
env 43 ALL_TARGETS=(art-interpreter art-opt art-jit art-jit-cc art-opt-cc art-opt-debuggable art-vdex)
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
initializer_list.pass.cpp 77 optional<std::vector<int>> opt(in_place, {3, 1});
78 assert(static_cast<bool>(opt) == true);
79 assert((*opt == std::vector<int>{3, 1}));
80 assert(opt->size() == 2);
83 optional<std::vector<int>> opt(in_place, {3, 1}, std::allocator<int>());
84 assert(static_cast<bool>(opt) == true);
85 assert((*opt == std::vector<int>{3, 1}));
86 assert(opt->size() == 2);
90 constexpr optional<Y> opt(in_place, {3, 1});
91 static_assert(static_cast<bool>(opt) == true, "")
    [all...]
  /external/ltp/utils/sctp/lib/
opt_info.c 36 sctp_opt_info(int sd, sctp_assoc_t id, int opt, void *arg, socklen_t *size)
38 switch (opt) {
57 return getsockopt(sd, IPPROTO_SCTP, opt, arg, size);
  /external/toybox/lib/
args.c 69 // ; long option's argument is optional (can only be supplied with --opt=)
111 // stored in related short option struct, but if opt->c = -1 the long option
115 struct opts *opt; member in struct:longopts
132 static int gotflag(struct getoptflagstate *gof, struct opts *opt)
137 if (!opt) {
143 if (toys.optflags & opt->dex[0]) {
149 if (clr->arg && (i & toys.optflags & opt->dex[0])) *clr->arg = 0;
150 toys.optflags &= ~opt->dex[0];
154 toys.optflags |= opt->dex[1];
155 gof->excludes |= opt->dex[2]
353 struct opts *opt; local
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Driver/
XRayArgs.h 30 XRayArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
31 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
32 llvm::opt::ArgStringList &CmdArgs, types::ID InputType) const;

Completed in 556 milliseconds

<<11121314151617181920>>