Home
last modified time | relevance | path

Searched defs:Method (Results 1 – 25 of 393) sorted by relevance

12345678910>>...16

/external/pytorch/torch/csrc/jit/api/
Dmethod.h21 struct TORCH_API Method : public torch::IMethod { struct
30 void run(Stack&& stack) { in run()
70 // Methods are uniqued onwed by a single module. This raw pointer allows argument
81 using Method = ::torch::jit::Method; argument
/external/golang-protobuf/types/known/apipb/
Dapi.pb.go177 type Method struct { struct
178 state protoimpl.MessageState
179 sizeCache protoimpl.SizeCache
180 unknownFields protoimpl.UnknownFields
183 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
185 …f:"bytes,2,opt,name=request_type_url,json=requestTypeUrl,proto3" json:"request_type_url,omitempty"`
187 …rint,3,opt,name=request_streaming,json=requestStreaming,proto3" json:"request_streaming,omitempty"`
189 …bytes,4,opt,name=response_type_url,json=responseTypeUrl,proto3" json:"response_type_url,omitempty"`
191 …t,5,opt,name=response_streaming,json=responseStreaming,proto3" json:"response_streaming,omitempty"`
193 Options []*typepb.Option `protobuf:"bytes,6,rep,name=options,proto3" json:"options,omitempty"`
[all …]
/external/perfetto/include/perfetto/ext/ipc/
Dservice_descriptor.h40 struct Method { struct
41 const char* name;
66 std::vector<Method> methods; argument
/external/pytorch/torch/csrc/jit/mobile/
Dmethod.h10 struct TORCH_API Method { struct
33 // Methods are uniquely owned by a single module. argument
38 Function* function_;
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/g3doc/
Dspace_to_depth.md137 #### Pseudo MLIR code before and after RewritePass
178 ### SpaceToDepth Trigger Condition
186 ### Fuse SpaceToDepth with Automatic Double Transpose
192 ### Extend from Conv2D to Conv3D
/external/rust/android-crates-io/extra_versions/crates/http/src/
Dmethod.rs46 pub struct Method(Inner); struct
71 impl Method { impl
100 pub fn from_bytes(src: &[u8]) -> Result<Method, InvalidMethod> { in from_bytes()
139 fn extension_inline(src: &[u8]) -> Result<Method, InvalidMethod> { in extension_inline()
188 impl AsRef<str> for Method { implementation
195 impl<'a> PartialEq<&'a Method> for Method { implementation
202 impl<'a> PartialEq<Method> for &'a Method { implementation
209 impl PartialEq<str> for Method { implementation
223 impl<'a> PartialEq<&'a str> for Method { implementation
237 impl fmt::Debug for Method { implementation
[all …]
/external/rust/android-crates-io/crates/http/src/
Dmethod.rs46 pub struct Method(Inner); struct
71 impl Method { implementation
100 pub fn from_bytes(src: &[u8]) -> Result<Method, InvalidMethod> { in from_bytes()
139 fn extension_inline(src: &[u8]) -> Result<Method, InvalidMethod> { in extension_inline()
188 impl AsRef<str> for Method { implementation
195 impl<'a> PartialEq<&'a Method> for Method { implementation
202 impl<'a> PartialEq<Method> for &'a Method { implementation
209 impl PartialEq<str> for Method { implementation
223 impl<'a> PartialEq<&'a str> for Method { implementation
237 impl fmt::Debug for Method { implementation
[all …]
/external/rust/android-crates-io/crates/diplomat_core/src/ast/
Dmethods.rs12 pub struct Method { struct
14 pub name: Ident,
17 pub docs: Docs,
41 impl Method { impl
48 ) -> Method { in from_syn()
/external/rust/android-crates-io/crates/protobuf/src/well_known_types/
Dapi.rs299 pub struct Method { struct
305 // @@protoc_insertion_point(field:google.protobuf.Method.request_type_url) argument
308 // @@protoc_insertion_point(field:google.protobuf.Method.request_streaming) argument
311 // @@protoc_insertion_point(field:google.protobuf.Method.response_type_url) argument
314 // @@protoc_insertion_point(field:google.protobuf.Method.response_streaming) argument
317 // @@protoc_insertion_point(field:google.protobuf.Method.options) argument
320 // @@protoc_insertion_point(field:google.protobuf.Method.syntax) argument
323 // @@protoc_insertion_point(special_field:google.protobuf.Method.special_fields) argument
327 impl<'a> ::std::default::Default for &'a Method { implementation
333 impl Method { impl
[all …]
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DMethod.java34 public final class Method extends FieldOrMethod { class
61 public Method() { in Method() method in Method
69 public Method(final Method c) { in Method() method in Method
80 Method(final DataInput file, final ConstantPool constant_pool) throws IOException, in Method() method in Method
93 …public Method(final int access_flags, final int name_index, final int signature_index, final Attri… in Method() method in Method
/external/rust/android-crates-io/crates/diplomat_core/src/hir/
Dmethods.rs22 pub struct Method { struct
24 pub docs: Docs,
26 pub name: IdentBuf,
28 pub abi_name: IdentBuf,
30 pub lifetime_env: LifetimeEnv,
33 pub param_self: Option<ParamSelf>,
35 pub params: Vec<Param>,
37 pub output: ReturnType,
39 pub attrs: Attrs,
264 impl Method { implementation
/external/rust/android-crates-io/crates/maybe-async/examples/
Dservice_client.rs8 type Method = String; typedef
16 async fn request(method: Method, url: Url, data: String) -> Response; in request()
35 fn request(method: Method, url: Url, data: String) -> Response { in request()
45 async fn request(method: Method, url: Url, data: String) -> Response { in request()
/external/rust/android-crates-io/extra_versions/crates/protobuf/src/well_known_types/
Dapi.rs80 pub fn get_methods(&self) -> &[Method] { in get_methods()
88 pub fn set_methods(&mut self, v: crate::RepeatedField<Method>) { in set_methods()
93 pub fn mut_methods(&mut self) -> &mut crate::RepeatedField<Method> { in mut_methods()
98 pub fn take_methods(&mut self) -> crate::RepeatedField<Method> { in take_methods()
463 pub struct Method { struct
479 impl<'a> ::std::default::Default for &'a Method { argument
485 impl Method { impl
639 impl crate::Message for Method { implementation
832 impl crate::Clear for Method { implementation
845 impl ::std::fmt::Debug for Method { implementation
[all …]
/external/grpc-grpc-java/services/src/test/proto/io/grpc/reflection/testing/
Ddynamic_reflection_test.proto30 rpc Method (DynamicRequest) returns (DynamicReply) {} rpc
36 rpc Method (DynamicRequest) returns (DynamicReply) {} rpc
Dreflection_test.proto33 rpc Method (Request) returns (Reply) {} rpc
37 rpc Method (Request) returns (Reply) {} rpc
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DMethod.java44 public final class Method class
49 private Method() { in Method() method in Method
/external/perfetto/src/trace_processor/importers/art_method/
Dart_method_tokenizer.h50 struct Method { struct
68 base::StatusOr<bool> ParseHeaderMethods(Iterator&); argument
/external/pigweed/pw_rpc/py/pw_rpc/callback_client/
Dimpl.py70 method: Method,
205 def _function_docstring(method: Method) -> str:
214 def _update_call_method(method: Method, function: Callable) -> None:
221 def _apply_protobuf_signature(method: Method, function: Callable) -> None:
414 def _method_client_docstring(method: Method) -> str:
450 def method_client(self, channel: Channel, method: Method) -> _MethodClient:
485 method: Method,
502 method: Method,
531 method: Method,
/external/clang/lib/AST/
DExprObjC.cpp21 ObjCMethodDecl *Method, SourceRange SR) in ObjCArrayLiteral()
40 QualType T, ObjCMethodDecl *Method, in Create()
123 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in ObjCMessageExpr()
144 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in ObjCMessageExpr()
161 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in ObjCMessageExpr()
205 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in Create()
224 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in Create()
243 ObjCMethodDecl *Method, ArrayRef<Expr *> Args, in Create()
/external/deqp/external/openglcts/modules/gles31/
Des31cDrawIndirectTests.cpp896 virtual std::string Method() in Method() function
925 virtual std::string Method() in Method() function
956 virtual std::string Method() in Method() function
1000 virtual std::string Method() in Method() function in glcts::__anon91df61990111::CMultiBindingPoint
1050 virtual std::string Method() in Method() function
1085 virtual std::string Method() in Method() function
1243 virtual std::string Method() in Method() function
1311 virtual std::string Method() in Method() function
1430 virtual std::string Method() in Method() function
1525 virtual std::string Method() in Method() function
[all …]
Des31cShaderAtomicCountersTests.cpp57 virtual std::string Method() in Method() function in glcts::__anon889930a00111::SACSubcaseBase
807 virtual std::string Method() in Method() function in glcts::BasicUsageCS
1038 virtual std::string Method() in Method() function in glcts::BasicBufferOperations
1162 virtual std::string Method() in Method() function in glcts::BasicBufferState
1207 virtual std::string Method() in Method() function in glcts::BasicBufferBind
1326 virtual std::string Method() in Method() function in glcts::BasicProgramMax
1373 virtual std::string Method() in Method() function in glcts::BasicProgramQuery
1522 virtual std::string Method() in Method() function in glcts::BasicUsageSimple
1613 virtual std::string Method() in Method() function in glcts::BasicUsageFS
1752 virtual std::string Method() in Method() function in glcts::BasicUsageVS
[all …]
/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/compiler/
Dschema_interface.h54 struct Method : public CommentHolder { struct
55 virtual ~Method() {} in ~Method() argument
/external/flatbuffers/grpc/src/compiler/
Dschema_interface.h49 struct Method : public CommentHolder { struct
50 virtual ~Method() {} in ~Method() argument
/external/grpc-grpc/src/compiler/
Dschema_interface.h54 struct Method : public CommentHolder { struct
55 virtual ~Method() {} in ~Method() argument
/external/deqp/external/openglcts/modules/gl/
Dgl4cComputeShaderTests.cpp488 virtual std::string Method() in Method() function in gl4cts::__anon6c58e97c0111::SimpleCompute
575 virtual std::string Method() in Method() function in gl4cts::__anon6c58e97c0111::BasicOneWorkGroup
727 virtual std::string Method() in Method() function in gl4cts::__anon6c58e97c0111::BasicResourceUBO
920 virtual std::string Method() in Method() function in gl4cts::__anon6c58e97c0111::BasicResourceTexture
1154 virtual std::string Method() in Method() function in gl4cts::__anon6c58e97c0111::BasicResourceImage
1359 virtual std::string Method() in Method() function in gl4cts::__anon6c58e97c0111::BasicResourceAtomicCounter
1541 virtual std::string Method() in Method() function in gl4cts::__anon6c58e97c0111::BasicResourceSubroutine
1726 virtual std::string Method() in Method() function in gl4cts::__anon6c58e97c0111::BasicResourceUniform
1985 virtual std::string Method() in Method() function in gl4cts::__anon6c58e97c0111::BasicBuiltinVariables
2199 virtual std::string Method() in Method() function in gl4cts::__anon6c58e97c0111::BasicMax
[all …]

12345678910>>...16