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

<<11121314151617181920>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.object/optional.object.assign/
emplace.pass.cpp 61 optional<int> opt; local
62 opt.emplace();
63 assert(static_cast<bool>(opt) == true);
64 assert(*opt == 0);
67 optional<int> opt; local
68 opt.emplace(1);
69 assert(static_cast<bool>(opt) == true);
70 assert(*opt == 1);
73 optional<int> opt(2);
74 opt.emplace()
91 optional<X> opt; local
97 optional<X> opt; local
103 optional<X> opt; local
    [all...]
emplace_initializer_list.pass.cpp 78 optional<X> opt(x);
80 opt.emplace({1, 2});
82 assert(*opt == X({1, 2}));
89 optional<const X> opt(x);
91 opt.emplace({1, 2});
93 assert(*opt == X({1, 2}));
97 optional<std::vector<int>> opt; local
98 opt.emplace({1, 2, 3}, std::allocator<int>());
99 assert(static_cast<bool>(opt) == true);
100 assert(*opt == std::vector<int>({1, 2, 3}))
103 optional<Y> opt; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/optional/optional.object/optional.object.assign/
emplace.pass.cpp 51 using Opt = std::optional<T>;
53 Opt opt; local
54 auto & v = opt.emplace();
56 assert(static_cast<bool>(opt) == true);
57 assert(*opt == T(0));
58 assert(&v == &*opt);
61 Opt opt; local
62 auto & v = opt.emplace(1)
93 Opt opt; local
101 Opt opt; local
109 Opt opt; local
122 optional<T> opt; local
240 optional<const int> opt; local
    [all...]
emplace_initializer_list.pass.cpp 77 optional<X> opt(x);
79 auto &v = opt.emplace({1, 2});
82 assert(*opt == X({1, 2}));
83 assert(&v == &*opt);
86 optional<std::vector<int>> opt; local
87 auto &v = opt.emplace({1, 2, 3}, std::allocator<int>());
89 assert(static_cast<bool>(opt) == true);
90 assert(*opt == std::vector<int>({1, 2, 3}));
91 assert(&v == &*opt);
94 optional<Y> opt; local
    [all...]
move.pass.cpp 58 optional<int> opt; local
60 opt = std::move(opt2);
62 assert(static_cast<bool>(opt) == static_cast<bool>(opt2));
65 optional<int> opt; local
67 opt = std::move(opt2);
70 assert(static_cast<bool>(opt) == static_cast<bool>(opt2));
71 assert(*opt == *opt2);
74 optional<int> opt(3);
76 opt = std::move(opt2);
78 assert(static_cast<bool>(opt) == static_cast<bool>(opt2))
105 optional<X> opt; local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
aggressive_dead_code_elim_pass.h 33 namespace opt { namespace in namespace:spvtools
132 } // namespace opt
def_use_manager.h 27 namespace opt { namespace in namespace:spvtools
132 } // namespace opt
eliminate_dead_constant_pass.cpp 26 namespace opt { namespace in namespace:spvtools
116 } // namespace opt
fold_spec_constant_op_and_composite_pass.h 29 namespace opt { namespace in namespace:spvtools
172 } // namespace opt
inline_exhaustive_pass.cpp 20 namespace opt { namespace in namespace:spvtools
73 } // namespace opt
inline_pass.h 31 namespace opt { namespace in namespace:spvtools
211 } // namespace opt
local_single_block_elim_pass.h 34 namespace opt { namespace in namespace:spvtools
107 } // namespace opt
pass.cpp 22 namespace opt { namespace in namespace:spvtools
63 } // namespace opt
pass.h 30 namespace opt { namespace in namespace:spvtools
82 } // namespace opt
pass_manager.h 28 namespace opt { namespace in namespace:spvtools
98 } // namespace opt
type_manager.h 28 namespace opt { namespace in namespace:spvtools
95 } // namespace opt
  /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...]
  /test/vts/drivers/hal/server/
VtsHalDriverServerMain.cpp 76 int opt = getopt_long(argc, argv, short_opts, long_opts, nullptr); local
77 if (opt == -1) {
81 switch (opt) {
104 cerr << "getopt_long returned unexpected value " << opt << endl;
  /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...]
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/include/
key.h 43 const char *opt; /* Command line option to specify a key */ member in struct:key_s
52 key_t *key_get_by_opt(const char *opt);

Completed in 417 milliseconds

<<11121314151617181920>>