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

  /external/webkit/Source/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
67 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/Source/WebCore/loader/
TextResourceDecoder.h 72 enum ContentType { PlainText, HTML, XML, CSS }; // PlainText only checks for BOM.
73 static ContentType determineContentType(const String& mimeType);
74 static const TextEncoding& defaultEncoding(ContentType, const TextEncoding& defaultEncoding);
83 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/Mms/src/com/android/mms/ui/
UriImage.java 23 import com.google.android.mms.ContentType;
207 part.setContentType(ContentType.IMAGE_JPEG.getBytes());
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.h 89 enum ContentType { HTMLContentType, DirectImageContentType, ColorContentType, MediaContentType, Canvas3DContentType};
95 ContentType contentType;
101 , contentType(HTMLContentType)
178 return m_currentContent.contentType == HTMLContentType ? entireRect() : m_state.contentsRect;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 156 public static class ContentType {
175 mMissedCallSize = mVcardManager.getPhonebookSize(ContentType.MISSED_CALL_HISTORY);
350 appParamValue.needTag = ContentType.PHONEBOOK;
352 appParamValue.needTag = ContentType.INCOMING_CALL_HISTORY;
354 appParamValue.needTag = ContentType.OUTGOING_CALL_HISTORY;
356 appParamValue.needTag = ContentType.MISSED_CALL_HISTORY;
359 appParamValue.needTag = ContentType.COMBINED_CALL_HISTORY;
376 appParamValue.needTag = ContentType.PHONEBOOK;
379 appParamValue.needTag = ContentType.INCOMING_CALL_HISTORY;
382 appParamValue.needTag = ContentType.OUTGOING_CALL_HISTORY
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 30 import com.google.android.mms.ContentType;
180 if (ContentType.isVideoType(media.mContentType)
182 || ContentType.isAudioType(media.mContentType)
327 smilPart.setContentType(ContentType.APP_SMIL.getBytes());
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 176 public enum ContentType {
679 public void setContentType(ContentType type) {
680 if (type == ContentType.Widgets) {
682 } else if (type == ContentType.Applications) {
711 !tag.equals(tabHost.getTabTagForContentType(ContentType.Widgets))) {
712 tabHost.setCurrentTabFromContent(ContentType.Widgets);
714 !tag.equals(tabHost.getTabTagForContentType(ContentType.Applications))) {
715 tabHost.setCurrentTabFromContent(ContentType.Applications);
    [all...]

Completed in 544 milliseconds