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

12 3

  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsMessagingDemo.java 19 import com.google.android.mms.ContentType;
380 part.setContentType(ContentType.TEXT_PLAIN.getBytes());
400 smilPart.setContentType(ContentType.APP_SMIL.getBytes());
443 && ContentType.isTextType(new String(part.getContentType()))) {
  /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
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 55 import com.google.android.mms.ContentType;
181 if (ContentType.isVideoType(media.mContentType)
183 || ContentType.isAudioType(media.mContentType)
306 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");
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 160 public enum ContentType {
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/
messages.py 58 self.type = ContentType.handshake
67 self.contentType = ContentType.alert
92 self.contentType = ContentType.handshake
654 self.contentType = ContentType.change_cipher_spec
746 self.contentType = ContentType.application_data
constants.py 41 class ContentType:
  /frameworks/opt/telephony/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...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
MediaSource.cpp 43 #include "platform/ContentType.h"
142 ContentType contentType(type);
143 Vector<String> codecs = contentType.codecs();
144 OwnPtr<WebSourceBuffer> webSourceBuffer = createWebSourceBuffer(contentType.type(), codecs, exceptionState);
237 ContentType contentType(type);
238 String codecs = contentType.parameter("codecs");
241 if (contentType.type().isEmpty())
248 return MIMETypeRegistry::isSupportedMediaSourceMIMEType(contentType.type(), codecs)
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessageUtils.java 65 import com.google.android.mms.ContentType;
494 intent.setType(ContentType.AUDIO_AMR);
546 selectMediaByType(context, requestCode, ContentType.VIDEO_UNSPECIFIED, true);
550 selectMediaByType(context, requestCode, ContentType.IMAGE_UNSPECIFIED, false);
554 Context context, int requestCode, String contentType, boolean localFilesOnly) {
559 innerIntent.setType(contentType);
591 String contentType;
592 contentType = mm.getContentType();
593 intent.setDataAndType(mm.getUri(), contentType);
    [all...]
SlideEditorActivity.java 61 import com.google.android.mms.ContentType;
292 intent.setType(ContentType.IMAGE_UNSPECIFIED);
439 intent.setType(ContentType.IMAGE_UNSPECIFIED);
470 intent.setType(ContentType.VIDEO_UNSPECIFIED);
    [all...]
UriImage.java 41 import com.google.android.mms.ContentType;
257 part.setContentType(ContentType.IMAGE_JPEG.getBytes());
ComposeMessageActivity.java 145 import com.google.android.mms.ContentType;
    [all...]
MessageListItem.java 73 import com.google.android.mms.ContentType;
533 String contentType) {
542 // Converts html to spannable if ContentType is "text/html".
543 if (contentType != null && ContentType.TEXT_HTML.equals(contentType)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.cpp 64 #include "platform/ContentType.h"
217 static bool canLoadURL(const KURL& url, const ContentType& contentType, const String& keySystem)
221 String contentMIMEType = contentType.type().lower();
222 String contentTypeCodecs = contentType.parameter(codecs);
245 WebMimeRegistry::SupportsType HTMLMediaElement::supportsType(const ContentType& contentType, const String& keySystem)
252 String type = contentType.type().lower();
255 String typeCodecs = contentType.parameter(codecs);
661 WebMimeRegistry::SupportsType support = supportsType(ContentType(mimeType), keySystem)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMImplementation.cpp 52 #include "platform/ContentType.h"
363 if (HTMLMediaElement::supportsType(ContentType(type)))
  /external/chromium_org/components/cloud_devices/common/
printer_description.cc 541 static bool Load(const base::DictionaryValue& dict, ContentType* option) {
545 static void Save(ContentType option, base::DictionaryValue* dict) {
814 template class ListCapability<ContentType, ContentTypeTraits>;
  /packages/apps/Launcher3/src/com/android/launcher3/
Launcher.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 

Completed in 442 milliseconds

12 3