Home
last modified time | relevance | path

Searched refs:opt2 (Results 1 – 25 of 35) sorted by relevance

12

/third_party/boost/libs/optional/test/
Doptional_test_deleted_default_ctor.cpp42 boost::optional< std::pair<const_buffers_type, int> > opt, opt2; in test_beast_example() local
43 opt = opt2; in test_beast_example()
55 boost::optional<NotDefaultConstructible> opt, opt2; in test_assign_for_non_default_constructible() local
56 opt = opt2; in test_assign_for_non_default_constructible()
Doptional_test_fail3b.cpp24 boost::optional<B> opt2; in test_no_unsupported_conversion() local
25 opt2 = opt1 ; // Cannot convert from "A" to "B" in test_no_unsupported_conversion()
Doptional_test_ref_fail3.cpp20 boost::optional<int&> opt2 = opt1 ; in optional_reference__test_no_converting_ctor() local
Doptional_test_fail3a.cpp22 boost::optional< std::string > opt2( opt1 ) ; // Cannot convert from "int" to "std::string" in test_no_unsupported_conversion() local
Doptional_test_fail_copying_a_moveable_type.cpp33 boost::optional<MoveOnly> opt2(opt1) ; in test_copying_optional_with_noncopyable_T() local
Doptional_test.cpp720 optional<T> opt2(v2); in test_relops() local
754 BOOST_TEST ( opt1 == opt2 ) ; in test_relops()
757 BOOST_TEST ( opt1 <= opt2 ) ; in test_relops()
769 BOOST_TEST ( v1 == opt2 ) ; in test_relops()
772 BOOST_TEST ( v1 <= opt2 ) ; in test_relops()
/third_party/ffmpeg/libswscale/x86/
Dswscale.c338 #define VSCALE_FUNCS(opt1, opt2) \ argument
340 VSCALE_FUNC(9, opt2); \
341 VSCALE_FUNC(10, opt2); \
400 #define ASSIGN_SCALE_FUNC2(hscalefn, filtersize, opt1, opt2) do { \ in ff_sws_init_swscale_x86() argument
402 hscalefn = c->dstBpc <= 14 ? ff_hscale8to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
405 hscalefn = c->dstBpc <= 14 ? ff_hscale9to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
408 hscalefn = c->dstBpc <= 14 ? ff_hscale10to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
411 hscalefn = c->dstBpc <= 14 ? ff_hscale12to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
414 hscalefn = c->dstBpc <= 14 ? ff_hscale14to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
418 hscalefn = c->dstBpc <= 14 ? ff_hscale16to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
[all …]
/third_party/typescript/src/server/
DtypingsCache.ts66 function typeAcquisitionChanged(opt1: TypeAcquisition, opt2: TypeAcquisition): boolean {
67 return opt1.enable !== opt2.enable ||
68 !setIsEqualTo(opt1.include, opt2.include) ||
69 !setIsEqualTo(opt1.exclude, opt2.exclude);
72 function compilerOptionsChanged(opt1: CompilerOptions, opt2: CompilerOptions): boolean {
74 return getAllowJSCompilerOption(opt1) !== getAllowJSCompilerOption(opt2);
/third_party/boost/libs/program_options/example/
Dreal.cpp18 const char* opt1, const char* opt2) in conflicting_options() argument
21 && vm.count(opt2) && !vm[opt2].defaulted()) in conflicting_options()
23 + opt1 + "' and '" + opt2 + "'."); in conflicting_options()
/third_party/boost/libs/optional/doc/
D18_exception_safety.qbk32 optional<T> opt2(val2);
34 assert(opt2);
38 opt1 = opt2; // throws
43 assert(opt2);
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Doptional_test.cc340 constexpr absl::optional<ConstexprType> opt2{absl::in_place_t(), {1, 2}}; in TEST() local
341 static_assert(opt2, ""); in TEST()
342 static_assert((*opt2).x == ConstexprType::kCtorInitializerList, ""); in TEST()
376 constexpr absl::optional<ConstexprType> opt2{2}; in TEST() local
377 static_assert(opt2, ""); in TEST()
378 static_assert(ConstexprType::kCtorInt == (*opt2).x, ""); in TEST()
538 absl::optional<Listenable> opt2(absl::in_place, 1, 2); in TEST() local
539 EXPECT_TRUE(opt2); in TEST()
592 const absl::optional<int> empty, opt1 = 1, opt2 = 2; in TEST() local
606 opt1_to_opt2 = opt2; in TEST()
[all …]
/third_party/abseil-cpp/absl/types/
Doptional_test.cc340 constexpr absl::optional<ConstexprType> opt2{absl::in_place_t(), {1, 2}}; in TEST() local
341 static_assert(opt2, ""); in TEST()
342 static_assert((*opt2).x == ConstexprType::kCtorInitializerList, ""); in TEST()
376 constexpr absl::optional<ConstexprType> opt2{2}; in TEST() local
377 static_assert(opt2, ""); in TEST()
378 static_assert(ConstexprType::kCtorInt == (*opt2).x, ""); in TEST()
538 absl::optional<Listenable> opt2(absl::in_place, 1, 2); in TEST() local
539 EXPECT_TRUE(opt2); in TEST()
592 const absl::optional<int> empty, opt1 = 1, opt2 = 2; in TEST() local
606 opt1_to_opt2 = opt2; in TEST()
[all …]
/third_party/boost/libs/program_options/src/
Dcmdline.cpp329 option& opt2 = result[j]; in run() local
330 if (!opt2.string_key.empty()) in run()
333 if (opt2.position_key == INT_MAX) in run()
341 assert(opt2.value.size() == 1); in run()
343 opt.value.push_back(opt2.value[0]); in run()
345 assert(opt2.original_tokens.size() == 1); in run()
347 opt.original_tokens.push_back(opt2.original_tokens[0]); in run()
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
Dcommon.h12 #define OPT_COLLIDING(prog, opt1, opt2) do { \ argument
15 prog, opt1, opt2); \
/third_party/ffmpeg/libavcodec/x86/
Dhevcdsp_init.c176 #define mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) … argument
182 …ff_hevc_put_hevc_##name##width3##_10_##opt2(dst+ width2, src+ width4, _srcstride, height, mx, my, …
185 #define mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) … argument
192 …ff_hevc_put_hevc_bi_##name##width3##_10_##opt2(dst+width4, dststride, src+width4, _srcstride, src2…
196 #define mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) … argument
203 …ff_hevc_put_hevc_uni_##name##width3##_10_##opt2(dst+width4, dststride, src+width4, _srcstride, …
207 #define mc_rep_mixs_10(name, width1, width2, width3, opt1, opt2, width4) \ argument
208 mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
209 mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
210 mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4)
[all …]
/third_party/node/test/sequential/
Dtest-dgram-bind-shared-ports.js101 const opt2 = { address, port: common.PORT, exclusive: false }; variable
106 socket2.bind(opt2, common.mustCall(() => {
/third_party/typescript/tests/baselines/reference/
DfunctionImplementations.js108 function opt2(n = { x: null, y: undefined }) { function
279 function opt2(n) {
DfunctionImplementations.symbols218 function opt2(n = { x: null, y: undefined }) {
219 >opt2 : Symbol(opt2, Decl(functionImplementations.ts, 103, 1))
DfunctionImplementations.types263 function opt2(n = { x: null, y: undefined }) {
264 >opt2 : (n?: { x: any; y: any; }) => void
/third_party/lwip/src/netif/ppp/
Dccp.c1388 static const char *method_name(ccp_options *opt, ccp_options *opt2) { in method_name() argument
1391 LWIP_UNUSED_ARG(opt2); in method_name()
1424 if (opt2 != NULL && opt2->deflate_size != opt->deflate_size) in method_name()
1427 opt->deflate_size, opt2->deflate_size); in method_name()
1436 if (opt2 != NULL && opt2->bsd_bits != opt->bsd_bits) in method_name()
1438 opt->bsd_bits, opt2->bsd_bits); in method_name()
/third_party/typescript/tests/cases/conformance/functions/
DfunctionImplementations.ts109 function opt2(n = { x: null, y: undefined }) { function
/third_party/node/test/parallel/
Dtest-crypto-keygen.js1015 for (const [opt1, opt2] of incompatible) {
1019 [opt2]: allOpts[opt2]
1025 `"${opt2}"`
/third_party/boringssl/src/crypto/fipsmodule/sha/asm/
Dsha1-armv4-large.pl112 my ($a,$b,$c,$d,$e,$opt1,$opt2)=@_;
127 $opt2 @ F_xx_xx
/third_party/openssl/crypto/sha/asm/
Dsha1-armv4-large.pl110 my ($a,$b,$c,$d,$e,$opt1,$opt2)=@_;
125 $opt2 @ F_xx_xx
/third_party/popt/src/
Dpopt.c565 { const struct poptOption * opt2; in findOption() local
569 opt2 = findOption(arg.opt, longName, longNameLen, shortName, callback, in findOption()
571 if (opt2 == NULL) continue; in findOption()
576 return opt2; in findOption()

12