HomeSort by relevance Sort by last modified time
    Searched defs:metadata (Results 151 - 175 of 691) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/protobuf/src/google/protobuf/
map_entry.h 37 #include <google/protobuf/metadata.h>
66 ::google::protobuf::Metadata GetMetadata() const {
67 ::google::protobuf::Metadata metadata; local
68 metadata.descriptor = descriptor_;
69 metadata.reflection = reflection_;
70 return metadata;
source_context.pb.cc 335 ::google::protobuf::Metadata SourceContext::GetMetadata() const {
337 ::google::protobuf::Metadata metadata; local
338 metadata.descriptor = SourceContext_descriptor_;
339 metadata.reflection = SourceContext_reflection_;
340 return metadata;
timestamp.pb.cc 405 ::google::protobuf::Metadata Timestamp::GetMetadata() const {
407 ::google::protobuf::Metadata metadata; local
408 metadata.descriptor = Timestamp_descriptor_;
409 metadata.reflection = Timestamp_reflection_;
410 return metadata;
  /external/sonivox/arm-wt-22k/lib_src/
eas_miditypes.h 105 S_METADATA_CB metadata; /* metadata callback */ member in struct:s_smf_data_tag
  /external/tensorflow/tensorflow/compiler/jit/kernels/
xla_launch_op.cc 168 const XlaDevice::Metadata* metadata; local
169 Status s = XlaDevice::GetMetadata(ctx, &metadata);
171 *cache = new XlaCompilationCache(metadata->client(),
172 metadata->jit_device_type());
240 const XlaDevice::Metadata* metadata; local
241 Status s = XlaDevice::GetMetadata(ctx, &metadata);
243 platform_id_ = metadata->platform()->id();
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_memory.cc 37 RunMetadata metadata; local
38 Status s = cluster.Run(item_.graph, item_.feed, item_.fetch, &metadata);
40 // that the model would run out of memory. We still get the metadata we need
45 InferFromTrace(metadata.step_stats());
55 RunMetadata metadata; local
57 cluster->Run(item_.graph, item_.feed, item_.fetch, &metadata));
58 InferFromTrace(metadata.step_stats());
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
Session.java 252 * Execute graph fragments to compute requested fetches and return metadata about the run.
255 * returns metadata about the graph execution in the form of a serialized <a
295 byte[] metadata = null;
297 metadata =
326 ret.metadata = metadata;
389 * Output tensors and metadata obtained when executing a session.
398 * (Experimental): Metadata about the run.
408 public byte[] metadata; field in class:Session.Run
446 * @param wantRunMetadata indicates whether metadata about this execution should be returned
    [all...]
  /external/v8/src/
feedback-vector-inl.h 88 FeedbackMetadata* FeedbackVector::metadata() const { function in class:v8::internal::FeedbackVector
172 FeedbackMetadataIterator iter(metadata());
269 return next_slot_.ToInt() < metadata()->slot_count();
275 slot_kind_ = metadata()->GetKind(cur_slot_);
  /frameworks/av/camera/tests/
CameraZSLTests.cpp 183 CameraMetadata metadata; local
184 rc = mCameraService->getCameraCharacteristics(cameraIdStr, &metadata);
190 EXPECT_FALSE(metadata.isEmpty());
192 metadata.find(ANDROID_REQUEST_AVAILABLE_CAPABILITIES);
  /frameworks/av/packages/MediaComponents/src/com/android/media/
MediaItem2Impl.java 38 private static final String KEY_METADATA = "android.media.mediaitem2.metadata";
50 @Nullable MediaMetadata2 metadata, @Flags int flags) {
51 this(mediaId, dsd, metadata, flags, null);
55 @Nullable MediaMetadata2 metadata, @Flags int flags, @Nullable UUID uuid) {
59 if (metadata != null && !TextUtils.equals(mediaId, metadata.getMediaId())) {
60 throw new IllegalArgumentException("metadata's id should be matched with the mediaid");
65 mMetadata = metadata;
126 final MediaMetadata2 metadata = MediaMetadata2.fromBundle(metadataBundle); local
128 return new MediaItem2Impl(id, null, metadata, flags, uuid).getInstance()
    [all...]
MediaPlaylistAgentImpl.java 83 MediaMetadata2 metadata = mInstance.getPlaylistMetadata(); local
88 mInstance, playlist, metadata));
133 @Nullable MediaMetadata2 metadata) {
144 public void updatePlaylistMetadata_impl(@Nullable MediaMetadata2 metadata) {
  /frameworks/base/core/java/android/hardware/soundtrigger/
KeyphraseEnrollmentInfo.java 103 // from its metadata.
133 KeyphraseMetadata metadata = local
135 if (metadata != null) {
136 mKeyphrasePackageMap.put(metadata, ai.packageName);
257 // to be affected by a malformed metadata because invalid locales were specified
324 * Gets the {@link KeyphraseMetadata} for the given keyphrase and locale, null if any metadata
330 * @return The metadata, if the enrollment client supports the given keyphrase
  /frameworks/base/packages/SystemUI/src/com/android/systemui/pip/tv/
PipNotification.java 210 MediaMetadata metadata = mPipManager.getMediaController().getMetadata(); local
211 if (metadata != null) {
212 title = metadata.getString(MediaMetadata.METADATA_KEY_DISPLAY_TITLE);
214 title = metadata.getString(MediaMetadata.METADATA_KEY_TITLE);
216 art = metadata.getBitmap(MediaMetadata.METADATA_KEY_ALBUM_ART);
218 art = metadata.getBitmap(MediaMetadata.METADATA_KEY_ART);
  /frameworks/compile/libbcc/lib/
RSScriptGroupFusion.cpp 42 bcinfo::MetadataExtractor &metadata = *source.getMetadata(); local
43 const char* functionName = metadata.getExportFuncNameList()[slot];
55 bcinfo::MetadataExtractor &metadata = *source->getMetadata(); local
56 const char* functionName = metadata.getExportForEachNameList()[slot];
63 if (metadata.getExportForEachInputCountList()[slot] > 1) {
70 *signature = metadata.getExportForEachSignatureList()[slot];
100 bcinfo::MetadataExtractor &metadata = *source->getMetadata(); local
102 if (metadata.getExportForEachInputCountList()[slot] > 1) {
108 signature = metadata.getExportForEachSignatureList()[slot];
  /frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/
buffer_hub_queue_client.h 80 // Returns the size of metadata structure associated with this queue.
182 metadata(std::move(in_metadata)),
189 std::unique_ptr<uint8_t[]> metadata; member in struct:android::dvr::BufferHubQueue::Entry
208 // Size of the metadata that buffers in this queue cary.
398 // Dequeue() is done with the corect metadata type and size with those used
  /frameworks/support/media/src/main/java/androidx/media/
MediaItem2.java 34 * A class with information on a single media item with the metadata information.
63 private static final String KEY_METADATA = "android.media.mediaitem2.metadata";
73 @Nullable MediaMetadata2 metadata, @Flags int flags) {
74 this(mediaId, dsd, metadata, flags, null);
78 @Nullable MediaMetadata2 metadata, @Flags int flags, @Nullable UUID uuid) {
82 if (metadata != null && !TextUtils.equals(mediaId, metadata.getMediaId())) {
83 throw new IllegalArgumentException("metadata's id should be matched with the mediaid");
88 mMetadata = metadata;
137 final MediaMetadata2 metadata = metadataBundle != nul local
    [all...]
MediaPlaylistAgent.java 40 * Playlists are composed of one or multiple {@link MediaItem2} instances, which combine metadata
152 * Notifies the current playlist and playlist metadata. Call this API when the playlist is
161 final MediaMetadata2 metadata = getPlaylistMetadata(); local
169 MediaPlaylistAgent.this, playlist, metadata);
176 * Notifies the current playlist metadata. Call this API when the playlist metadata is changed.
246 * Sets the playlist with the metadata.
252 * @param metadata metadata of the playlist
256 @Nullable MediaMetadata2 metadata);
    [all...]
  /frameworks/support/media/version-compat-tests/current/service/src/androidTest/java/android/support/mediacompat/service/
StubMediaBrowserServiceCompat.java 110 MediaMetadataCompat metadata = options.getParcelable(MEDIA_METADATA); local
111 if (metadata == null) {
115 mediaItems.add(new MediaItem(metadata.getDescription(), MediaItem.FLAG_PLAYABLE));
  /frameworks/support/media/version-compat-tests/previous/service/src/androidTest/java/android/support/mediacompat/service/
StubMediaBrowserServiceCompat.java 109 MediaMetadataCompat metadata = options.getParcelable(MEDIA_METADATA); local
110 if (metadata == null) {
114 mediaItems.add(new MediaItem(metadata.getDescription(), MediaItem.FLAG_PLAYABLE));
  /hardware/intel/common/libmix/videoencoder/
PVSoftMPEG4Encoder.cpp 27 #include <media/stagefright/MetaData.h>
320 VideoParamsStoreMetaDataInBuffers *metadata = local
323 if (metadata->size != sizeof (VideoParamsStoreMetaDataInBuffers)) {
327 mStoreMetaDataInBuffers = metadata->isEnabled;
362 VideoParamsStoreMetaDataInBuffers *metadata = local
365 if (metadata->size != sizeof (VideoParamsStoreMetaDataInBuffers)) {
369 metadata->isEnabled = mStoreMetaDataInBuffers;
  /hardware/qcom/camera/msm8998/QCamera2/HAL/
QCameraMuxer.h 108 // metadata associated with the buffer
109 camera_frame_metadata_t *metadata; member in struct:qcamera::__anon48812
196 camera_frame_metadata_t *metadata, void *user,
278 camera_frame_metadata_t *metadata, void *user,
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/
QCamera3PostProc.h 70 metadata_buffer_t *metadata; member in struct:qcamera::__anon48861
79 metadata_buffer_t *metadata; member in struct:qcamera::__anon48862
146 QCamera3Exif * getExifData(metadata_buffer_t *metadata,
  /hardware/qcom/display/msm8084/libgralloc/
framebuffer.cpp 259 struct msmfb_metadata metadata; local
260 memset(&metadata, 0 , sizeof(metadata));
261 metadata.op = metadata_op_frame_rate;
262 if (ioctl(fd, MSMFB_METADATA_GET, &metadata) == -1) {
267 float fps = (float)metadata.data.panel_frame_rate;
  /hardware/qcom/display/msm8226/libgralloc/
framebuffer.cpp 260 struct msmfb_metadata metadata; local
261 memset(&metadata, 0 , sizeof(metadata));
262 metadata.op = metadata_op_frame_rate;
263 if (ioctl(fd, MSMFB_METADATA_GET, &metadata) == -1) {
268 float fps = (float)metadata.data.panel_frame_rate;
  /hardware/qcom/display/msm8909/libgralloc/
framebuffer.cpp 257 struct msmfb_metadata metadata; local
258 memset(&metadata, 0 , sizeof(metadata));
259 metadata.op = metadata_op_frame_rate;
260 if (ioctl(fd, MSMFB_METADATA_GET, &metadata) == -1) {
265 float fps = (float)metadata.data.panel_frame_rate;
340 memset(&metadata, 0 , sizeof(metadata));
341 metadata.op = metadata_op_get_ion_fd;
343 if (ioctl(fd, MSMFB_METADATA_GET, &metadata) == -1)
    [all...]

Completed in 1914 milliseconds

1 2 3 4 5 67 8 91011>>