/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/mindspore/mindspore/dataset/audio/ |
D | validators.py | 27 def check_amplitude_to_db(method): argument 30 @wraps(method) 32 [stype, ref_value, amin, top_db], _ = parse_user_args(method, *args, **kwargs) 48 return method(self, *args, **kwargs) 87 def check_band_biquad(method): argument 90 @wraps(method) 93 method, *args, **kwargs) 98 return method(self, *args, **kwargs) 109 def check_highpass_biquad(method): argument 112 @wraps(method) [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/mindspore/mindspore/dataset/text/ |
D | validators.py | 42 def check_lookup(method): argument 45 @wraps(method) 47 [vocab, unknown_token, data_type], _ = parse_user_args(method, *args, **kwargs) 55 return method(self, *args, **kwargs) 60 def check_from_file(method): argument 63 @wraps(method) 65 …ile_path, delimiter, vocab_size, special_tokens, special_first], _ = parse_user_args(method, *args, 74 return method(self, *args, **kwargs) 79 def check_from_list(method): argument 82 @wraps(method) [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 …]
|
/third_party/mindspore/mindspore/dataset/engine/ |
D | validators.py | 36 def check_imagefolderdataset(method): argument 39 @wraps(method) 41 _, param_dict = parse_user_args(method, *args, **kwargs) 60 return method(self, *args, **kwargs) 65 def check_mnist_cifar_dataset(method): argument 68 @wraps(method) 70 _, param_dict = parse_user_args(method, *args, **kwargs) 90 return method(self, *args, **kwargs) 95 def check_manifestdataset(method): argument 98 @wraps(method) [all …]
|
/third_party/mindspore/mindspore/dataset/vision/ |
D | validators.py | 53 def check_cut_mix_batch_c(method): argument 56 @wraps(method) 58 [image_batch_format, alpha, prob], _ = parse_user_args(method, *args, **kwargs) 65 return method(self, *args, **kwargs) 82 def check_mix_up_batch_c(method): argument 85 @wraps(method) 87 [alpha], _ = parse_user_args(method, *args, **kwargs) 92 return method(self, *args, **kwargs) 181 def check_crop(method): argument 184 @wraps(method) [all …]
|
/third_party/mindspore/mindspore/dataset/transforms/ |
D | validators.py | 44 def check_fill_value(method): argument 47 @wraps(method) 49 [fill_value], _ = parse_user_args(method, *args, **kwargs) 52 return method(self, *args, **kwargs) 57 def check_one_hot_op(method): argument 60 @wraps(method) 62 [num_classes, smoothing_rate], _ = parse_user_args(method, *args, **kwargs) 70 return method(self, *args, **kwargs) 75 def check_num_classes(method): argument 78 @wraps(method) [all …]
|
/third_party/grpc/src/compiler/ |
D | csharp_generator.cc | 112 const MethodDescriptor* method) { in GenerateDocCommentServerMethod() argument 113 if (GenerateDocCommentBody(printer, method)) { in GenerateDocCommentServerMethod() 114 if (method->client_streaming()) { in GenerateDocCommentServerMethod() 123 if (method->server_streaming()) { in GenerateDocCommentServerMethod() 131 if (method->server_streaming()) { in GenerateDocCommentServerMethod() 144 const MethodDescriptor* method, in GenerateDocCommentClientMethod() argument 146 if (GenerateDocCommentBody(printer, method)) { in GenerateDocCommentClientMethod() 147 if (!method->client_streaming()) { in GenerateDocCommentClientMethod() 224 std::string GetMethodFieldName(const MethodDescriptor* method) { in GetMethodFieldName() argument 225 return "__Method_" + method->name(); in GetMethodFieldName() [all …]
|
D | cpp_generator.cc | 35 inline bool ClientOnlyStreaming(const grpc_generator::Method* method) { in ClientOnlyStreaming() argument 36 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 39 inline bool ServerOnlyStreaming(const grpc_generator::Method* method) { in ServerOnlyStreaming() argument 40 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming() 195 const grpc_generator::Method* method, in PrintHeaderClientMethodInterfaces() argument 198 (*vars)["Method"] = method->name(); in PrintHeaderClientMethodInterfaces() 199 (*vars)["Request"] = method->input_type_name(); in PrintHeaderClientMethodInterfaces() 200 (*vars)["Response"] = method->output_type_name(); in PrintHeaderClientMethodInterfaces() 210 if (method->NoStreaming()) { in PrintHeaderClientMethodInterfaces() 233 } else if (ClientOnlyStreaming(method)) { in PrintHeaderClientMethodInterfaces() [all …]
|
D | objective_c_generator.cc | 41 const MethodDescriptor* method, in PrintProtoRpcDeclarationAsPragma() argument 43 vars["client_stream"] = method->client_streaming() ? "stream " : ""; in PrintProtoRpcDeclarationAsPragma() 44 vars["server_stream"] = method->server_streaming() ? "stream " : ""; in PrintProtoRpcDeclarationAsPragma() 83 void PrintMethodSignature(Printer* printer, const MethodDescriptor* method, in PrintMethodSignature() argument 86 PrintAllComments(method, printer, true); in PrintMethodSignature() 89 if (method->client_streaming()) { in PrintMethodSignature() 96 if (method->server_streaming()) { in PrintMethodSignature() 108 void PrintSimpleSignature(Printer* printer, const MethodDescriptor* method, in PrintSimpleSignature() argument 113 PrintMethodSignature(printer, method, vars); in PrintSimpleSignature() 116 void PrintAdvancedSignature(Printer* printer, const MethodDescriptor* method, in PrintAdvancedSignature() argument [all …]
|
/third_party/grpc/templates/src/csharp/Grpc.Core/Internal/ |
D | NativeMethods.Generated.cs.template | 39 % for method in get_native_methods(): 40 public readonly Delegates.${method['name']}_delegate ${method['name']}; 47 % for method in get_native_methods(): 48 … this.${method['name']} = GetMethodDelegate<Delegates.${method['name']}_delegate>(library); 54 % for method in get_native_methods(): 55 this.${method['name']} = DllImportsFromStaticLib.${method['name']}; 61 % for method in get_native_methods(): 62 this.${method['name']} = DllImportsFromSharedLib.${method['name']}; 68 % for method in get_native_methods(): 69 this.${method['name']} = DllImportsFromSharedLib_x86.${method['name']}; [all …]
|
/third_party/mindspore/mindspore/offline_debug/ |
D | mi_validators.py | 25 def check_init(method): argument 28 @wraps(method) 30 [dump_file_path], _ = parse_user_args(method, *args, **kwargs) 35 return method(self, *args, **kwargs) 40 def check_initialize(method): argument 43 @wraps(method) 45 [net_name, is_sync_mode, max_mem_usage], _ = parse_user_args(method, *args, **kwargs) 51 return method(self, *args, **kwargs) 56 def check_add_watchpoint(method): argument 59 @wraps(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 …]
|