Home
last modified time | relevance | path

Searched refs:thing2 (Results 1 – 13 of 13) sorted by relevance

/third_party/boost/libs/detail/test/
Dis_xxx_test.cpp11 template <typename T1, typename T2 = int> struct thing2 {}; struct
15 BOOST_DETAIL_IS_XXX_DEF(thing2, is_xxx_test::thing2, 2);
18 BOOST_STATIC_ASSERT((!is_thing1<is_xxx_test::thing2<int> >::value));
20 BOOST_STATIC_ASSERT((is_thing2<is_xxx_test::thing2<int> >::value));
21 BOOST_STATIC_ASSERT((is_thing2<is_xxx_test::thing2<int, float> >::value));
/third_party/typescript/tests/baselines/reference/
DdeclarationEmitAliasExportStar.js9 export const thing2 = (param: things.ThingB) => null; function
32 exports.thing2 = void 0;
33 var thing2 = function (param) { return null; };
34 exports.thing2 = thing2;
44 export declare const thing2: (param: things.ThingB) => any;
DdeclarationEmitAliasExportStar.symbols11 export const thing2 = (param: things.ThingB) => null;
12 >thing2 : Symbol(thing2, Decl(index.ts, 1, 12))
DdeclarationEmitAliasExportStar.types9 export const thing2 = (param: things.ThingB) => null;
10 >thing2 : (param: things.ThingB) => any
/third_party/boost/tools/quickbook/test/doc-info/
Dduplicates-1.1.quickbook4 [id thing2]
6 [dirname thing2]
Dduplicates-1.5.quickbook6 [id thing2]
8 [dirname thing2]
/third_party/skia/tests/
DRefCntTest.cpp27 std::thread thing2(bounce_ref, ref); in test_refCnt() local
30 thing2.join(); in test_refCnt()
57 std::thread thing2(bounce_ref, ref); in test_weakRefCnt() local
62 thing2.join(); in test_weakRefCnt()
/third_party/flutter/skia/tests/
DRefCntTest.cpp27 std::thread thing2(bounce_ref, ref); in test_refCnt() local
30 thing2.join(); in test_refCnt()
57 std::thread thing2(bounce_ref, ref); in test_weakRefCnt() local
62 thing2.join(); in test_weakRefCnt()
/third_party/typescript/tests/cases/compiler/
DdeclarationEmitAliasExportStar.ts8 export const thing2 = (param: things.ThingB) => null; constant
/third_party/python/Lib/unittest/test/testmock/
Dtestpatch.py1449 def thing2(): pass function
1456 for func in thing1, thing2, thing3:
1478 def thing2(): pass function
1485 for func in thing1, thing2, thing3:
/third_party/abseil-cpp/absl/status/
Dstatusor_test.cc318 const absl::StatusOr<int> thing2; in TEST() local
319 EXPECT_DEATH_OR_THROW(thing2.value(), absl::UnknownError("")); in TEST()
/third_party/skia/third_party/externals/abseil-cpp/absl/status/
Dstatusor_test.cc369 const absl::StatusOr<int> thing2; in TEST() local
370 EXPECT_DEATH_OR_THROW(thing2.value(), absl::UnknownError("")); in TEST()
/third_party/python/Doc/library/
Dunittest.mock.rst1299 >>> thing2 = object()
1302 ... with patch('__main__.thing2', return_value=None) as child2: