/third_party/typescript/tests/baselines/reference/ |
D | computedPropertyNamesOnOverloads_ES5.symbols | 2 var methodName = "method"; 3 >methodName : Symbol(methodName, Decl(computedPropertyNamesOnOverloads_ES5.ts, 0, 3)) 11 [methodName](v: string); 12 >[methodName] : Symbol(C[methodName], Decl(computedPropertyNamesOnOverloads_ES5.ts, 2, 9)) 13 >methodName : Symbol(methodName, Decl(computedPropertyNamesOnOverloads_ES5.ts, 0, 3)) 16 [methodName](); 17 >[methodName] : Symbol(C[methodName], Decl(computedPropertyNamesOnOverloads_ES5.ts, 3, 28)) 18 >methodName : Symbol(methodName, Decl(computedPropertyNamesOnOverloads_ES5.ts, 0, 3)) 20 [methodName](v?: string) { } 21 >[methodName] : Symbol(C[methodName], Decl(computedPropertyNamesOnOverloads_ES5.ts, 4, 19)) [all …]
|
D | computedPropertyNamesOnOverloads_ES6.symbols | 2 var methodName = "method"; 3 >methodName : Symbol(methodName, Decl(computedPropertyNamesOnOverloads_ES6.ts, 0, 3)) 11 [methodName](v: string); 12 >[methodName] : Symbol(C[methodName], Decl(computedPropertyNamesOnOverloads_ES6.ts, 2, 9)) 13 >methodName : Symbol(methodName, Decl(computedPropertyNamesOnOverloads_ES6.ts, 0, 3)) 16 [methodName](); 17 >[methodName] : Symbol(C[methodName], Decl(computedPropertyNamesOnOverloads_ES6.ts, 3, 28)) 18 >methodName : Symbol(methodName, Decl(computedPropertyNamesOnOverloads_ES6.ts, 0, 3)) 20 [methodName](v?: string) { } 21 >[methodName] : Symbol(C[methodName], Decl(computedPropertyNamesOnOverloads_ES6.ts, 4, 19)) [all …]
|
D | computedPropertyNamesOnOverloads_ES5.types | 2 var methodName = "method"; 3 >methodName : string 13 [methodName](v: string); 14 >[methodName] : (v: string) => any 15 >methodName : string 18 [methodName](); 19 >[methodName] : () => any 20 >methodName : string 22 [methodName](v?: string) { } 23 >[methodName] : (v?: string) => void [all …]
|
D | computedPropertyNamesOnOverloads_ES6.types | 2 var methodName = "method"; 3 >methodName : string 13 [methodName](v: string); 14 >[methodName] : (v: string) => any 15 >methodName : string 18 [methodName](); 19 >[methodName] : () => any 20 >methodName : string 22 [methodName](v?: string) { } 23 >[methodName] : (v?: string) => void [all …]
|
D | computedPropertyNames2_ES5.symbols | 2 var methodName = "method"; 3 >methodName : Symbol(methodName, Decl(computedPropertyNames2_ES5.ts, 0, 3)) 11 [methodName]() { } 12 >[methodName] : Symbol(C[methodName], Decl(computedPropertyNames2_ES5.ts, 2, 9)) 13 >methodName : Symbol(methodName, Decl(computedPropertyNames2_ES5.ts, 0, 3)) 15 static [methodName]() { } 16 >[methodName] : Symbol(C[methodName], Decl(computedPropertyNames2_ES5.ts, 3, 22)) 17 >methodName : Symbol(methodName, Decl(computedPropertyNames2_ES5.ts, 0, 3))
|
D | computedPropertyNames2_ES6.symbols | 2 var methodName = "method"; 3 >methodName : Symbol(methodName, Decl(computedPropertyNames2_ES6.ts, 0, 3)) 11 [methodName]() { } 12 >[methodName] : Symbol(C[methodName], Decl(computedPropertyNames2_ES6.ts, 2, 9)) 13 >methodName : Symbol(methodName, Decl(computedPropertyNames2_ES6.ts, 0, 3)) 15 static [methodName]() { } 16 >[methodName] : Symbol(C[methodName], Decl(computedPropertyNames2_ES6.ts, 3, 22)) 17 >methodName : Symbol(methodName, Decl(computedPropertyNames2_ES6.ts, 0, 3))
|
D | computedPropertyNames2_ES5.types | 2 var methodName = "method"; 3 >methodName : string 13 [methodName]() { } 14 >[methodName] : () => void 15 >methodName : string 17 static [methodName]() { } 18 >[methodName] : () => void 19 >methodName : string
|
D | computedPropertyNames2_ES6.types | 2 var methodName = "method"; 3 >methodName : string 13 [methodName]() { } 14 >[methodName] : () => void 15 >methodName : string 17 static [methodName]() { } 18 >[methodName] : () => void 19 >methodName : string
|
D | computedPropertyNamesOnOverloads_ES6.js | 2 var methodName = "method"; variable 5 [methodName](v: string); 6 [methodName](); 7 [methodName](v?: string) { } 11 var methodName = "method"; 14 [methodName](v) { }
|
D | computedPropertyNamesOnOverloads_ES5.js | 2 var methodName = "method"; variable 5 [methodName](v: string); 6 [methodName](); 7 [methodName](v?: string) { } 11 var methodName = "method"; 16 C.prototype[methodName] = function (v) { };
|
D | computedPropertyNames2_ES6.js | 2 var methodName = "method"; variable 5 [methodName]() { } 6 static [methodName]() { } 14 var methodName = "method"; 17 [methodName]() { } 18 static [methodName]() { }
|
D | computedPropertyNames2_ES5.js | 2 var methodName = "method"; variable 5 [methodName]() { } 6 static [methodName]() { } 14 var methodName = "method"; 19 C.prototype[methodName] = function () { }; 20 C[methodName] = function () { };
|
D | spyComparisonChecking.types | 45 for (const methodName of methodNames) { 46 >methodName : keyof T 49 spyObj[methodName].and.returnValue(1); 50 >spyObj[methodName].and.returnValue(1) : any 51 >spyObj[methodName].and.returnValue : any 52 >spyObj[methodName].and : Function 53 >spyObj[methodName] : SpyObj<T>[keyof T] 55 >methodName : keyof T
|
D | spyComparisonChecking.js | 20 for (const methodName of methodNames) { 21 spyObj[methodName].and.returnValue(1); 30 var methodName = methodNames_1[_i]; variable 31 spyObj[methodName].and.returnValue(1);
|
D | quickInfoDisplayPartsClassMethod.baseline | 41 "kind": "methodName" 106 "kind": "methodName" 171 "kind": "methodName" 236 "kind": "methodName" 301 "kind": "methodName" 366 "kind": "methodName" 431 "kind": "methodName" 496 "kind": "methodName" 561 "kind": "methodName" 626 "kind": "methodName" [all …]
|
/third_party/protobuf/php/tests/ |
D | GeneratedServiceTest.php | 60 foreach ($this->methodNames as $methodName) { 61 $this->assertTrue($this->serviceClass->hasMethod($methodName)); 67 foreach ($this->methodNames as $methodName) { 68 $docComment = $this->serviceClass->getMethod($methodName)->getDocComment(); 69 $this->assertContains($methodName, $docComment); 77 foreach ($this->methodNames as $methodName) { 78 $docComment = $this->namespacedServiceClass->getMethod($methodName)->getDocComment(); 79 $this->assertContains($methodName, $docComment); 87 foreach ($this->methodNames as $methodName) { 88 $method = $this->serviceClass->getMethod($methodName); [all …]
|
/third_party/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
D | NumberFormatTest.java | 82 private NumberFormat getJDKInstance(int type, Locale loc, String[] methodName) { in getJDKInstance() argument 108 if (methodName != null) { in getJDKInstance() 109 methodName[0] = method; in getJDKInstance() 114 … private com.ibm.icu.text.NumberFormat getICUInstance(int type, Locale loc, String[] methodName) { in getICUInstance() argument 140 if (methodName != null) { in getICUInstance() 141 methodName[0] = method; in getICUInstance() 180 String[] methodName = new String[1]; in TestICUEquivalent() local 184 NumberFormat nf = getJDKInstance(type, iculoc, methodName); in TestICUEquivalent() 196 … + methodName[0] + ") in locale " + loc + " - JDK:" + s1 + " ICU:" + s2); in TestICUEquivalent() 214 + " NumberFormat(" + methodName[0] + ") for parsing long" + l in TestICUEquivalent() [all …]
|
/third_party/node/deps/npm/node_modules/bluebird/js/release/ |
D | call_get.js | 17 var makeMethodCaller = function (methodName) { argument 32 ".replace(/methodName/g, methodName))(ensureMethod); 69 function ensureMethod(obj, methodName) { argument 71 if (obj != null) fn = obj[methodName]; 74 util.toString(methodName) + "'"; 81 var methodName = this.pop(); 82 var fn = ensureMethod(obj, methodName); 85 Promise.prototype.call = function (methodName) { argument 89 var maybeCaller = getMethodCaller(methodName); 96 args.push(methodName);
|
/third_party/node/deps/npm/node_modules/call-limit/ |
D | README.md | 49 ### limit.method(class, methodName, maxRunning) 54 class.prototype.methodName = limit(class.prototype.methodName, maxRunning) 57 ### limit.method(object, methodName, maxRunning) 62 object.methodName = limit(object.methodName, maxRunning) 68 ### limit.promise.method(class, methodName, maxRunning) 73 class.prototype.methodName = limit.promise(class.prototype.methodName, maxRunning) 76 ### limit.promise.method(object, methodName, maxRunning) 81 object.methodName = limit.promise(object.methodName, maxRunning)
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
D | DebugWriter.java | 128 private String plainMethodName(String methodName) { in plainMethodName() argument 129 if (methodName.startsWith("lambda$")) { in plainMethodName() 130 methodName = methodName.substring("lambda$".length()); in plainMethodName() 132 if (SEPARATORS.matchesAnyOf(methodName)) { in plainMethodName() 133 methodName = methodName.substring(0, SEPARATORS.indexIn(methodName)); in plainMethodName() 135 return methodName; in plainMethodName()
|
/third_party/grpc/src/csharp/Grpc.Core.Api/ |
D | AsyncAuthInterceptor.cs | 42 readonly string methodName; field in Grpc.Core.AuthInterceptorContext 47 public AuthInterceptorContext(string serviceUrl, string methodName) in AuthInterceptorContext() argument 50 this.methodName = GrpcPreconditions.CheckNotNull(methodName); in AuthInterceptorContext() 66 get { return methodName; }
|
/third_party/jsframework/runtime/main/page/ |
D | register.ts | 149 for (const methodName in methods) { constant 150 Object.defineProperty(target, methodName, { 154 if (this._modifyMethods && this._modifyMethods[methodName] && 155 typeof this._modifyMethods[methodName] === 'function') { 156 return this._modifyMethods[methodName]; 166 if (moduleName === 'system.router' && methodName === 'getParams') { 173 method: methodName, 202 this._modifyMethods[methodName] = value;
|
/third_party/typescript/tests/cases/conformance/es6/computedProperties/ |
D | computedPropertyNamesOnOverloads_ES5.ts | 2 var methodName = "method"; variable 5 [methodName](v: string); 6 [methodName](); 7 [methodName](v?: string) { }
|
D | computedPropertyNamesOnOverloads_ES6.ts | 2 var methodName = "method"; variable 5 [methodName](v: string); 6 [methodName](); 7 [methodName](v?: string) { }
|
/third_party/protobuf/src/google/protobuf/compiler/objectivec/ |
D | method_dump.sh | 58 NSString *methodName = 61 [reservedNames addObject:methodName]; 63 if (argCount == 3 && [methodName hasPrefix:@"set"] && methodName.length > 4) { 64 NSString *firstLetter = [methodName substringWithRange:NSMakeRange(3,1)]; 73 [methodName substringWithRange:NSMakeRange(4, methodName.length - 5)]; 74 methodName = [lowerFirstLetter stringByAppendingString:restOfString]; 75 [reservedNames addObject:methodName];
|