Home
last modified time | relevance | path

Searched defs:o2 (Results 1 – 25 of 221) sorted by relevance

123456789

/third_party/boost/libs/optional/test/
Doptional_test_ref_converting_ctor.cpp32 optional<T&> o1 = v1, o1_ = v1, o2 = v2; in test_converting_ctor() local
45 const optional<T&> o1 = v1, o1_ = v1, o2 = v2; in test_converting_ctor() local
65 optional<const T&> o1 = v1, o1_ = v1, o2 = v2; in test_converting_ctor_for_noconst_const() local
78 const optional<const T&> o1 = v1, o1_ = v1, o2 = v2; in test_converting_ctor_for_noconst_const() local
Doptional_test_move.cpp80 optional<Oracle> o2 (v1); in test_move_ctor_from_U() local
98 optional<Oracle> o2 (v1); in test_move_ctor_form_T() local
112 optional<Oracle> o2(boost::move(o1)); in test_move_ctor_from_optional_T() local
148 optional<Oracle> o2; in test_move_assign_from_U() local
177 optional<Oracle> o2; in test_move_assign_from_T() local
197 optional<Oracle> o2; in test_move_assign_from_optional_T() local
236 optional<MoveOnly> o2((MoveOnly(1))); in test_with_move_only() local
Doptional_test_ref_portable_minimum.cpp133 optional<T&> o2 = none; in test_not_containing_value_for() local
206 optional<U&> o1(v), o2(v); in test_clearing_the_value() local
227 optional<U&> o1(v1), o2(v2), o2_(v2_), o3(v3), o3_(v3), oN, oN_; in test_equality() local
263 optional<U&> o1(v1), o2(v2), o2_(v2_), o3(v3), o3_(v3), oN, oN_; in test_order() local
406 optional<U&> o1(v1), o1_(v1), o2(v2), o2_(v2), oN, oN_; in test_swap() local
/third_party/typescript/tests/baselines/reference/
DspreadIntersection.js7 var o2: { a: number, b: string, c: boolean }; variable
8 var o2 = { ...intersection, c: false }; variable
25 var o2; variable
DinfinitelyExpandingTypes3.js17 var o2: OwnerList2<number>; variable
23 var o2; variable
DobjectSpreadSetonlyAccessor.js3 const o2: { foo: undefined } = { foo: 1, ... { set foo(_v: number) { } } } variable
9 const o2 = { foo: 1, ...{ set foo(_v) { } } }; variable
DtypeofUsedBeforeBlockScoped.js7 let o2: typeof o; variable
18 var o2; variable
DspreadUnion2.js8 var o2: {} | { b: number }; variable
37 var o2; variable
DobjectTypeWithStringIndexerHidingObjectIndexer.js25 var o2: { variable
48 var o2; variable
DtrailingCommasES5.js3 var o2 = { a: 1, b: 2, }; variable
16 var o2 = { a: 1, b: 2, }; variable
DtrailingCommasES3.js3 var o2 = { a: 1, b: 2, }; variable
16 var o2 = { a: 1, b: 2 }; variable
Demitter.asyncGenerators.objectLiteralMethods.es2018.js9 const o2 = { variable
52 const o2 = { variable
DescapedReservedCompilerNamedIdentifier.js14 var o2 = { variable
46 var o2 = { variable
/third_party/typescript/tests/cases/compiler/
DspreadIntersection.ts6 var o2: { a: number, b: string, c: boolean }; variable
7 var o2 = { ...intersection, c: false }; variable
/third_party/boost/libs/endian/test/
Dendian_operations_test.cpp73 T2 o2(1); in test() local
84 T1 o2(2); in test() local
95 T2 o2; in test() local
109 T2 o2(2); in test() local
146 T2 o2(2); in test() local
165 T2 o2(2); in test() local
373 be::big_int32_t o2(2L); in cpp_main() local
/third_party/boost/libs/mpl/test/
Dset.cpp53 typedef BOOST_DEDUCED_TYPENAME order<s,char>::type o2; in empty_set_test() typedef
83 typedef BOOST_DEDUCED_TYPENAME order<s,char>::type o2; in int_set_test() typedef
113 typedef BOOST_DEDUCED_TYPENAME order<s,char>::type o2; in int_char_set_test() typedef
144 typedef BOOST_DEDUCED_TYPENAME order<s,char>::type o2; in int_char_long_set_test() typedef
/third_party/typescript/tests/cases/conformance/types/spread/
DspreadUnion2.ts9 var o2: {} | { b: number }; variable
10 var o2 = { ...nullUnion }; variable
DobjectSpread.ts4 let o2 = { b: 'yes', c: true } variable
48 let o2 = { ...b && { x: 21 }} variable
57 let o2 = { ...nt && { x: nt }} variable
66 let o2 = { ...st && { x: st }} variable
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineSpecConstantUtil.hpp92 std::vector<T> makeVector (const T& o1, const T& o2) in makeVector()
102 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3) in makeVector()
113 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3, const T& o4) in makeVector()
/third_party/boost/libs/outcome/test/tests/
Dissue0116.cpp41 …out::outcome<int> o2 = out::failure(boost::system::error_code{EINVAL, boost::system::generic_categ… variable
Dissue0115.cpp42 out::outcome<int> o2 = out::failure(boost::system::error_code{}); variable
/third_party/typescript/tests/cases/conformance/salsa/
DtypeFromContextualThisType.ts15 const o2 = { constant
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/elementAccessChain/
DelementAccessChain.2.ts6 declare const o2: undefined | { b: { c: string } }; constant
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/propertyAccessChain/
DpropertyAccessChain.2.ts6 declare const o2: undefined | { b: { c: string } }; constant
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/
DcallChain.2.ts6 declare const o2: undefined | { b: () => number }; constant

123456789