Home
last modified time | relevance | path

Searched refs:thing1 (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/libs/detail/test/
Dis_xxx_test.cpp10 template <typename T> struct thing1 {}; struct
14 BOOST_DETAIL_IS_XXX_DEF(thing1, is_xxx_test::thing1, 1);
17 BOOST_STATIC_ASSERT((is_thing1<is_xxx_test::thing1<int> >::value));
19 BOOST_STATIC_ASSERT((!is_thing2<is_xxx_test::thing1<int> >::value));
/third_party/typescript/tests/baselines/reference/tsbuild/declarationEmit/initial-build/
Dwhen-declaration-file-used-inferred-type-from-referenced-project.js22 thing1: IThing;
31 const a: IThings = { thing1: { a: 'b' } }; property
32 return a.thing1;
65 thing1: IThing; property
120 var a = { thing1: { a: 'b' } };
121 return a.thing1;
/third_party/boost/tools/quickbook/test/doc-info/
Dduplicates-1.1.quickbook3 [id thing1]
5 [dirname thing1]
Dduplicates-1.5.quickbook5 [id thing1]
7 [dirname thing1]
/third_party/skia/tests/
DRefCntTest.cpp26 std::thread thing1(bounce_ref, ref); in test_refCnt() local
29 thing1.join(); in test_refCnt()
56 std::thread thing1(bounce_ref, ref); in test_weakRefCnt() local
61 thing1.join(); in test_weakRefCnt()
/third_party/flutter/skia/tests/
DRefCntTest.cpp26 std::thread thing1(bounce_ref, ref); in test_refCnt() local
29 thing1.join(); in test_refCnt()
56 std::thread thing1(bounce_ref, ref); in test_weakRefCnt() local
61 thing1.join(); in test_weakRefCnt()
/third_party/python/Lib/unittest/test/testmock/
Dtestpatch.py1444 def thing1(): pass function
1456 for func in thing1, thing2, thing3:
1473 def thing1(): pass function
1485 for func in thing1, thing2, thing3:
/third_party/python/Doc/library/
Dunittest.mock.rst1298 >>> thing1 = object()
1301 >>> with patch('__main__.thing1', return_value=None) as child1: