| /external/golang-protobuf/ptypes/any/ |
| D | any.pb.go | 103 type Any struct { struct 132 TypeUrl string `protobuf:"bytes,1,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"` 134 Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` 135 XXX_NoUnkeyedLiteral struct{} `json:"-"` 136 XXX_unrecognized []byte `json:"-"` 137 XXX_sizecache int32 `json:"-"` 140 func (m *Any) Reset() { *m = Any{} } 141 func (m *Any) String() string { return proto.CompactTextString(m) } 142 func (*Any) ProtoMessage() {} 143 func (*Any) Descriptor() ([]byte, []int) { [all …]
|
| /external/libbrillo/brillo/ |
| D | any_test.cc | 16 TEST(Any, Empty) { in TEST() argument 29 TEST(Any, SimpleTypes) { in TEST() argument 46 TEST(Any, Clear) { in TEST() argument 55 TEST(Any, Assignments) { in TEST() argument 98 TEST(Any, Enums) { in TEST() argument 113 TEST(Any, Integers) { in TEST() argument 142 TEST(Any, Pointers) { in TEST() argument 161 TEST(Any, Arrays) { in TEST() argument 187 TEST(Any, References) { in TEST() argument 210 TEST(Any, CustomTypes) { in TEST() argument [all …]
|
| D | any.cc | 12 Any::Any() { in Any() function in brillo::Any 15 Any::Any(const Any& rhs) : data_buffer_(rhs.data_buffer_) { in Any() function in brillo::Any 19 Any::Any(Any&& rhs) : data_buffer_(std::move(rhs.data_buffer_)) { in Any() function in brillo::Any
|
| /external/rust/crates/protobuf/src/well_known_types/ |
| D | any.rs | 24 pub struct Any { struct 35 impl<'a> ::std::default::Default for &'a Any { argument 41 impl Any { implementation 99 impl crate::Message for Any { implementation 160 fn as_any(&self) -> &dyn (::std::any::Any) { in as_any() 163 fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { in as_any_mut() 166 fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> { in into_any() 206 impl crate::Clear for Any { implementation 214 impl ::std::fmt::Debug for Any { implementation 220 impl crate::reflect::ProtobufValue for Any { implementation
|
| D | wrappers.rs | 117 fn as_any(&self) -> &dyn (::std::any::Any) { in as_any() 120 fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { in as_any_mut() 123 fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> { in into_any() 272 fn as_any(&self) -> &dyn (::std::any::Any) { in as_any() 275 fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { in as_any_mut() 278 fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> { in into_any() 427 fn as_any(&self) -> &dyn (::std::any::Any) { in as_any() 430 fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { in as_any_mut() 433 fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> { in into_any() 582 fn as_any(&self) -> &dyn (::std::any::Any) { in as_any() [all …]
|
| /external/rust/crates/protobuf/src/ |
| D | any.rs | 7 impl Any { implementation 35 pub fn pack<M: Message>(message: &M) -> ProtobufResult<Any> { in pack() 55 pub fn pack_dyn(message: &dyn Message) -> ProtobufResult<Any> { in pack_dyn() 62 ) -> ProtobufResult<Any> { in pack_with_type_url_prefix()
|
| /external/rust/crates/protobuf/src/well_known_types_util/ |
| D | any.rs | 6 impl Any { impl 34 pub fn pack<M: Message>(message: &M) -> ProtobufResult<Any> { in pack() 54 pub fn pack_dyn(message: &dyn Message) -> ProtobufResult<Any> { in pack_dyn() 61 ) -> ProtobufResult<Any> { in pack_with_type_url_prefix()
|
| /external/rust/crates/downcast-rs/src/ |
| D | lib.rs | 178 fn into_any(self: Box<Self>) -> Box<dyn Any>; in into_any() 181 fn into_any_rc(self: Rc<Self>) -> Rc<dyn Any>; in into_any_rc() 184 fn as_any(&self) -> &dyn Any; in as_any() 187 fn as_any_mut(&mut self) -> &mut dyn Any; in as_any_mut() 191 fn into_any(self: Box<Self>) -> Box<dyn Any> { self } in into_any() 192 fn into_any_rc(self: Rc<Self>) -> Rc<dyn Any> { self } in into_any_rc() 193 fn as_any(&self) -> &dyn Any { self } in as_any() 194 fn as_any_mut(&mut self) -> &mut dyn Any { self } in as_any_mut()
|
| /external/golang-protobuf/ptypes/ |
| D | any.go | 53 func AnyMessageName(any *any.Any) (string, error) { 89 func Empty(any *any.Any) (proto.Message, error) { 107 func UnmarshalAny(any *any.Any, pb proto.Message) error { 132 func Is(any *any.Any, pb proto.Message) bool {
|
| /external/tensorflow/tensorflow/python/tpu/ |
| D | training_loop.py | 34 def while_loop(condition: Callable[..., Any], argument 36 inputs: Optional[List[Any]] = None, 38 name: Any = None) -> Any: 194 name: Any = None) -> List[core_types.TensorLike]:
|
| D | tpu.py | 214 def is_tpu_strategy(strategy: Any) -> bool: 731 computation: Callable[..., Any], *args, **kwargs argument 882 computation: Callable[..., Any], argument 887 maximum_shapes: Any = None, 1175 computation: Callable[..., Any], argument 1181 maximum_shapes: Any = None, 1574 outputs: Any 1656 outputs: Any 1710 computation: Callable[..., Any], argument 1867 computation: Callable[..., Any], argument [all …]
|
| D | async_checkpoint.py | 106 def after_create_session(self, session: session_lib.Session, coord: Any): 130 def before_run(self, run_context: Any): # pylint: disable=unused-argument 134 run_values: Any):
|
| /external/google-fruit/extras/benchmark/ |
| D | format_bench_results.py | 23 def extract_results(bench_results: List[Dict[str, Dict[Any, Any]]], argument 142 row_sort_key: Callable[[Any], Any]): 296 def determine_column_pretty_printer(pretty_printer_definition: Dict[str, Any]) -> DimensionPrettyPr… argument 305 def determine_row_pretty_printer(pretty_printer_definition: Dict[str, Any]) -> DimensionPrettyPrint… argument 308 def determine_row_sort_key(pretty_printer_definition: Dict[str, Any]) -> Callable[[Any], Any]: argument
|
| /external/pigweed/pw_hdlc/py/pw_hdlc/ |
| D | rpc.py | 37 def channel_output(writer: Callable[[bytes], Any], argument 69 on_read_error: Callable[[Exception], Any], argument 118 def default_channels(write: Callable[[bytes], Any]) -> List[pw_rpc.Channel]: argument 129 output: Callable[[bytes], Any] = write_to_file, argument
|
| /external/pigweed/pw_rpc/py/pw_rpc/console_tools/ |
| D | watchdog.py | 27 on_reset: Callable[[], Any], argument
|
| /external/skqp/src/sfnt/ |
| D | SkPanose.h | 18 Any = 0, enumerator 29 Any = 0, enumerator 48 Any = 0, enumerator 63 Any = 0, enumerator 76 Any = 0, enumerator 92 Any = 0, enumerator 106 Any = 0, enumerator 121 Any = 0, enumerator 136 Any = 0, enumerator 155 Any = 0, enumerator [all …]
|
| /external/skia/src/sfnt/ |
| D | SkPanose.h | 18 Any = 0, enumerator 29 Any = 0, enumerator 48 Any = 0, enumerator 63 Any = 0, enumerator 76 Any = 0, enumerator 92 Any = 0, enumerator 106 Any = 0, enumerator 121 Any = 0, enumerator 136 Any = 0, enumerator 155 Any = 0, enumerator [all …]
|
| /external/easymock/src/org/easymock/internal/matchers/ |
| D | Any.java | 22 public class Any implements IArgumentMatcher, Serializable { class 28 private Any() { in Any() method in Any
|
| /external/flatbuffers/tests/MyGame/Example/ |
| D | Any.java | 5 public final class Any { class 6 private Any() { } in Any() method in Any
|
| /external/toolchain-utils/rust_tools/ |
| D | rust_uprev.py | 458 completed_steps: Dict[str, Any], argument 461 result_from_json: Optional[Callable[[Any], T]] = None, 462 result_to_json: Optional[Callable[[T], Any]] = None) -> T: argument 483 def prepare_uprev_from_json(obj: Any) -> Optional[Tuple[RustVersion, str]]: 649 result_from_json: Optional[Callable[[Any], T]] = None, 650 result_to_json: Optional[Callable[[T], Any]] = None, argument
|
| /external/python/cpython3/Tools/peg_generator/scripts/ |
| D | download_pypi_packages.py | 37 def download_package_code(name: str, package_json: Dict[Any, Any]) -> None: argument
|
| /external/rust/crates/grpcio-sys/grpc/tools/run_tests/xds_k8s_test_driver/framework/helpers/ |
| D | retryers.py | 36 def _retry_on_exceptions(retry_on_exceptions: Optional[List[Any]] = None): 48 retry_on_exceptions: Optional[List[Any]] = None) -> Retrying:
|
| /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
| D | Any.cs | 122 public sealed partial class Any : pb::IMessage<Any> { class 139 public Any() { in Any() method in Google.Protobuf.WellKnownTypes.Any 146 public Any(Any other) : this() { in Any() method in Google.Protobuf.WellKnownTypes.Any
|
| /external/llvm-project/llvm/include/llvm/ADT/ |
| D | Any.h | 56 Any(const Any &Other) in Any() function 79 Any(T &&Value) { in Any() function 84 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any() function
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
| D | Any.h | 56 Any(const Any &Other) in Any() function 79 Any(T &&Value) { in Any() function 84 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any() function
|