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

  /external/webkit/Source/WebCore/fileapi/
Metadata.h 40 class Metadata : public RefCounted<Metadata> {
42 static PassRefPtr<Metadata> create(double modificationTime)
44 return adoptRef(new Metadata(modificationTime));
47 static PassRefPtr<Metadata> create(Metadata* metadata)
49 return adoptRef(new Metadata(metadata->m_modificationTime));
56 Metadata(double modificationTime
    [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/llvm/include/llvm/
Intrinsics.h 82 Void, MMX, Metadata, 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 109 // Metadata - This is MDNode or MDString.
110 Metadata = 250,
  /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...]
  /frameworks/base/core/java/com/android/internal/widget/
TransportControlView.java 74 private Metadata mMetadata = new Metadata();
84 * The metadata which should be populated into the view once we've been attached
153 public void setMetadata(int generationId, Bundle metadata) {
156 handler.obtainMessage(MSG_SET_METADATA, generationId, 0, metadata).sendToTarget();
175 public void setAllMetadata(int generationId, Bundle metadata, Bitmap bitmap) {
178 handler.obtainMessage(MSG_SET_METADATA, generationId, 0, metadata).sendToTarget();
252 class Metadata {
259 return "Metadata[artist=" + artist + " trackTitle=" + trackTitle + " albumTitle=" + albumTitle + "]";
279 * Populates the given metadata into the vie
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardTransportControlView.java 70 private Metadata mMetadata = new Metadata();
80 * The metadata which should be populated into the view once we've been attached
150 public void setMetadata(int generationId, Bundle metadata) {
153 handler.obtainMessage(MSG_SET_METADATA, generationId, 0, metadata).sendToTarget();
172 public void setAllMetadata(int generationId, Bundle metadata, Bitmap bitmap) {
175 handler.obtainMessage(MSG_SET_METADATA, generationId, 0, metadata).sendToTarget();
263 class Metadata {
270 return "Metadata[artist=" + artist + " trackTitle=" + trackTitle + " albumTitle=" + albumTitle + "]";
290 * Populates the given metadata into the vie
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 24 #include "llvm/Metadata.h"
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 26 #include "llvm/Metadata.h"
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 36 | Metadata
386 external metadata : llvalue -> int -> llvalue option = "llvm_metadata"
390 (*--... Operations on metadata .......,.....................................--*)
    [all...]
  /tools/motodev/src/plugins/videos/libs/gdata/java/lib/
gdata-core-1.0.jar 
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
pdfjs.js     [all...]

Completed in 574 milliseconds