| /third_party/typescript/tests/baselines/reference/ |
| D | superInObjectLiterals_ES6.types | 3 >obj : { __proto__: { method(): void; }; method(): void; prop: number; p1: () => void; p2: () => vo… 4 …method() { } }, method() { super.method(); }, get prop() { super.… 7 >__proto__ : { method(): void; } 8 >{ method() { } } : { method(): void; } 10 method() { 11 >method : () => void 14 method() { 15 >method : () => void 17 super.method(); 18 >super.method() : any [all …]
|
| D | superInObjectLiterals_ES5.types | 3 >obj : { __proto__: { method(): void; }; method(): void; prop: number; p1: () => void; p2: () => vo… 4 …method() { } }, method() { super.method(); }, get prop() { super.… 7 >__proto__ : { method(): void; } 8 >{ method() { } } : { method(): void; } 10 method() { 11 >method : () => void 14 method() { 15 >method : () => void 17 super.method(); 18 >super.method() : any [all …]
|
| D | superInObjectLiterals_ES6.js | 4 method() { method 7 method() { method 8 super.method(); 11 super.method(); 15 super.method(); 18 super.method(); 21 super.method(); 24 super.method(); 29 method() { } method in A 36 method() { method [all …]
|
| D | superInObjectLiterals_ES5.js | 4 method() { method 7 method() { method 8 super.method(); 11 super.method(); 15 super.method(); 18 super.method(); 21 super.method(); 24 super.method(); 29 method() { } method in A 36 method() { method [all …]
|
| D | methodChainError.types | 8 method(param: string): Builder { 9 >method : (param: string) => Builder 18 >new Builder() .method("a") .method() .method("a") : Builder 19 >new Builder() .method("a") .method() .method : (param: string) => Builder 20 >new Builder() .method("a") .method() : Builder 21 >new Builder() .method("a") .method : (param: string) => Builder 22 >new Builder() .method("a") : Builder 23 >new Builder() .method : (param: string) => Builder 27 .method("a") 28 >method : (param: string) => Builder [all …]
|
| D | methodChainError.symbols | 8 method(param: string): Builder { 9 >method : Symbol(Builder.method, Decl(methodChainError.ts, 1, 21)) 19 >new Builder() .method("a") .method() .method : Symbol(Builder.method, Decl(methodChainErr… 20 >new Builder() .method("a") .method : Symbol(Builder.method, Decl(methodChainError.ts, 1, 21)) 21 >new Builder() .method : Symbol(Builder.method, Decl(methodChainError.ts, 1, 21)) 24 .method("a") 25 >method : Symbol(Builder.method, Decl(methodChainError.ts, 1, 21)) 27 .method() 28 >method : Symbol(Builder.method, Decl(methodChainError.ts, 1, 21)) 30 .method("a"); [all …]
|
| D | destructuringParameterDeclaration8.types | 2 // explicit type annotation should cause `method` to have type 'x' | 'y' 5 >test : ({ method, nested: { p } }: { method?: 'x' | 'y'; nested?: { p: 'a' | 'b'; … 7 method = 'z', 8 >method : "x" | "y" 17 method?: 'x' | 'y', 18 >method : "x" | "y" 26 method 27 >method : "x" | "y" 35 >test : ({ method, nested: { p } }: { method?: "x" | "y"; nested?: { p: "a" | "b"; }; }) => void 38 test({ method: 'x', nested: { p: 'a' } }) [all …]
|
| D | superInObjectLiterals_ES6.symbols | 8 method() { 9 >method : Symbol(method, Decl(superInObjectLiterals_ES6.ts, 1, 16)) 12 method() { 13 >method : Symbol(method, Decl(superInObjectLiterals_ES6.ts, 4, 6)) 15 super.method(); 20 super.method(); 27 super.method(); 32 super.method(); 38 super.method(); 43 super.method(); [all …]
|
| D | superInObjectLiterals_ES5.symbols | 8 method() { 9 >method : Symbol(method, Decl(superInObjectLiterals_ES5.ts, 1, 16)) 12 method() { 13 >method : Symbol(method, Decl(superInObjectLiterals_ES5.ts, 4, 6)) 15 super.method(); 20 super.method(); 27 super.method(); 32 super.method(); 38 super.method(); 43 super.method(); [all …]
|
| D | jsdocImplements_class.types | 6 method() { throw new Error(); } 7 >method : () => number 15 method() { return 0 } 16 >method : () => number 25 method() { return "" } 26 >method : () => string 42 >Ns.C1 = class { method() { return 11; }} : typeof C1 46 >class { method() { return 11; }} : typeof C1 48 method() { return 11; } 49 >method : () => number [all …]
|
| /third_party/openssl/crypto/x509/ |
| D | x509_meth.c | 22 X509_LOOKUP_METHOD *method = OPENSSL_zalloc(sizeof(X509_LOOKUP_METHOD)); in X509_LOOKUP_meth_new() local 24 if (method != NULL) { in X509_LOOKUP_meth_new() 25 method->name = OPENSSL_strdup(name); in X509_LOOKUP_meth_new() 26 if (method->name == NULL) { in X509_LOOKUP_meth_new() 32 return method; in X509_LOOKUP_meth_new() 35 OPENSSL_free(method); in X509_LOOKUP_meth_new() 39 void X509_LOOKUP_meth_free(X509_LOOKUP_METHOD *method) in X509_LOOKUP_meth_free() argument 41 if (method != NULL) in X509_LOOKUP_meth_free() 42 OPENSSL_free(method->name); in X509_LOOKUP_meth_free() 43 OPENSSL_free(method); in X509_LOOKUP_meth_free() [all …]
|
| /third_party/flatbuffers/grpc/src/compiler/ |
| D | swift_generator.cc | 47 void GenerateClientFuncName(const grpc_generator::Method *method, in GenerateClientFuncName() argument 51 if (method->NoStreaming()) { in GenerateClientFuncName() 60 if (method->ServerStreaming()) { in GenerateClientFuncName() 70 if (method->ClientStreaming()) { in GenerateClientFuncName() 85 void GenerateClientFuncBody(const grpc_generator::Method *method, in GenerateClientFuncBody() argument 91 if (method->NoStreaming()) { in GenerateClientFuncBody() 103 if (method->ServerStreaming()) { in GenerateClientFuncBody() 116 if (method->ClientStreaming()) { in GenerateClientFuncBody() 153 auto method = service->method(it); in GenerateClientProtocol() local 154 vars["Input"] = GenerateMessage(method->get_input_namespace_parts(), in GenerateClientProtocol() [all …]
|
| D | ts_generator.cc | 79 auto method = service->method(it); in GenerateImports() local 80 auto output = method->get_output_type_name(); in GenerateImports() 81 auto input = method->get_input_type_name(); in GenerateImports() 82 auto input_namespace = method->get_input_namespace_parts(); in GenerateImports() 90 GenerateNamespace(method->get_output_namespace_parts(), output, true); in GenerateImports() 92 method->get_output_namespace_parts(), output, false); in GenerateImports() 99 GenerateNamespace(method->get_output_namespace_parts(), input, true); in GenerateImports() 101 GenerateNamespace(method->get_output_namespace_parts(), input, false); in GenerateImports() 117 const grpc_generator::Method *method, in GetStreamType() argument 120 auto client_streaming = method->ClientStreaming() || method->BidiStreaming(); in GetStreamType() [all …]
|
| D | go_generator.cc | 47 inline bool ClientOnlyStreaming(const grpc_generator::Method *method) { in ClientOnlyStreaming() argument 48 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 51 inline bool ServerOnlyStreaming(const grpc_generator::Method *method) { in ServerOnlyStreaming() argument 52 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming() 104 void GenerateServerMethodSignature(const grpc_generator::Method *method, grpc_generator::Printer *p… in GenerateServerMethodSignature() argument 106 vars["Method"] = exportName(method->name()); in GenerateServerMethodSignature() 107 vars["Request"] = method->get_input_type_name(); in GenerateServerMethodSignature() 108 …vars["Response"] = (vars["CustomMethodIO"] == "") ? method->get_output_type_name() : vars["CustomM… in GenerateServerMethodSignature() 109 if (method->NoStreaming()) { in GenerateServerMethodSignature() 111 } else if (ServerOnlyStreaming(method)) { in GenerateServerMethodSignature() [all …]
|
| D | cpp_generator.cc | 54 inline bool ClientOnlyStreaming(const grpc_generator::Method *method) { in ClientOnlyStreaming() argument 55 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 58 inline bool ServerOnlyStreaming(const grpc_generator::Method *method) { in ServerOnlyStreaming() argument 59 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming() 180 grpc_generator::Printer *printer, const grpc_generator::Method *method, in PrintHeaderClientMethodInterfaces() argument 182 (*vars)["Method"] = method->name(); in PrintHeaderClientMethodInterfaces() 183 (*vars)["Request"] = method->input_type_name(); in PrintHeaderClientMethodInterfaces() 184 (*vars)["Response"] = method->output_type_name(); in PrintHeaderClientMethodInterfaces() 194 if (method->NoStreaming()) { in PrintHeaderClientMethodInterfaces() 218 } else if (ClientOnlyStreaming(method)) { in PrintHeaderClientMethodInterfaces() [all …]
|
| /third_party/node/test/parallel/ |
| D | test-zlib-convenience-methods.js | 50 for (const method of [ 58 zlib[method[0]](expect, opts, common.mustCall((err, result) => { 59 zlib[method[1]](result, opts, common.mustCall((err, result) => { 61 `Should get original string after ${method[0]}/` + 62 `${method[1]} ${type} with options.`); 66 zlib[method[0]](expect, common.mustCall((err, result) => { 67 zlib[method[1]](result, common.mustCall((err, result) => { 69 `Should get original string after ${method[0]}/` + 70 `${method[1]} ${type} without options.`); 74 zlib[method[0]](expect, optsInfo, common.mustCall((err, result) => { [all …]
|
| /third_party/flutter/skia/tools/skiaserve/urlhandlers/ |
| D | UrlHandler.h | 18 virtual bool canHandle(const char* method, const char* url) = 0; 20 const char* url, const char* method, 26 bool canHandle(const char* method, const char* url) override; 28 const char* url, const char* method, 34 bool canHandle(const char* method, const char* url) override; 36 const char* url, const char* method, 42 bool canHandle(const char* method, const char* url) override; 44 const char* url, const char* method, 54 bool canHandle(const char* method, const char* url) override; 56 const char* url, const char* method, [all …]
|
| /third_party/skia/tools/skiaserve/urlhandlers/ |
| D | UrlHandler.h | 18 virtual bool canHandle(const char* method, const char* url) = 0; 20 const char* url, const char* method, 26 bool canHandle(const char* method, const char* url) override; 28 const char* url, const char* method, 34 bool canHandle(const char* method, const char* url) override; 36 const char* url, const char* method, 42 bool canHandle(const char* method, const char* url) override; 44 const char* url, const char* method, 54 bool canHandle(const char* method, const char* url) override; 56 const char* url, const char* method, [all …]
|
| /third_party/typescript/tests/cases/compiler/ |
| D | superInObjectLiterals_ES6.ts | 4 method() { 7 method() { 8 super.method(); 11 super.method(); 15 super.method(); 18 super.method(); 21 super.method(); 24 super.method(); 29 method() { } method in A 36 method() { [all …]
|
| D | superInObjectLiterals_ES5.ts | 4 method() { 7 method() { 8 super.method(); 11 super.method(); 15 super.method(); 18 super.method(); 21 super.method(); 24 super.method(); 29 method() { } method in A 36 method() { [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
| D | eap_server_methods.c | 25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) in eap_server_get_eap_method() argument 29 if (m->vendor == vendor && m->method == method) in eap_server_get_eap_method() 51 return m->method; in eap_server_get_type() 72 EapType method, const char *name) in eap_server_method_alloc() argument 80 eap->method = method; in eap_server_method_alloc() 90 static void eap_server_method_free(struct eap_method *method) in eap_server_method_free() argument 92 os_free(method); in eap_server_method_free() 106 int eap_server_method_register(struct eap_method *method) in eap_server_method_register() argument 110 if (method == NULL || method->name == NULL || in eap_server_method_register() 111 method->version != EAP_SERVER_METHOD_INTERFACE_VERSION) { in eap_server_method_register() [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
| D | eap_server_methods.c | 26 enum eap_type method) in eap_server_get_eap_method() argument 30 if (m->vendor == vendor && m->method == method) in eap_server_get_eap_method() 52 return m->method; in eap_server_get_type() 73 enum eap_type method, in eap_server_method_alloc() argument 82 eap->method = method; in eap_server_method_alloc() 92 static void eap_server_method_free(struct eap_method *method) in eap_server_method_free() argument 94 os_free(method); in eap_server_method_free() 108 int eap_server_method_register(struct eap_method *method) in eap_server_method_register() argument 112 if (method == NULL || method->name == NULL || in eap_server_method_register() 113 method->version != EAP_SERVER_METHOD_INTERFACE_VERSION) { in eap_server_method_register() [all …]
|
| /third_party/protobuf/src/google/protobuf/compiler/java/ |
| D | java_service.cc | 140 const MethodDescriptor* method = descriptor_->method(i); in GenerateNewReflectiveServiceMethod() local 142 GenerateMethodSignature(printer, method, IS_CONCRETE); in GenerateNewReflectiveServiceMethod() 147 "method", UnderscoresToCamelCase(method)); in GenerateNewReflectiveServiceMethod() 179 const MethodDescriptor* method = descriptor_->method(i); in GenerateAbstractMethods() local 180 WriteMethodDocComment(printer, method); in GenerateAbstractMethods() 181 GenerateMethodSignature(printer, method, IS_ABSTRACT); in GenerateAbstractMethods() 187 const MethodDescriptor* method) { in GetOutput() argument 188 return name_resolver_->GetImmutableClassName(method->output_type()); in GetOutput() 210 const MethodDescriptor* method = descriptor_->method(i); in GenerateCallMethod() local 213 vars["method"] = UnderscoresToCamelCase(method); in GenerateCallMethod() [all …]
|
| /third_party/skia/third_party/externals/dawn/generator/templates/ |
| D | mock_webgpu.h | 42 {% for method in type.methods if not has_callback_arguments(method) %} 43 … virtual {{as_cType(method.return_type.name)}} {{as_MethodSuffix(type.name, method.name)}}( 45 {%- for arg in method.arguments -%} 54 {% for method in type.methods if has_callback_arguments(method) %} 55 {% set Suffix = as_MethodSuffix(type.name, method.name) %} 57 {{as_cType(method.return_type.name)}} {{Suffix}}( 59 {%- for arg in method.arguments -%} 65 virtual {{as_cType(method.return_type.name)}} On{{Suffix}}( 67 {%- for arg in method.arguments -%} 73 … {% for callback_arg in method.arguments if callback_arg.type.category == 'function pointer' %} [all …]
|
| /third_party/node/deps/npm/node_modules/safer-buffer/ |
| D | tests.js | 69 ['poolSize', 'isBuffer', 'concat', 'byteLength'].forEach(function (method) { argument 71 t.equal(impl.Buffer[method], buffer.Buffer[method], method) 72 t.notEqual(typeof impl.Buffer[method], 'undefined', method) 79 Object.keys(buffer).forEach(function (method) { argument 80 if (method === 'SlowBuffer' || method === 'Buffer') return; 82 t.equal(impl[method], buffer[method], method) 83 t.notEqual(typeof impl[method], 'undefined', method) 90 Object.keys(buffer.Buffer).forEach(function (method) { argument 91 if (method === 'allocUnsafe' || method === 'allocUnsafeSlow') return; 93 t.equal(impl.Buffer[method], buffer.Buffer[method], method) [all …]
|