Lines Matching defs:Type

49     typedef int32_t Type;
50 typedef SortedVector<Type> Filter;
52 static const Type kAny = 0;
55 static const Type kPauseAvailable = 1; // Boolean
56 static const Type kSeekBackwardAvailable = 2; // Boolean
57 static const Type kSeekForwardAvailable = 3; // Boolean
58 static const Type kSeekAvailable = 4; // Boolean
61 static const Type kTitle = 5; // String
62 static const Type kComment = 6; // String
63 static const Type kCopyright = 7; // String
64 static const Type kAlbum = 8; // String
65 static const Type kArtist = 9; // String
66 static const Type kAuthor = 10; // String
67 static const Type kComposer = 11; // String
68 static const Type kGenre = 12; // String
69 static const Type kDate = 13; // Date
70 static const Type kDuration = 14; // Integer(millisec)
71 static const Type kCdTrackNum = 15; // Integer 1-based
72 static const Type kCdTrackMax = 16; // Integer
73 static const Type kRating = 17; // String
74 static const Type kAlbumArt = 18; // byte[]
75 static const Type kVideoFrame = 19; // Bitmap
77 static const Type kBitRate = 20; // Integer, Aggregate rate of
80 static const Type kAudioBitRate = 21; // Integer, bps
81 static const Type kVideoBitRate = 22; // Integer, bps
82 static const Type kAudioSampleRate = 23; // Integer, Hz
83 static const Type kVideoframeRate = 24; // Integer, Hz
86 static const Type kMimeType = 25; // String
87 static const Type kAudioCodec = 26; // String
88 static const Type kVideoCodec = 27; // String
90 static const Type kVideoHeight = 28; // Integer
91 static const Type kVideoWidth = 29; // Integer
92 static const Type kNumTracks = 30; // Integer
93 static const Type kDrmCrippled = 31; // Boolean
115 bool appendBool(Type key, bool val);
116 bool appendInt32(Type key, int32_t val);
124 bool checkKey(Type key);