HomeSort by relevance Sort by last modified time
    Searched refs:subType (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContentTypeParser.java 74 Token subType = lexer.getNextToken();
76 contentType.setContentSubType(subType.getTokenValue());
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowNetworkInfo.java 31 public static NetworkInfo newInstance(NetworkInfo.DetailedState detailedState, int type, int subType,
37 info.setSubType(subType);
110 public void setSubType(int subType) {
111 this.connectionSubType = subType;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Multipart.java 50 private String subType = "alternative";
66 return subType;
74 * @param subType the sub-type.
76 public void setSubType(String subType) {
77 this.subType = subType;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
MeasureUnit.java 60 protected final String subType;
68 protected MeasureUnit(String type, String subType) {
70 this.subType = subType;
82 * Get the subType, such as ?foot?.
85 return subType;
95 return 31 * type.hashCode() + subType.hashCode();
110 return type.equals(c.type) && subType.equals(c.subType);
118 return type + "-" + subType;
    [all...]
TimeUnit.java 40 return new MeasureUnitProxy(type, subType);
Currency.java 421 return subType;
438 UResourceBundle numCode = codeMap.get(subType);
522 return nameStyle == SYMBOL_NAME ? names.getSymbol(subType) : names.getName(subType);
569 return names.getPluralName(subType, pluralCount);
759 CurrencyDigits digits = info.currencyDigits(subType, Usage);
781 CurrencyDigits digits = info.currencyDigits(subType, Usage);
807 return subType;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
MeasureUnit.java 58 protected final String subType;
65 protected MeasureUnit(String type, String subType) {
67 this.subType = subType;
81 * Get the subType, such as ?foot?.
86 return subType;
98 return 31 * type.hashCode() + subType.hashCode();
115 return type.equals(c.type) && subType.equals(c.subType);
125 return type + "-" + subType;
    [all...]
TimeUnit.java 42 return new MeasureUnitProxy(type, subType);
Currency.java 438 return subType;
456 UResourceBundle numCode = codeMap.get(subType);
545 return nameStyle == SYMBOL_NAME ? names.getSymbol(subType) : names.getName(subType);
594 return names.getPluralName(subType, pluralCount);
787 CurrencyDigits digits = info.currencyDigits(subType, Usage);
811 CurrencyDigits digits = info.currencyDigits(subType, Usage);
838 return subType;
    [all...]
  /frameworks/av/media/libmedia/
MediaResource.cpp 34 MediaResource::MediaResource(Type type, SubType subType, uint64_t value)
36 mSubType(subType),
41 mSubType = static_cast<SubType>(parcel.readInt32());
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeMultipart.java 53 "Invalid MultiPart Content-Type; must contain subtype and boundary. ("
80 public void setSubType(String subType) throws MessagingException {
81 this.mSubType = subType;
82 mContentType = String.format("multipart/%s; boundary=\"%s\"", subType, mBoundary);
  /packages/services/Telephony/src/com/android/phone/common/mail/internet/
MimeMultipart.java 52 "Invalid MultiPart Content-Type; must contain subtype and boundary. ("
79 public void setSubType(String subType) throws MessagingException {
80 this.mSubType = subType;
81 mContentType = String.format("multipart/%s; boundary=\"%s\"", subType, mBoundary);
  /frameworks/av/include/media/
MediaResource.h 35 enum SubType {
43 MediaResource(Type type, SubType subType, uint64_t value);
54 SubType mSubType;
68 inline static const char *asString(MediaResource::SubType i, const char *def = "??") {
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.3.2/
httpmime-4.3.2.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutContentAssist.java 188 for (IType subType : allSubtypes) {
189 if (!projectOnly || subType.getResource() != null) {
190 elements.add(subType);
201 for (IType subType : allSubtypes) {
202 if (!projectOnly || subType.getResource() != null) {
203 elements.add(subType);
  /frameworks/base/services/core/java/com/android/server/net/
NetworkIdentitySet.java 52 final int subType = in.readInt();
77 add(new NetworkIdentity(type, subType, subscriberId, networkId, roaming, metered));
  /frameworks/base/core/java/android/net/
NetworkIdentity.java 45 * @deprecated we no longer offer to collect statistics on a per-subtype
61 int type, int subType, String subscriberId, String networkId, boolean roaming,
64 mSubType = COMBINE_SUBTYPE_ENABLED ? SUBTYPE_COMBINED : subType;
92 builder.append(", subType=");
169 final int subType = state.networkInfo.getSubtype();
198 return new NetworkIdentity(type, subType, subscriberId, networkId, roaming, metered);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationMethod.java 64 private ModelClass findReceiverType(DeclaredType subType) {
65 List<? extends TypeMirror> supers = getTypeUtils().directSupertypes(subType);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
ContentTypeField.java 235 final String subType = parser.getSubType();
237 if (type != null && subType != null) {
  /packages/services/Telephony/src/org/apache/james/mime4j/field/
ContentTypeField.java 235 final String subType = parser.getSubType();
237 if (type != null && subType != null) {
  /external/opencv3/modules/videoio/src/cap_winrt/
MediaStreamSink.cpp 361 GUID subType;
363 SUCCEEDED(mt->GetGUID(MF_MT_SUBTYPE, &subType)) &&
365 (subType == _subType))
  /prebuilts/devtools/tools/lib/
httpmime-4.1.jar 
  /prebuilts/tools/common/http-client/
httpmime-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.1/
httpmime-4.1.jar 
  /prebuilts/tools/common/offline-m2/org/apache/httpcomponents/httpmime/4.1/
httpmime-4.1.jar 

Completed in 4072 milliseconds

1 2 3 4 5