HomeSort by relevance Sort by last modified time
    Searched defs:Metadata (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
Metadata.h 40 class Metadata : public RefCounted<Metadata>, public ScriptWrappable {
42 static PassRefPtr<Metadata> create(const FileMetadata& platformMetadata)
44 return adoptRef(new Metadata(platformMetadata));
47 static PassRefPtr<Metadata> create(Metadata* metadata)
49 return adoptRef(new Metadata(metadata->m_platformMetadata));
57 explicit Metadata(const FileMetadata& platformMetadata
    [all...]
  /external/chromium_org/chrome/browser/policy/cloud/
cloud_external_data_manager.h 38 // Maps from policy names to the metadata specifying the external data that
40 typedef std::map<std::string, MetadataEntry> Metadata;
  /hardware/libhardware/modules/camera/
Metadata.cpp 21 #define LOG_TAG "Metadata"
28 #include "Metadata.h"
32 Metadata::Metadata()
44 Metadata::~Metadata()
60 Metadata::Metadata(uint8_t mode, uint8_t intent)
89 int Metadata::addUInt8(uint32_t tag, int count, uint8_t *data)
95 int Metadata::addInt32(uint32_t tag, int count, int32_t *data
    [all...]
Metadata.h 26 // Metadata is a convenience class for dealing with libcamera_metadata
27 class Metadata {
29 Metadata();
30 ~Metadata();
31 // Constructor used for request metadata templates
32 Metadata(uint8_t mode, uint8_t intent);
46 // Validate the tag, type and count for a metadata entry
48 // Add a verified tag with data to this Metadata structure
70 // Save generated metadata, invalidated on update
72 // Flag to force metadata regeneratio
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
message.h 153 // A container to hold message metadata.
154 struct Metadata {
309 // Get a struct containing the metadata for the Message. Most subclasses only
312 virtual Metadata GetMetadata() const = 0;
    [all...]
  /external/protobuf/src/google/protobuf/
message.h 166 // A container to hold message metadata.
167 struct Metadata {
328 // Get a struct containing the metadata for the Message. Most subclasses only
331 virtual Metadata GetMetadata() const = 0;
    [all...]
  /frameworks/av/media/libmedia/
Metadata.cpp 18 #define LOG_TAG "Metadata"
22 #include <media/Metadata.h>
27 // This file contains code to serialize Metadata triples (key, type,
29 // Metadata.java class.
32 // All these constants below must be kept in sync with Metadata.java.
58 Metadata::Metadata(Parcel *p)
62 Metadata::~Metadata() { }
64 void Metadata::resetParcel(
    [all...]
  /system/extras/tests/sdcard/
plot_sdcard.py 33 >>> (metadata, data) = p.Parse('/tmp/data.txt')
34 >>> p.PlotIterations(metadata, data)
35 >>> p.PlotTimes(metadata, data)
86 class Metadata(object):
133 metadata = Metadata()
142 if not metadata.complete:
143 metadata.Parse(line)
152 metadata.UpdateWith(dataset)
176 if not metadata.complete
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
WebVTTParser.h 67 Metadata,
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
InbandTextTrackPrivate.h 54 enum Kind { Subtitles, Captions, Descriptions, Chapters, Metadata, None };
  /external/compiler-rt/lib/lsan/
lsan_allocator.cc 54 static ChunkMetadata *Metadata(void *p) {
60 ChunkMetadata *m = Metadata(p);
70 ChunkMetadata *m = Metadata(p);
112 ChunkMetadata *m = Metadata(p);
139 ChunkMetadata *m = Metadata(reinterpret_cast<void *>(chunk));
151 metadata_ = Metadata(reinterpret_cast<void *>(chunk));
182 ChunkMetadata *m = Metadata(chunk);
  /external/compiler-rt/lib/msan/
msan_allocator.cc 21 struct Metadata {
27 static const uptr kMetadataSize = sizeof(Metadata);
52 Metadata *meta = reinterpret_cast<Metadata*>(allocator.GetMetaData(res));
72 Metadata *meta = reinterpret_cast<Metadata*>(allocator.GetMetaData(p));
91 Metadata *meta = reinterpret_cast<Metadata*>(allocator.GetMetaData(old_p));
116 Metadata *b = (Metadata*)allocator.GetMetaData(p)
    [all...]
  /external/llvm/include/llvm/IR/
Intrinsics.h 80 Void, MMX, Metadata, Half, Float, Double,
  /frameworks/av/include/media/
Metadata.h 30 // Metadata is a class to build/serialize a set of metadata in a Parcel.
32 // This class should be kept in sync with android/media/Metadata.java.
33 // It provides all the metadata ids available and methods to build the
39 // media::Metadata data(&p);
42 // data.appendBool(Metadata::kPauseAvailable, true);
47 class Metadata {
60 // Keep in sync with android/media/Metadata.java
95 // @param p[inout] The parcel to append the metadata records
96 // to. The global metadata header should have been set already
    [all...]
  /external/llvm/include/llvm/CodeGen/
GCMetadata.h 1 //===-- GCMetadata.h - Garbage collector metadata ---------------*- C++ -*-===//
58 /// GCPoint - Metadata for a collector-safe point in machine code.
69 /// GCRoot - Metadata for a pointer to an object managed by the garbage
74 const Constant *Metadata; ///< Metadata straight from the call
77 GCRoot(int N, const Constant *MD) : Num(N), StackOffset(-1), Metadata(MD) {}
81 /// GCFunctionInfo - Garbage collection metadata for a single function.
110 /// getFunction - Return the function to which this metadata applies.
121 void addStackRoot(int Num, const Constant *Metadata) {
122 Roots.push_back(GCRoot(Num, Metadata));
    [all...]
ValueTypes.h 128 // Metadata - This is MDNode or MDString.
129 Metadata = 250,
357 case Metadata:
358 llvm_unreachable("Value type is metadata.");
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerMetadataParserTest.java 18 import android.media.Metadata;
28 * Check the Java layer that parses serialized metadata in Parcel
38 private Metadata mMetadata = null;
44 mMetadata = new Metadata();
131 // misses metadata id and metadata type.
139 mParcel.writeInt(Metadata.TITLE);
140 // misses metadata type
156 mParcel.writeInt(Metadata.TITLE);
157 mParcel.writeInt(Metadata.STRING_VAL)
    [all...]
  /external/llvm/include/llvm/MC/
SectionKind.h 30 /// Metadata - Debug info sections or other metadata.
31 Metadata,
137 bool isMetadata() const { return K == Metadata; }
207 static SectionKind getMetadata() { return get(Metadata); }
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 206 // Truncate the ShadowStackDescriptor if some metadata is null.
208 SmallVector<Constant*, 16> Metadata;
213 Metadata.push_back(ConstantExpr::getBitCast(C, VoidPtr));
215 Metadata.resize(NumMeta);
226 ConstantArray::get(ArrayType::get(VoidPtr, NumMeta), Metadata)
273 // int32_t NumMeta; // Number of metadata descriptors. May be < NumRoots.
274 // void *Meta[]; // May be absent for roots without metadata.
343 // Number roots with metadata (usually empty) at the beginning, so that the
  /frameworks/base/services/java/com/android/server/
PackageManagerBackupAgent.java 57 // key under which we store global metadata (individual app metadata
64 private HashMap<String, Metadata> mRestoredSignatures;
66 private HashMap<String, Metadata> mStateVersions = new HashMap<String, Metadata>();
73 public class Metadata {
77 Metadata(int version, Signature[] sigs) {
96 public Metadata getRestoredMetadata(String packageName) {
98 Slog.w(TAG, "getRestoredMetadata() before metadata read!");
107 Slog.w(TAG, "getRestoredPackages() before metadata read!")
    [all...]
  /frameworks/base/media/java/android/media/
Metadata.java 32 Class to hold the media's metadata. Metadata are used
37 Metadata is like a Bundle. It is sparse and each key can occur at
38 most once. The key is an integer and the value is the actual metadata.
40 The caller is expected to know the type of the metadata and call
45 public class Metadata
47 // The metadata are keyed using integers rather than more heavy
48 // weight strings. We considered using Bundle to ship the metadata
63 public static final int ANY = 0; // Never used for metadata returned, only for filtering.
84 // TODO: Should we use numbers compatible with the metadata retriever
    [all...]
  /system/media/camera/docs/
metadata_model.py 33 Metadata: Root node that also provides tree construction functionality.
44 Base class for most nodes that are part of the Metadata graph.
191 class Metadata(Node):
193 A node corresponding to a <metadata> entry.
196 parent: An edge to the parent Node. This is always None for Metadata.
205 construct_graph() to build up the Metadata from some source.
246 Insert a tag into the metadata.
253 metadata.insert_tag("BC", "Backwards Compatibility for old API")
265 Insert a type into the metadata.
275 metadata.insert_type('rectangle', 'typedef'
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.h 213 enum GroupKind { CaptionsAndSubtitles, Description, Chapter, Metadata, Other };
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardTransportControlView.java 83 private Metadata mMetadata = new Metadata();
97 * The metadata which should be populated into the view once we've been attached
419 class Metadata {
435 return "Metadata[artist=" + artist + " trackTitle=" + trackTitle +
464 * Populates the given metadata into the view
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 41 * videos. Use Albums.CONTENT_URI to query all albums. Use Metadata.CONTENT_URI
42 * to query metadata about a photo or video, based on the ID of the media. Use
46 * To add or update metadata, use the update function rather than insert. All
47 * values for the metadata must be in the ContentValues, even if they are also
49 * metadata. If the metadata values are null, the row will be deleted.
167 * Contains columns and Uri for accessing photo and video metadata
169 public static interface Metadata extends BaseColumns {
170 /** Internal database table used metadata information. */
171 public static final String TABLE = "metadata";
    [all...]

Completed in 977 milliseconds

1 2