Home
last modified time | relevance | path

Searched defs:Metadata (Results 1 – 25 of 1612) sorted by relevance

12345678910>>...65

/aosp_15_r20/external/skia/include/docs/
H A DSkPDFDocument.h85 struct Metadata { struct
88 SkString fTitle;
92 SkString fAuthor;
96 SkString fSubject;
101 SkString fKeywords;
107 SkString fCreator;
116 DateTime fCreation = {0, 0, 0, 0, 0, 0, 0, 0};
121 DateTime fModified = {0, 0, 0, 0, 0, 0, 0, 0};
127 SkString fLang;
136 SkScalar fRasterDPI = SK_ScalarDefaultRasterDPI;
[all …]
/aosp_15_r20/external/openthread/src/core/common/
H A Dmessage.hpp189 struct Metadata struct in ot::Buffer
191 Message *mNext; // Next message in a doubly linked list.
192 Message *mPrev; // Previous message in a doubly linked list.
193 MessagePool *mMessagePool; // Message pool for this message.
194 … *mQueue; // The queue where message is queued (if any). Queue type from `mInPriorityQ`.
195 uint32_t mDatagramTag; // The datagram tag used for 6LoWPAN frags or IPv6fragmentation.
196 TimeMilli mTimestamp; // The message timestamp.
197 uint16_t mReserved; // Number of reserved bytes (for header).
198 uint16_t mLength; // Current message length (number of bytes).
199 uint16_t mOffset; // A byte offset within the message.
[all …]
/aosp_15_r20/external/openthread/src/core/coap/
H A Dcoap.hpp857 struct Metadata struct in ot::Coap::CoapBase
859 Error AppendTo(Message &aMessage) const { return aMessage.Append(*this); } in AppendTo()
863 Ip6::Address mSourceAddress; // IPv6 address of the message source.
864 Ip6::Address mDestinationAddress; // IPv6 address of the message destination.
865 uint16_t mDestinationPort; // UDP port of the message destination.
866 …ponseHandler mResponseHandler; // A function pointer that is called on response reception.
867 void *mResponseContext; // A pointer to arbitrary context information.
868 … TimeMilli mNextTimerShot; // Time when the timer should shoot for this message.
869 uint32_t mRetransmissionTimeout; // Delay that is applied to next retransmission.
870 uint8_t mRetransmissionsRemaining; // Number of retransmissions remaining.
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio/src/
Dmetadata.rs121 pub fn build(mut self) -> Metadata { in build()
151 pub struct Metadata(grpc_metadata_array); struct
153 impl Metadata { implementation
154 fn with_capacity(cap: usize) -> Metadata { in with_capacity()
220 pub unsafe fn from_raw_parts(p: *mut grpc_metadata, len: usize, cap: usize) -> Metadata { in from_raw_parts()
239 impl fmt::Debug for Metadata { implementation
250 impl Clone for Metadata { implementation
251 fn clone(&self) -> Metadata { in clone()
261 impl Drop for Metadata { implementation
269 unsafe impl Send for Metadata {} implementation
[all …]
/aosp_15_r20/build/soong/compliance/project_metadata_proto/
H A Dproject_metadata.pb.go251 type Metadata struct { struct
252 state protoimpl.MessageState
253 sizeCache protoimpl.SizeCache
254 unknownFields protoimpl.UnknownFields
257 Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
261 Description *string `protobuf:"bytes,3,opt,name=description" json:"description,omitempty"`
263 …*ThirdParty `protobuf:"bytes,13,opt,name=third_party,json=thirdParty" json:"third_party,omitempty"`
266 func (x *Metadata) Reset() {
275 func (x *Metadata) String() string {
279 func (*Metadata) ProtoMessage() {}
[all …]
/aosp_15_r20/external/skia/include/private/
H A DSkExif.h30 struct Metadata { struct
52 void SK_API Parse(Metadata& metadata, const SkData* data); argument
/aosp_15_r20/external/rust/android-crates-io/crates/ptr_meta/src/
Dlib.rs111 type Metadata: Copy + Send + Sync + Ord + hash::Hash + Unpin; typedef
115 type Metadata = (); typedef
119 type Metadata = usize; typedef
123 type Metadata = usize; typedef
128 type Metadata = usize; typedef
133 type Metadata = usize; typedef
172 pub fn metadata<T: Pointee + ?Sized>(ptr: *const T) -> <T as Pointee>::Metadata { in metadata()
185 metadata: <T as Pointee>::Metadata, in from_raw_parts()
204 metadata: <T as Pointee>::Metadata, in from_raw_parts_mut()
222 fn to_raw_parts(self) -> (ptr::NonNull<()>, <T as Pointee>::Metadata); in to_raw_parts()
[all …]
/aosp_15_r20/external/rust/crates/ptr_meta/src/
Dlib.rs111 type Metadata: Copy + Send + Sync + Ord + hash::Hash + Unpin; typedef
115 type Metadata = (); typedef
119 type Metadata = usize; typedef
123 type Metadata = usize; typedef
128 type Metadata = usize; typedef
133 type Metadata = usize; typedef
172 pub fn metadata<T: Pointee + ?Sized>(ptr: *const T) -> <T as Pointee>::Metadata { in metadata()
185 metadata: <T as Pointee>::Metadata, in from_raw_parts()
204 metadata: <T as Pointee>::Metadata, in from_raw_parts_mut()
222 fn to_raw_parts(self) -> (ptr::NonNull<()>, <T as Pointee>::Metadata); in to_raw_parts()
[all …]
/aosp_15_r20/external/python/setuptools/docs/deprecated/
Dpython_eggs.rst262 ``requires.txt``
286 ``setup_requires.txt``
293 ``dependency_links.txt``
303 ``depends.txt`` -- Obsolete, do not create!
366 ``native_libs.txt``
381 ``eager_resources.txt``
395 ``zip-safe`` and ``not-zip-safe``
/aosp_15_r20/external/rust/android-crates-io/crates/tracing-core/src/
Dmetadata.rs57 pub struct Metadata<'a> { struct
59 name: &'static str,
63 target: &'a str,
66 level: Level,
70 module_path: Option<&'a str>,
74 file: Option<&'a str>,
78 line: Option<u32>,
82 fields: field::FieldSet,
85 kind: Kind,
250 impl<'a> Metadata<'a> { implementation
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/uniffi_meta/src/
Dlib.rs443 pub enum Metadata { enum
458 impl Metadata { implementation
481 impl From<NamespaceMetadata> for Metadata { implementation
482 fn from(value: NamespaceMetadata) -> Metadata { in from()
487 impl From<UdlFile> for Metadata { implementation
488 fn from(value: UdlFile) -> Metadata { in from()
493 impl From<FnMetadata> for Metadata { implementation
494 fn from(value: FnMetadata) -> Metadata { in from()
499 impl From<ConstructorMetadata> for Metadata { implementation
505 impl From<MethodMetadata> for Metadata { implementation
[all …]
/aosp_15_r20/external/skia/src/gpu/ganesh/ops/
H A DTextureOp.cpp351 struct Metadata { struct in __anon00ec69f70111::TextureOpImpl
353 Metadata(const skgpu::Swizzle& swizzle, in Metadata() argument
368 skgpu::Swizzle fSwizzle; // sizeof(skgpu::Swizzle) == uint16_t
369 uint16_t fProxyCount;
371 uint16_t fTotalQuadCount;
374 uint16_t fFilter : 2; // GrSamplerState::Filter
375 uint16_t fMipmapMode : 2; // GrSamplerState::MipmapMode
376 uint16_t fAAType : 2; // GrAAType
377 uint16_t fColorType : 2; // GrQuadPerEdgeAA::ColorType
378 uint16_t fSubset : 1; // bool
[all …]
/aosp_15_r20/system/core/libstats/pull_rust/
H A Dstats_pull.rs29 pub struct Metadata { struct
30 metadata: *mut AStatsManager_PullAtomMetadata, argument
33 impl Metadata { impl
96 impl Drop for Metadata { implementation
103 impl Default for Metadata { implementation
147 metadata: Option<&Metadata>, in set_pull_atom_callback()
/aosp_15_r20/external/libchrome/base/metrics/
H A Dhistogram_samples.h86 struct Metadata { struct
88 static constexpr size_t kExpectedInstanceSize = 24;
94 uint64_t id;
102 subtle::Atomic64 sum;
127 struct BASE_EXPORT LocalMetadata : Metadata { argument
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/gensrcs/external/libchrome/base/metrics/
Dhistogram_samples.h89 struct Metadata { struct
91 static constexpr size_t kExpectedInstanceSize = 24;
97 uint64_t id;
105 subtle::Atomic64 sum;
130 struct BASE_EXPORT LocalMetadata : Metadata { argument
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/3/external/libchrome/base/metrics/
Dhistogram_samples.h89 struct Metadata { struct
91 static constexpr size_t kExpectedInstanceSize = 24;
97 uint64_t id;
105 subtle::Atomic64 sum;
130 struct BASE_EXPORT LocalMetadata : Metadata { argument
/aosp_15_r20/frameworks/native/libs/tonemap/include/tonemap/
H A Dtonemap.h46 struct Metadata { struct
48 float displayMaxLuminance = 0.0;
51 float contentMaxLuminance = 0.0;
54 float currentDisplayLuminance = 0.0;
64 AHardwareBuffer* buffer = nullptr;
74 aidl::android::hardware::graphics::composer3::RenderIntent renderIntent =
/aosp_15_r20/hardware/interfaces/graphics/mapper/stable-c/implutils/
H A Dimpltests.cpp65 TEST(Metadata, setGetBufferId) { in TEST() argument
82 TEST(Metadata, setGetDataspace) { in TEST() argument
99 TEST(Metadata, setGetValidName) { in TEST() argument
117 TEST(Metadata, setGetInvalidName) { in TEST() argument
136 TEST(Metadata, wouldOverflowName) { in TEST() argument
151 TEST(Metadata, setGetMismatchedWidthHight) { in TEST() argument
166 TEST(Metadata, setGetCompression) { in TEST() argument
182 TEST(Metadata, setGetPlaneLayout) { in TEST() argument
209 TEST(Metadata, setGetRects) { in TEST() argument
226 TEST(Metadata, setGetSmpte2086) { in TEST() argument
[all …]
/aosp_15_r20/external/openthread/src/core/net/
H A Dip6_mpl.hpp239 struct Metadata struct in ot::Ip6::Mpl
241 Error AppendTo(Message &aMessage) const { return aMessage.Append(*this); } in AppendTo()
247 TimeMilli mTransmissionTime;
248 uint16_t mSeedId;
249 uint8_t mSequence;
250 uint8_t mTransmissionCount;
251 uint8_t mIntervalOffset;
/aosp_15_r20/out/soong/.intermediates/packages/modules/Virtualization/libs/libmicrodroid_payload_metadata/libmicrodroid_metadata_proto_rust/android_arm64_armv8-2a_cortex-a55_source_apex10000/
Dmetadata.rs31 pub struct Metadata { struct
35 // @@protoc_insertion_point(field:android.microdroid.Metadata.apexes) argument
37 // @@protoc_insertion_point(field:android.microdroid.Metadata.apk) argument
42 // @@protoc_insertion_point(special_field:android.microdroid.Metadata.special_fields) argument
46 impl<'a> ::std::default::Default for &'a Metadata { argument
52 impl Metadata { implementation
195 impl ::protobuf::Message for Metadata { implementation
316 impl ::protobuf::MessageFull for Metadata { implementation
323 impl ::std::fmt::Display for Metadata { implementation
329 impl ::protobuf::reflect::ProtobufValue for Metadata { implementation
/aosp_15_r20/out/soong/.intermediates/packages/modules/Virtualization/libs/libmicrodroid_payload_metadata/libmicrodroid_metadata_proto_rust/android_arm64_armv8-2a_cortex-a55_source/
Dmetadata.rs31 pub struct Metadata { struct
35 // @@protoc_insertion_point(field:android.microdroid.Metadata.apexes) argument
37 // @@protoc_insertion_point(field:android.microdroid.Metadata.apk) argument
42 // @@protoc_insertion_point(special_field:android.microdroid.Metadata.special_fields) argument
46 impl<'a> ::std::default::Default for &'a Metadata { implementation
52 impl Metadata { implementation
195 impl ::protobuf::Message for Metadata { implementation
316 impl ::protobuf::MessageFull for Metadata { implementation
323 impl ::std::fmt::Display for Metadata { implementation
329 impl ::protobuf::reflect::ProtobufValue for Metadata { implementation
/aosp_15_r20/frameworks/av/media/psh_utils/include/psh_utils/
H A DPowerStats.h30 struct Metadata { struct
33 uint64_t start_time_since_boot_ms;
37 uint64_t start_time_epoch_ms;
40 uint64_t start_time_monotonic_ms;
46 uint64_t duration_ms;
49 uint64_t duration_monotonic_ms;
/aosp_15_r20/external/openthread/src/posix/platform/
H A Dmdns_socket.hpp126 struct Metadata struct in ot::Posix::MdnsSocket
128 bool CanFreeMessage(void) const { return (mIp6Port == 0) && (mIp4Port == 0); } in CanFreeMessage()
130 otIp6Address mIp6Address;
131 uint16_t mIp6Port;
132 otIp4Address mIp4Address;
133 uint16_t mIp4Port;
/aosp_15_r20/external/pigweed/pw_log_tokenized/
H A Dmetadata_test.cc22 TEST(Metadata, NoLineBits) { in TEST() argument
44 TEST(Metadata, NoFlagBits) { in TEST() argument
66 TEST(Metadata, EncodedValue_Zero) { in TEST() argument
71 TEST(Metadata, EncodedValue_Nonzero) { in TEST() argument
88 TEST(Metadata, EncodedValue_NonzeroConstructor) { in TEST() argument
105 TEST(Metadata, EncodedValue_Overflow) { in TEST() argument
/aosp_15_r20/external/cronet/base/metrics/
H A Dhistogram_samples.h96 struct Metadata { struct
98 static constexpr size_t kExpectedInstanceSize = 24;
104 uint64_t id;
112 subtle::Atomic64 sum;
137 struct BASE_EXPORT LocalMetadata : Metadata { argument

12345678910>>...65