HomeSort by relevance Sort by last modified time
    Searched defs:opt (Results 201 - 225 of 762) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
getopt.py 13 GetoptError -- exception (class) raised with 'opt' attribute, which is the
39 opt = '' variable in class:GetoptError
41 def __init__(self, msg, opt=''):
43 self.opt = opt
44 Exception.__init__(self, msg, opt)
144 def do_longs(opts, opt, longopts, args):
146 i = opt.index('=')
150 opt, optarg = opt[:i], opt[i+1:
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.assign/
emplace.pass.cpp 63 optional<int> opt; local
64 opt.emplace();
65 assert(static_cast<bool>(opt) == true);
66 assert(*opt == 0);
69 optional<int> opt; local
70 opt.emplace(1);
71 assert(static_cast<bool>(opt) == true);
72 assert(*opt == 1);
75 optional<int> opt(2);
76 opt.emplace()
87 optional<X> opt; local
93 optional<X> opt; local
99 optional<X> opt; local
    [all...]
emplace_initializer_list.pass.cpp 80 optional<X> opt(x);
82 opt.emplace({1, 2});
84 assert(*opt == X({1, 2}));
88 optional<std::vector<int>> opt; local
89 opt.emplace({1, 2, 3}, std::allocator<int>());
90 assert(static_cast<bool>(opt) == true);
91 assert(*opt == std::vector<int>({1, 2, 3}));
94 optional<Y> opt; local
95 opt.emplace({1, 2});
96 assert(static_cast<bool>(opt) == true)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.object/optional.object.assign/
emplace.pass.cpp 64 optional<int> opt; local
65 opt.emplace();
66 assert(static_cast<bool>(opt) == true);
67 assert(*opt == 0);
70 optional<int> opt; local
71 opt.emplace(1);
72 assert(static_cast<bool>(opt) == true);
73 assert(*opt == 1);
76 optional<int> opt(2);
77 opt.emplace()
88 optional<X> opt; local
94 optional<X> opt; local
100 optional<X> opt; local
    [all...]
emplace_initializer_list.pass.cpp 81 optional<X> opt(x);
83 opt.emplace({1, 2});
85 assert(*opt == X({1, 2}));
89 optional<std::vector<int>> opt; local
90 opt.emplace({1, 2, 3}, std::allocator<int>());
91 assert(static_cast<bool>(opt) == true);
92 assert(*opt == std::vector<int>({1, 2, 3}));
95 optional<Y> opt; local
96 opt.emplace({1, 2});
97 assert(static_cast<bool>(opt) == true)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
getopt.py 13 GetoptError -- exception (class) raised with 'opt' attribute, which is the
39 opt = '' variable in class:GetoptError
41 def __init__(self, msg, opt=''):
43 self.opt = opt
44 Exception.__init__(self, msg, opt)
144 def do_longs(opts, opt, longopts, args):
146 i = opt.index('=')
150 opt, optarg = opt[:i], opt[i+1:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
getopt.py 13 GetoptError -- exception (class) raised with 'opt' attribute, which is the
39 opt = '' variable in class:GetoptError
41 def __init__(self, msg, opt=''):
43 self.opt = opt
44 Exception.__init__(self, msg, opt)
144 def do_longs(opts, opt, longopts, args):
146 i = opt.index('=')
150 opt, optarg = opt[:i], opt[i+1:
    [all...]
  /system/core/storaged/
main.cpp 72 int opt; local
82 opt = getopt_long(argc, argv, ":skdhu0", long_options, &opt_idx);
83 if (opt == -1) {
87 switch (opt) {
  /test/vts-testcase/security/poc/target/
poc_test.cpp 82 int opt = 0; local
84 while ((opt = getopt_long_only(argc, argv, "", long_options, &index)) != -1) {
85 switch(opt) {
  /tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
BuildInfoAttributePreparerTest.java 44 OptionSetter opt = new OptionSetter(mPrep); local
45 opt.setOptionValue("build-attribute", "key", "value");
  /art/test/406-fields/src/
Main.java 21 $opt$testAll();
24 static void $opt$testAll() {
  /art/test/482-checker-loop-back-edge-use/src/
Main.java 168 static boolean $opt$noinline$ensureSideEffects() {
187 while ($opt$noinline$ensureSideEffects()) {
  /art/test/570-checker-osr/src/
Main.java 59 $opt$noinline$testOsrInlineLoop(null);
243 public static void $opt$noinline$testOsrInlineLoop(String[] args) {
246 assertIntEquals(12, $opt$inline$testRemoveSuspendCheck(12, 5));
249 ensureHasProfilingInfo("$opt$noinline$testOsrInlineLoop");
250 ensureHasOsrCode("$opt$noinline$testOsrInlineLoop");
253 public static int $opt$inline$testRemoveSuspendCheck(int x, int y) {
257 while ($opt$inline$inlineFalse() || !$opt$inline$inlineTrue()) {
265 public static boolean $opt$inline$inlineTrue() {
269 public static boolean $opt$inline$inlineFalse()
    [all...]
  /build/make/tools/fs_config/
fs_config.c 79 int opt; local
80 while((opt = getopt(argc, argv, "CS:D:")) != -1) {
81 switch(opt) {
  /external/clang/include/clang/Driver/
Options.h 14 namespace opt { namespace in namespace:llvm
24 /// llvm::opt::DriverFlag.
47 llvm::opt::OptTable *createDriverOptTable();
  /external/f2fs-tools/fsck/
main.c 159 struct dump_option *opt = (struct dump_option *)config.private; local
165 if (opt->end_sit == -1)
166 opt->end_sit = SM_I(sbi)->main_segments;
167 if (opt->end_ssa == -1)
168 opt->end_ssa = SM_I(sbi)->main_segments;
169 if (opt->start_sit != -1)
170 sit_dump(sbi, opt->start_sit, opt->end_sit);
171 if (opt->start_ssa != -1)
172 ssa_dump(sbi, opt->start_ssa, opt->end_ssa)
    [all...]
  /external/fio/engines/
glusterfs.c 38 struct gf_options *opt = td->eo; local
55 g->fs = glfs_new(opt->gf_vol);
62 r = glfs_set_volfile_server(g->fs, "tcp", opt->gf_brick, 0);
  /external/flatbuffers/src/
flathash.cpp 71 std::string opt = arg; local
72 if (opt == "-d") output_format = kDecimal;
73 else if (opt == "-x") output_format = kHexadecimal;
74 else if (opt == "-0x") output_format = kHexadecimal0x;
75 else if (opt == "-c") annotate = true;
76 else if (opt == "--") escape_dash = true;
  /external/iproute2/tc/
q_choke.c 37 struct tc_red_qopt opt; local
48 memset(&opt, 0, sizeof(opt));
53 if (get_unsigned(&opt.limit, *argv, 0)) {
67 if (get_unsigned(&opt.qth_min, *argv, 0)) {
73 if (get_unsigned(&opt.qth_max, *argv, 0)) {
106 if (!rate || !opt.limit) {
115 if (!opt.qth_max)
116 opt.qth_max = opt.limit / 4
    [all...]
q_red.c 38 struct tc_red_qopt opt; local
48 memset(&opt, 0, sizeof(opt));
53 if (get_size(&opt.limit, *argv)) {
59 if (get_size(&opt.qth_min, *argv)) {
65 if (get_size(&opt.qth_max, *argv)) {
94 opt.flags |= TC_RED_ECN;
96 opt.flags |= TC_RED_HARDDROP;
98 opt.flags |= TC_RED_ADAPTATIVE;
100 opt.flags |= TC_RED_ADAPTATIVE
    [all...]
  /external/libcxx/test/std/experimental/optional/optional.object/optional.object.swap/
swap.pass.cpp 121 optional<const ConstSwappable> opt; local
123 opt.swap(opt2);
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
const_optional_U.pass.cpp 89 optional<T> opt; local
91 opt = other;
99 assert(static_cast<bool>(opt) == true);
100 assert(*opt == T(42));
104 optional<T> opt(101);
107 opt = other;
115 assert(static_cast<bool>(opt) == true);
116 assert(*opt == T(42));
120 optional<T> opt(101);
123 opt = other
133 optional<T> opt; local
205 optional<int> opt; local
212 optional<int> opt; local
238 optional<X> opt; local
    [all...]
optional_U.pass.cpp 93 optional<T> opt; local
95 opt = std::move(other);
103 assert(static_cast<bool>(opt) == true);
104 assert(*opt == T(42));
108 optional<T> opt(101);
111 opt = std::move(other);
119 assert(static_cast<bool>(opt) == true);
120 assert(*opt == T(42));
124 optional<T> opt(101);
127 opt = std::move(other)
137 optional<T> opt; local
210 optional<int> opt; local
217 optional<int> opt; local
242 optional<std::unique_ptr<B>> opt; local
252 optional<X> opt; local
    [all...]
  /external/libmtp/examples/
albumart.c 42 int opt; local
59 while ( (opt = getopt(argc, argv, "hn:i:")) != -1 ) {
60 switch (opt) {
hotplug.c 53 int opt; local
61 while ( (opt = getopt(argc, argv, "uUiHa:")) != -1 ) {
62 switch (opt) {

Completed in 822 milliseconds

1 2 3 4 5 6 7 891011>>