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

  /external/webkit/WebCore/platform/
ContentType.h 34 class ContentType {
36 ContentType(const String& type);
ContentType.cpp 29 #include "ContentType.h"
33 ContentType::ContentType(const String& contentType)
34 : m_type(contentType)
38 String ContentType::parameter(const String& parameterName) const
61 String ContentType::type() const
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ContentType.java 26 public class ContentType {
  /external/nist-sip/java/gov/nist/javax/sip/header/
ContentType.java 35 * ContentType SIP Header
64 public class ContentType
78 public ContentType() {
83 *@param contentType is the content type.
86 public ContentType(String contentType, String contentSubtype) {
88 this.setContentType(contentType, contentSubtype);
170 *@param contentType Content type string.
173 public void setContentType(String contentType, String contentSubType) {
176 mediaRange.setType(contentType);
    [all...]
  /external/webkit/WebCore/loader/
TextResourceDecoder.h 70 enum ContentType { PlainText, HTML, XML, CSS }; // PlainText only checks for BOM.
71 static ContentType determineContentType(const String& mimeType);
72 static const TextEncoding& defaultEncoding(ContentType, const TextEncoding& defaultEncoding);
80 ContentType m_contentType;
  /frameworks/base/media/libdrm/mobile1/include/parser/
parser_dcf.h 56 uint8_t ContentTypeLen; /**< Length of the ContentType field */
59 uint8_t ContentType[MAX_CONTENT_TYPE_LEN]; /**< The MIME media type of the plaintext data */
  /frameworks/base/core/java/com/google/android/mms/
ContentType.java 22 public class ContentType {
159 private ContentType() {
162 public static boolean isSupportedType(String contentType) {
163 return (null != contentType) && sSupportedContentTypes.contains(contentType);
166 public static boolean isSupportedImageType(String contentType) {
167 return isImageType(contentType) && isSupportedType(contentType);
170 public static boolean isSupportedAudioType(String contentType) {
171 return isAudioType(contentType) && isSupportedType(contentType)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 159 public static class ContentType {
179 mMissedCallSize = mVcardManager.getPhonebookSize(ContentType.MISSED_CALL_HISTORY);
354 appParamValue.needTag = ContentType.PHONEBOOK;
356 appParamValue.needTag = ContentType.INCOMING_CALL_HISTORY;
358 appParamValue.needTag = ContentType.OUTGOING_CALL_HISTORY;
360 appParamValue.needTag = ContentType.MISSED_CALL_HISTORY;
363 appParamValue.needTag = ContentType.COMBINED_CALL_HISTORY;
380 appParamValue.needTag = ContentType.PHONEBOOK;
383 appParamValue.needTag = ContentType.INCOMING_CALL_HISTORY;
386 appParamValue.needTag = ContentType.OUTGOING_CALL_HISTORY
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 29 import com.google.android.mms.ContentType;
276 smilPart.setContentType(ContentType.APP_SMIL.getBytes());

Completed in 71 milliseconds