Home
last modified time | relevance | path

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

/third_party/typescript/tests/baselines/reference/
DimportAssertionNonstring.types2 import * as thing1 from "./mod.mjs" assert {field: 0};
3 >thing1 : typeof thing1
7 >thing2 : typeof thing1
11 >thing3 : typeof thing1
16 >thing4 : typeof thing1
22 >thing5 : typeof thing1
29 >thing6 : typeof thing1
DimportAssertionNonstring.symbols2 import * as thing1 from "./mod.mjs" assert {field: 0};
3 >thing1 : Symbol(thing1, Decl(mod.mts, 0, 6))
DimportAssertionNonstring.js2 import * as thing1 from "./mod.mjs" assert {field: 0};
DimportAssertionNonstring.errors.txt10 import * as thing1 from "./mod.mjs" assert {field: 0};
/third_party/typescript/tests/baselines/reference/tsbuild/declarationEmit/
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/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/typescript/src/testRunner/unittests/
DcompilerCore.ts158 const thing1: Thing = { constant
173 set.add(thing1);
179 assert.isTrue(set.has(thing1));
/third_party/typescript/tests/cases/compiler/
DimportAssertionNonstring.ts3 import * as thing1 from "./mod.mjs" assert {field: 0};
/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: