Home
last modified time | relevance | path

Searched refs:mimeType (Results 1 - 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/audio/
H A DNDKExtractor.cpp80 const char *mimeType; in decode() local
81 if (AMediaFormat_getString(format, AMEDIAFORMAT_KEY_MIME, &mimeType)) { in decode()
82 LOGD("Got mime type %s", mimeType); in decode()
91 codec = AMediaCodec_createDecoderByType(mimeType); in decode()
/third_party/node/deps/undici/src/lib/fileapi/
H A Dutil.js213 * @param {string?} mimeType
216 function packageData (bytes, type, mimeType, encodingName) {
218 // bytes, a type, a optional mimeType, and a optional
226 // * Use mimeType as part of the Data URL if it is
229 // * If mimeType is not available return a Data URL
239 const parsed = parseMIMEType(mimeType || 'application/octet-stream')
267 // 3. If encoding is failure, and mimeType is present:
268 if (encoding === 'failure' && mimeType) {
270 // given mimeType.
271 const type = parseMIMEType(mimeType)
[all...]
/third_party/node/deps/undici/src/lib/fetch/
H A DdataURL.js34 // 5. Let mimeType be the result of collecting a
37 let mimeType = collectASequenceOfCodePointsFast(
44 // from mimeType.
49 const mimeTypeLength = mimeType.length
50 mimeType = removeASCIIWhitespace(mimeType, true, true)
67 // 11. If mimeType ends with U+003B (;), followed by
70 if (/;(\u0020){0,}base64$/i.test(mimeType)) {
83 // 4. Remove the last 6 code points from mimeType.
84 mimeType
[all...]
H A Dindex.js864 // 3. Let mimeType be dataURLStruct’s MIME type, serialized.
865 const mimeType = serializeAMimeType(dataURLStruct.mimeType)
868 // header list is « (`Content-Type`, mimeType) »,
873 ['content-type', { name: 'Content-Type', value: mimeType }]
/third_party/skia/src/ports/
H A DSkImageGeneratorNDK.cpp114 const char* mimeType = AImageDecoderHeaderInfo_getMimeType(headerInfo); in set_target_size() local
115 if (0 == strcmp(mimeType, "image/jpeg")) { in set_target_size()
127 } else if (0 == strcmp(mimeType, "image/webp")) { in set_target_size()
/third_party/glfw/src/
H A Dwl_window.c1302 static char* readDataOfferAsString(struct wl_data_offer* offer, const char* mimeType) in readDataOfferAsString() argument
1314 wl_data_offer_receive(offer, mimeType, fds[1]); in readDataOfferAsString()
1921 const char* mimeType) in dataOfferHandleOffer()
1927 if (strcmp(mimeType, "text/plain;charset=utf-8") == 0) in dataOfferHandleOffer()
1929 else if (strcmp(mimeType, "text/uri-list") == 0) in dataOfferHandleOffer()
3082 const char* mimeType) in dataSourceHandleTarget()
3094 const char* mimeType, in dataSourceHandleSend()
3099 strcmp(mimeType, "text/plain;charset=utf-8") != 0) in dataSourceHandleSend()
1919 dataOfferHandleOffer(void* userData, struct wl_data_offer* offer, const char* mimeType) dataOfferHandleOffer() argument
3080 dataSourceHandleTarget(void* userData, struct wl_data_source* source, const char* mimeType) dataSourceHandleTarget() argument
3092 dataSourceHandleSend(void* userData, struct wl_data_source* source, const char* mimeType, int fd) dataSourceHandleSend() argument
/third_party/openSLES/api/1.0.1/
H A DOpenSLES.h315 SLchar * mimeType; member
/third_party/openSLES/api/1.0/
H A DOpenSLES.h315 SLchar * mimeType; member
/third_party/node/deps/undici/
H A Dundici.js4576 let mimeType = collectASequenceOfCodePointsFast(
4581 const mimeTypeLength = mimeType.length;
4582 mimeType = removeASCIIWhitespace(mimeType, true, true);
4589 if (/;(\u0020){0,}base64$/i.test(mimeType)) {
4595 mimeType = mimeType.slice(0, -6);
4596 mimeType = mimeType.replace(/(\u0020)+$/, "");
4597 mimeType
[all...]

Completed in 21 milliseconds