| /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.errors.txt | 341 bindAll(...methodNames: string[]): T; 827 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.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/node/deps/npm/node_modules/es-to-primitive/ |
| D | es2015.js | 17 var methodNames = hint === 'string' ? ['toString', 'valueOf'] : ['valueOf', 'toString']; 19 for (i = 0; i < methodNames.length; ++i) { 20 method = O[methodNames[i]];
|
| /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/flutter/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/flutter/skia/third_party/externals/angle2/include/platform/ |
| D | Platform.h | 299 const char *const methodNames[],
|
| /third_party/skia/third_party/externals/angle2/include/platform/ |
| D | PlatformMethods.h | 316 const char *const methodNames[],
|
| /third_party/node/deps/npm/node_modules/promise-retry/node_modules/retry/ |
| D | README.md | 115 ### retry.wrap(obj, [options], [methodNames])
|
| /third_party/typescript/src/compiler/ |
| D | utilities.ts | 2250 const methodNames = compilerOptions.ets?.render?.method; constant 2252 if (!methodNames && !decoratorName) { 2259 if (methodNames && isMethodDeclaration(container) && isInStruct(container)) { 2261 if (methodNames.some(name => name === containerMethodName)) {
|