| /third_party/typescript/tests/baselines/reference/ |
| D | spyComparisonChecking.types | 33 function mock<T>(spyName: string, methodNames: Array<keyof T>): SpyObj<T> { 34 >mock : <T>(spyName: string, methodNames: Array<keyof T>) => SpyObj<T> 36 >methodNames : (keyof T)[] 38 const spyObj = createSpyObj<T>(spyName, methodNames); 40 >createSpyObj<T>(spyName, methodNames) : SpyObj<T> 43 >methodNames : (keyof T)[] 45 for (const methodName of methodNames) { 47 >methodNames : (keyof T)[]
|
| D | spyComparisonChecking.js | 18 function mock<T>(spyName: string, methodNames: Array<keyof T>): SpyObj<T> { 19 const spyObj = createSpyObj<T>(spyName, methodNames); 20 for (const methodName of methodNames) { 27 function mock(spyName, methodNames) { 28 var spyObj = createSpyObj(spyName, methodNames); 29 for (var _i = 0, methodNames_1 = methodNames; _i < methodNames_1.length; _i++) {
|
| D | spyComparisonChecking.symbols | 46 function mock<T>(spyName: string, methodNames: Array<keyof T>): SpyObj<T> { 50 >methodNames : Symbol(methodNames, Decl(spyComparisonChecking.ts, 16, 33)) 56 const spyObj = createSpyObj<T>(spyName, methodNames); 61 >methodNames : Symbol(methodNames, Decl(spyComparisonChecking.ts, 16, 33)) 63 for (const methodName of methodNames) { 65 >methodNames : Symbol(methodNames, Decl(spyComparisonChecking.ts, 16, 33))
|
| D | spyComparisonChecking.errors.txt | 21 function mock<T>(spyName: string, methodNames: Array<keyof T>): SpyObj<T> { 22 const spyObj = createSpyObj<T>(spyName, methodNames); 23 for (const methodName of methodNames) {
|
| D | underscoreTest1.js | 71 bindAll(...methodNames: string[]): T; 557 bindAll<T>(object: T, ...methodNames: string[]): T;
|
| D | underscoreTest1.types | 848 >_.bindAll : <T>(object: T, ...methodNames: string[]) => T 850 >bindAll : <T>(object: T, ...methodNames: string[]) => T 1895 bindAll(...methodNames: string[]): T; 1896 >bindAll : (...methodNames: string[]) => T 1897 >methodNames : string[] 3898 bindAll<T>(object: T, ...methodNames: string[]): T; 3899 >bindAll : <T>(object: T, ...methodNames: string[]) => T 3901 >methodNames : string[]
|
| D | underscoreTest1.errors.txt | 341 bindAll(...methodNames: string[]): T; 827 bindAll<T>(object: T, ...methodNames: string[]): T;
|
| D | underscoreTest1.symbols | 1200 bindAll(...methodNames: string[]): T; 1202 >methodNames : Symbol(methodNames, Decl(underscoreTest1_underscore.ts, 67, 16)) 4596 bindAll<T>(object: T, ...methodNames: string[]): T; 4601 >methodNames : Symbol(methodNames, Decl(underscoreTest1_underscore.ts, 553, 29))
|
| /third_party/protobuf/php/tests/ |
| D | GeneratedServiceTest.php | 28 private $methodNames = [ variable in GeneratedServiceTest 59 $this->assertCount(count($this->methodNames), $this->serviceClass->getMethods()); 60 foreach ($this->methodNames as $methodName) { 67 foreach ($this->methodNames as $methodName) { 77 foreach ($this->methodNames as $methodName) { 87 foreach ($this->methodNames as $methodName) { 100 foreach ($this->methodNames as $methodName) {
|
| /third_party/typescript/tests/cases/compiler/ |
| D | spyComparisonChecking.ts | 17 function mock<T>(spyName: string, methodNames: Array<keyof T>): SpyObj<T> { 18 const spyObj = createSpyObj<T>(spyName, methodNames); 19 for (const methodName of methodNames) {
|
| D | underscoreTest1.ts | 69 bindAll(...methodNames: string[]): T; 555 bindAll<T>(object: T, ...methodNames: string[]): T;
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| D | Platform.cpp | 31 const char *const methodNames[], in ANGLEGetDisplayPlatform() argument 50 const char *actualName = methodNames[nameIndex]; in ANGLEGetDisplayPlatform()
|
| /third_party/jsframework/test/ut/model/ |
| D | directive.ts | 43 function extendVm(vm, methodNames) { 44 methodNames.forEach((name) => {
|
| /third_party/skia/third_party/externals/angle2/include/platform/ |
| D | PlatformMethods.h | 316 const char *const methodNames[],
|
| /third_party/typescript/src/compiler/ |
| D | utilities.ts | 2236 const methodNames = compilerOptions.ets?.render?.method; constant 2238 if (!methodNames && !decoratorName) { 2245 if (methodNames && isMethodDeclaration(container) && isInStruct(container)) { 2247 if (methodNames.some(name => name === containerMethodName)) {
|
| /third_party/typescript/lib/ |
| D | typingsInstaller.js | 16673 …var methodNames = (_b = (_a = compilerOptions.ets) === null || _a === void 0 ? void 0 : _a.render)… 16675 if (!methodNames && !decoratorName) { 16681 if (methodNames && ts.isMethodDeclaration(container) && isInStruct(container)) { 16683 if (methodNames.some(function (name) { return name === containerMethodName_1; })) {
|
| D | tsc.js | 13010 …var methodNames = (_b = (_a = compilerOptions.ets) === null || _a === void 0 ? void 0 : _a.render)… 13012 if (!methodNames && !decoratorName) { 13017 if (methodNames && ts.isMethodDeclaration(container) && isInStruct(container)) { 13019 if (methodNames.some(function (name) { return name === containerMethodName_1; })) {
|