HomeSort by relevance Sort by last modified time
    Searched refs:opt (Results 76 - 100 of 1843) sorted by null

1 2 34 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.observe/
op_arrow.pass.cpp 38 optional<X> opt(X{});
39 assert(opt->test() == 3);
43 optional<X> opt; local
44 assert(opt->test() == 3);
value_or.pass.cpp 49 optional<X> opt(in_place, 2);
51 assert(std::move(opt).value_or(y) == 2);
52 assert(*opt == 0);
55 optional<X> opt(in_place, 2);
56 assert(std::move(opt).value_or(Y(3)) == 2);
57 assert(*opt == 0);
60 optional<X> opt; local
62 assert(std::move(opt).value_or(y) == 3);
63 assert(!opt);
66 optional<X> opt; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/
optional_const_void.fail.cpp 21 optional<const void> opt;
optional_void.fail.cpp 21 optional<void> opt;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.syn/
optional_const_lvalue_ref.fail.cpp 22 optional<const int&> opt;
optional_lvalue_ref.fail.cpp 22 optional<int&> opt;
optional_rvalue_ref.fail.cpp 22 optional<int&&> opt;
  /external/iproute2/tc/
q_sfb.c 54 struct tc_sfb_qopt opt; local
57 memset(&opt, 0, sizeof(opt));
58 opt.rehash_interval = 600*1000;
59 opt.warmup_time = 60*1000;
60 opt.penalty_rate = 10;
61 opt.penalty_burst = 20;
62 opt.increment = (SFB_MAX_PROB + 1000) / 2000;
63 opt.decrement = (SFB_MAX_PROB + 10000) / 20000;
68 if (get_u32(&opt.rehash_interval, *argv, 0))
    [all...]
q_multiq.c 46 struct tc_multiq_qopt opt; local
59 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
63 static int multiq_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
67 if (opt == NULL)
69 if (RTA_PAYLOAD(opt) < sizeof(*qopt))
72 qopt = RTA_DATA(opt);
q_sfq.c 41 struct tc_sfq_qopt_v1 opt; local
47 memset(&opt, 0, sizeof(opt));
52 if (get_size(&opt.v0.quantum, *argv)) {
59 if (get_integer(&opt.v0.perturb_period, *argv, 0)) {
66 if (get_u32(&opt.v0.limit, *argv, 0)) {
70 if (opt.v0.limit < 2) {
77 if (get_u32(&opt.v0.divisor, *argv, 0)) {
84 if (get_u32(&opt.v0.flows, *argv, 0)) {
91 if (get_u32(&opt.depth, *argv, 0))
    [all...]
  /art/test/414-static-fields/src/
Main.java 19 $opt$TestThisClassStaticField();
20 $opt$TestOtherClassStaticField();
21 $opt$TestAddThisClassStaticField();
22 $opt$TestAddOtherClassStaticField();
23 $opt$TestOtherClassWithClinitStaticField();
24 $opt$TestAccess();
33 static void $opt$TestThisClassStaticField() {
37 static void $opt$TestOtherClassStaticField() {
41 static void $opt$TestAddThisClassStaticField() {
46 static void $opt$TestAddOtherClassStaticField()
    [all...]
  /art/test/564-checker-negbitwise/src/
Main.java 38 /// CHECK-START-ARM64: int Main.$opt$noinline$notAnd(int, int) instruction_simplifier_arm64 (before)
45 /// CHECK-START-ARM64: int Main.$opt$noinline$notAnd(int, int) instruction_simplifier_arm64 (after)
51 /// CHECK-START-ARM64: int Main.$opt$noinline$notAnd(int, int) instruction_simplifier_arm64 (after)
55 /// CHECK-START-ARM64: int Main.$opt$noinline$notAnd(int, int) disassembly (after)
59 /// CHECK-START-ARM: int Main.$opt$noinline$notAnd(int, int) instruction_simplifier_arm (before)
66 /// CHECK-START-ARM: int Main.$opt$noinline$notAnd(int, int) instruction_simplifier_arm (after)
72 /// CHECK-START-ARM: int Main.$opt$noinline$notAnd(int, int) instruction_simplifier_arm (after)
76 /// CHECK-START-ARM: int Main.$opt$noinline$notAnd(int, int) disassembly (after)
79 public static int $opt$noinline$notAnd(int base, int mask) {
88 /// CHECK-START-ARM64: long Main.$opt$noinline$notOr(long, long) instruction_simplifier_arm64 (before
    [all...]
  /external/autotest/client/deps/pyxinput/
pyxinput.py 20 class Opt(object):
35 opt = Opt(ctypesgencore.options.default_values)
36 opt.libraries = ['X11']
37 opt.headers = ['/usr/include/X11/Xlib.h',
40 opt.output = 'xlib.py'
41 opt.other_known_names = ['None']
42 opt.gen()
45 opt = Opt(ctypesgencore.options.default_values
    [all...]
  /external/libcxx/test/std/experimental/optional/optional.object/optional.object.observe/
value_or.pass.cpp 49 optional<X> opt(in_place, 2);
51 assert(std::move(opt).value_or(y) == 2);
52 assert(*opt == 0);
55 optional<X> opt(in_place, 2);
56 assert(std::move(opt).value_or(Y(3)) == 2);
57 assert(*opt == 0);
60 optional<X> opt; local
62 assert(std::move(opt).value_or(y) == 3);
63 assert(!opt);
66 optional<X> opt; local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
bin2c.c 38 const char *opt = &argv[1][1]; local
39 if (*opt == '-')
40 ++opt;
41 ishelp = *opt == 'h' || *opt == 'H';
  /frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
RequestSync.java 88 String opt; local
89 while ((opt=nextOption()) != null) {
90 if (opt.equals("-h") || opt.equals("--help")) {
93 } else if (opt.equals("-n") || opt.equals("--account-name")) {
95 } else if (opt.equals("-t") || opt.equals("--account-type")) {
97 } else if (opt.equals("-a") || opt.equals("--authority"))
    [all...]
  /external/clang/include/clang/Driver/
ToolChain.h 26 namespace opt { namespace in namespace:llvm
71 const llvm::opt::ArgList &Args;
73 const llvm::opt::Arg *const CachedRTTIArg;
99 const llvm::opt::ArgList &Args);
107 static void addSystemInclude(const llvm::opt::ArgList &DriverArgs,
108 llvm::opt::ArgStringList &CC1Args,
110 static void addExternCSystemInclude(const llvm::opt::ArgList &DriverArgs,
111 llvm::opt::ArgStringList &CC1Args,
114 addExternCSystemIncludeIfExists(const llvm::opt::ArgList &DriverArgs,
115 llvm::opt::ArgStringList &CC1Args
    [all...]
  /external/elfutils/libdwfl/
argp-std.c 127 struct parse_opt *opt = calloc (1, sizeof (*opt)); local
128 if (opt == NULL)
130 state->hook = opt;
140 struct parse_opt *opt = state->hook; local
141 Dwfl *dwfl = opt->dwfl;
147 opt->dwfl = dwfl;
160 opt->e = arg;
166 struct parse_opt *opt = state->hook; local
167 if (opt->dwfl == NULL
186 struct parse_opt *opt = state->hook; local
211 struct parse_opt *opt = state->hook; local
224 struct parse_opt *opt = state->hook; local
244 struct parse_opt *opt = state->hook; local
261 struct parse_opt *opt = state->hook; local
350 struct parse_opt *opt = state->hook; local
362 struct parse_opt *opt = state->hook; local
    [all...]
  /art/test/404-optimizing-allocator/src/
Main.java 17 // Note that $opt$reg$ is a marker for the optimizing compiler to test
23 expectEquals(4, $opt$reg$TestLostCopy());
24 expectEquals(-10, $opt$reg$TestTwoLive());
25 expectEquals(-20, $opt$reg$TestThreeLive());
26 expectEquals(5, $opt$reg$TestFourLive());
27 expectEquals(10, $opt$reg$TestMultipleLive());
28 expectEquals(1, $opt$reg$TestWithBreakAndContinue());
29 expectEquals(-15, $opt$reg$testSpillInIf(5, 6, 7));
30 expectEquals(-567, $opt$reg$TestAgressiveLive1(1, 2, 3, 4, 5, 6, 7));
31 expectEquals(-77, $opt$reg$TestAgressiveLive2(1, 2, 3, 4, 5, 6, 7))
    [all...]
  /prebuilts/gdb/darwin-x86/bin/
python-config 13 '|'.join('--'+opt for opt in valid_opts))
32 for opt in opt_flags:
33 if opt == '--prefix':
36 elif opt == '--exec-prefix':
39 elif opt in ('--includes', '--cflags'):
42 if opt == '--cflags':
46 elif opt in ('--libs', '--ldflags'):
51 if opt == '--ldflags':
python2-config 13 '|'.join('--'+opt for opt in valid_opts))
32 for opt in opt_flags:
33 if opt == '--prefix':
36 elif opt == '--exec-prefix':
39 elif opt in ('--includes', '--cflags'):
42 if opt == '--cflags':
46 elif opt in ('--libs', '--ldflags'):
51 if opt == '--ldflags':
python2.7-config 13 '|'.join('--'+opt for opt in valid_opts))
32 for opt in opt_flags:
33 if opt == '--prefix':
36 elif opt == '--exec-prefix':
39 elif opt in ('--includes', '--cflags'):
42 if opt == '--cflags':
46 elif opt in ('--libs', '--ldflags'):
51 if opt == '--ldflags':
  /prebuilts/gdb/linux-x86/bin/
python-config 13 '|'.join('--'+opt for opt in valid_opts))
32 for opt in opt_flags:
33 if opt == '--prefix':
36 elif opt == '--exec-prefix':
39 elif opt in ('--includes', '--cflags'):
42 if opt == '--cflags':
46 elif opt in ('--libs', '--ldflags'):
51 if opt == '--ldflags':
python2-config 13 '|'.join('--'+opt for opt in valid_opts))
32 for opt in opt_flags:
33 if opt == '--prefix':
36 elif opt == '--exec-prefix':
39 elif opt in ('--includes', '--cflags'):
42 if opt == '--cflags':
46 elif opt in ('--libs', '--ldflags'):
51 if opt == '--ldflags':
python2.7-config 13 '|'.join('--'+opt for opt in valid_opts))
32 for opt in opt_flags:
33 if opt == '--prefix':
36 elif opt == '--exec-prefix':
39 elif opt in ('--includes', '--cflags'):
42 if opt == '--cflags':
46 elif opt in ('--libs', '--ldflags'):
51 if opt == '--ldflags':

Completed in 398 milliseconds

1 2 34 5 6 7 8 91011>>