HomeSort by relevance Sort by last modified time
    Searched refs:ContentType (Results 26 - 50 of 55) sorted by null

12 3

  /external/nist-sip/java/gov/nist/javax/sip/header/
NameMap.java 125 putNameMap(CONTENT_TYPE, ContentType.class.getName()); //24
HeaderFactoryImpl.java 97 * Creates a new AcceptHeader based on the newly supplied contentType and
100 * @param contentType The new string content type value.
107 String contentType,
110 if (contentType == null || contentSubType == null)
111 throw new NullPointerException("contentType or subtype is null ");
113 accept.setContentType(contentType);
402 * Creates a new ContentTypeHeader based on the newly supplied contentType and
405 * @param contentType - the new string content type value.
412 String contentType,
415 if (contentType == null || contentSubType == null
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageFactoryImpl.java 114 * @param contentType -
124 MaxForwardsHeader maxForwards, ContentTypeHeader contentType,
129 || contentType == null)
141 sipRequest.setContent(content, contentType);
171 * @param contentType -
181 ContentTypeHeader contentType) throws ParseException {
185 || contentType == null)
199 sipRequest.setHeader((ContentType) contentType);
279 * @param contentType
    [all...]
SIPMessage.java 41 import gov.nist.javax.sip.header.ContentType;
    [all...]
SIPResponse.java 38 import gov.nist.javax.sip.header.ContentType;
698 || nextHeader instanceof ContentType
SIPRequest.java 841 } else if (nextHeader instanceof ContentType) {
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_dcf.c 63 strncpy((char *)pDcfInfo->ContentType, (char *)tmpBuf, pDcfInfo->ContentTypeLen);
parser_dm.c 101 strcpy((char *)pDmInfo->contentType, "text/plain"); /* According RFC2045 chapter 5.2, the default value should be "text/plain". */
129 strncpy((char *)pDmInfo->contentType, (char *)pStart, pEnd - pStart);
130 pDmInfo->contentType[pEnd - pStart] = '\0';
165 strncpy((char *)pDmInfo->contentType, (char *)pStart, pEnd - pStart);
166 pDmInfo->contentType[pEnd - pStart] = '\0';
169 if (0 == strcmp((char *)pDmInfo->contentType, DRM_MIME_TYPE_RIGHTS_XML)) {
173 else if (0 == strcmp((char *)pDmInfo->contentType, DRM_MIME_TYPE_CONTENT)) {
244 strcpy((char *)pDmInfo->contentType, (char *)dcfInfo.ContentType);
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 55 import com.google.android.mms.ContentType;
180 if (ContentType.isVideoType(media.mContentType)
182 || ContentType.isAudioType(media.mContentType)
303 smilPart.setContentType(ContentType.APP_SMIL.getBytes());
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageChannel.java 38 import gov.nist.javax.sip.header.ContentType;
418 ContentTypeHeader cth = new ContentType("message", "sipfrag");
  /external/webkit/Source/WebCore/loader/
TextResourceDecoder.cpp 282 TextResourceDecoder::ContentType TextResourceDecoder::determineContentType(const String& mimeType)
293 const TextEncoding& TextResourceDecoder::defaultEncoding(ContentType contentType, const TextEncoding& specifiedDefaultEncoding)
297 if (contentType == XML)
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
HandshakeProtocol.java 275 return recordProtocol.wrap(ContentType.HANDSHAKE, io_stream);
282 return recordProtocol.wrap(ContentType.HANDSHAKE,
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 241 public enum ContentType {
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduParser.java 20 import com.google.android.mms.ContentType;
171 byte[] contentType = retrieveConf.getContentType();
172 if (null == contentType) {
175 String ctTypeStr = new String(contentType);
176 if (ctTypeStr.equals(ContentType.MULTIPART_MIXED)
177 || ctTypeStr.equals(ContentType.MULTIPART_RELATED)
178 || ctTypeStr.equals(ContentType.MULTIPART_ALTERNATIVE)) {
183 } else if (ctTypeStr.equals(ContentType.MULTIPART_ALTERNATIVE)) {
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 41 import com.google.android.mms.ContentType;
247 part.setContentType(ContentType.IMAGE_JPEG.getBytes());
MessageUtils.java 65 import com.google.android.mms.ContentType;
488 intent.setType(ContentType.AUDIO_AMR);
540 selectMediaByType(context, requestCode, ContentType.VIDEO_UNSPECIFIED, true);
544 selectMediaByType(context, requestCode, ContentType.IMAGE_UNSPECIFIED, false);
548 Context context, int requestCode, String contentType, boolean localFilesOnly) {
553 innerIntent.setType(contentType);
581 String contentType;
582 contentType = mm.getContentType();
583 intent.setDataAndType(mm.getUri(), contentType);
    [all...]
SlideEditorActivity.java 60 import com.google.android.mms.ContentType;
291 intent.setType(ContentType.IMAGE_UNSPECIFIED);
438 intent.setType(ContentType.IMAGE_UNSPECIFIED);
469 intent.setType(ContentType.VIDEO_UNSPECIFIED);
    [all...]
ComposeMessageActivity.java 146 import com.google.android.mms.ContentType;
    [all...]
MessageListItem.java 73 import com.google.android.mms.ContentType;
528 String contentType) {
543 // Converts html to spannable if ContentType is "text/html".
544 if (contentType != null && ContentType.TEXT_HTML.equals(contentType)) {
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.cpp 37 #include "ContentType.h"
489 MediaPlayer::SupportsType support = MediaPlayer::supportsType(ContentType(mimeType));
664 ContentType contentType("");
666 loadResource(mediaURL, contentType);
681 ContentType contentType("");
682 KURL mediaURL = selectNextSourceChild(&contentType, Complain);
694 loadResource(mediaURL, contentType);
697 void HTMLMediaElement::loadResource(const KURL& initialURL, ContentType& contentType
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.cpp 31 #include "ContentType.h"
327 void MediaPlayer::load(const String& url, const ContentType& contentType)
329 String type = contentType.type().lower();
330 String typeCodecs = contentType.parameter(codecs());
631 MediaPlayer::SupportsType MediaPlayer::supportsType(const ContentType& contentType)
633 String type = contentType.type().lower();
634 String typeCodecs = contentType.parameter(codecs());
  /external/webkit/Source/WebCore/dom/
DOMImplementation.cpp 28 #include "ContentType.h"
361 if (MediaPlayer::supportsType(ContentType(type)))
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 152 case BluetoothPbapObexServer.ContentType.PHONEBOOK:
  /packages/apps/Mms/src/com/android/mms/data/
WorkingMessage.java 71 import com.google.android.mms.ContentType;
727 text = new TextModel(mActivity, ContentType.TEXT_PLAIN, "text_0.txt",
    [all...]

Completed in 2761 milliseconds

12 3