Home
last modified time | relevance | path

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

/third_party/node/deps/v8/tools/gcmole/
Dgcmole-test.cc66 class SomeObject : public Object { class
70 SomeObject& operator=(const Object& b) { in operator =()
75 DECL_CAST(SomeObject)
77 OBJECT_CONSTRUCTORS(SomeObject, Object);
81 SomeObject obj; in TestMethodCall()
82 Handle<SomeObject> so = handle(obj, isolate); in TestMethodCall()
91 SomeObject obj; in TestOperatorCall()
128 SomeObject so; in TestFollowingVirtualFunctions()
129 Handle<SomeObject> so_handle = handle(so, isolate); in TestFollowingVirtualFunctions()
149 SomeObject so; in TestFollowingStaticFunctions()
[all …]
/third_party/typescript/tests/baselines/reference/tsbuildWatch/programUpdates/
Dwhen-referenced-project-change-introduces-error-in-the-down-stream-project-and-then-fixes-it.js17 interface SomeObject
22 export function createSomeObject(): SomeObject
115 interface SomeObject {
118 export declare function createSomeObject(): SomeObject;
171 interface SomeObject
176 export function createSomeObject(): SomeObject
264 interface SomeObject {
267 export declare function createSomeObject(): SomeObject;
313 interface SomeObject
318 export function createSomeObject(): SomeObject
[all …]
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-ctor-signatures-type/
Darkts-no-ctor-signatures-type-4-ok.ets18 class SomeObject {
25 function fn(s: string): SomeObject {
26 return new SomeObject(s)
Darkts-no-ctor-signatures-type-4-error.ets18 class SomeObject {}
21 new (s: string): SomeObject
/third_party/typescript/tests/issues_cookbook_tests/pages/cookbook/
D5.8.ets2 class SomeObject {
5 new(s: string): SomeObject // should report
/third_party/typescript/tests/cases/conformance/controlFlow/
DcontrolFlowOptionalChain.ts561 interface SomeObject { interface
567 function someFunction(someOptionalObject: SomeObject | undefined): void {
575 const someObject: SomeObject = {
/third_party/typescript/tests/baselines/reference/
DcontrolFlowOptionalChain.types1970 interface SomeObject {
1978 function someFunction(someOptionalObject: SomeObject | undefined): void {
1979 >someFunction : (someOptionalObject: SomeObject | undefined) => void
1980 >someOptionalObject : SomeObject | undefined
1985 >someOptionalObject : SomeObject | undefined
1994 >someOptionalObject : SomeObject | undefined
2002 >someOptionalObject : SomeObject | undefined
2009 >someOptionalObject : SomeObject | undefined
2014 const someObject: SomeObject = {
2015 >someObject : SomeObject
[all …]
DcontrolFlowOptionalChain.symbols1744 interface SomeObject {
1745 >SomeObject : Symbol(SomeObject, Decl(controlFlowOptionalChain.ts, 553, 1))
1748 >someProperty : Symbol(SomeObject.someProperty, Decl(controlFlowOptionalChain.ts, 557, 22))
1754 function someFunction(someOptionalObject: SomeObject | undefined): void {
1757 >SomeObject : Symbol(SomeObject, Decl(controlFlowOptionalChain.ts, 553, 1))
1760 >someOptionalObject?.someProperty : Symbol(SomeObject.someProperty, Decl(controlFlowOptionalChain.t…
1762 >someProperty : Symbol(SomeObject.someProperty, Decl(controlFlowOptionalChain.ts, 557, 22))
1775 >someOptionalObject.someProperty : Symbol(SomeObject.someProperty, Decl(controlFlowOptionalChain.ts…
1777 >someProperty : Symbol(SomeObject.someProperty, Decl(controlFlowOptionalChain.ts, 557, 22))
1781 >someOptionalObject?.someProperty : Symbol(SomeObject.someProperty, Decl(controlFlowOptionalChain.t…
[all …]
DcontrolFlowOptionalChain.js559 interface SomeObject {
565 function someFunction(someOptionalObject: SomeObject | undefined): void {
573 const someObject: SomeObject = {
DcontrolFlowOptionalChain.errors.txt742 interface SomeObject {
748 function someFunction(someOptionalObject: SomeObject | undefined): void {
758 const someObject: SomeObject = {