Searched refs:SomeObject (Results 1 – 10 of 10) sorted by relevance
/third_party/node/deps/v8/tools/gcmole/ |
D | gcmole-test.cc | 66 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/ |
D | when-referenced-project-change-introduces-error-in-the-down-stream-project-and-then-fixes-it.js | 17 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/ |
D | arkts-no-ctor-signatures-type-4-ok.ets | 18 class SomeObject { 25 function fn(s: string): SomeObject { 26 return new SomeObject(s)
|
D | arkts-no-ctor-signatures-type-4-error.ets | 18 class SomeObject {} 21 new (s: string): SomeObject
|
/third_party/typescript/tests/issues_cookbook_tests/pages/cookbook/ |
D | 5.8.ets | 2 class SomeObject { 5 new(s: string): SomeObject // should report
|
/third_party/typescript/tests/cases/conformance/controlFlow/ |
D | controlFlowOptionalChain.ts | 561 interface SomeObject { interface 567 function someFunction(someOptionalObject: SomeObject | undefined): void { 575 const someObject: SomeObject = {
|
/third_party/typescript/tests/baselines/reference/ |
D | controlFlowOptionalChain.types | 1970 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 …]
|
D | controlFlowOptionalChain.symbols | 1744 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 …]
|
D | controlFlowOptionalChain.js | 559 interface SomeObject { 565 function someFunction(someOptionalObject: SomeObject | undefined): void { 573 const someObject: SomeObject = {
|
D | controlFlowOptionalChain.errors.txt | 742 interface SomeObject { 748 function someFunction(someOptionalObject: SomeObject | undefined): void { 758 const someObject: SomeObject = {
|