Home
last modified time | relevance | path

Searched refs:mContentType (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/media/java/android/media/
DAudioAttributes.java232 private int mContentType = CONTENT_TYPE_UNKNOWN; field in AudioAttributes
246 return mContentType; in getContentType()
318 private int mContentType = CONTENT_TYPE_UNKNOWN; field in AudioAttributes.Builder
341 mContentType = aa.mContentType; in Builder()
354 aa.mContentType = mContentType; in build()
426 mContentType = contentType; in setContentType()
479 mContentType = CONTENT_TYPE_SPEECH; in setInternalLegacyStreamType()
485 mContentType = CONTENT_TYPE_SONIFICATION; in setInternalLegacyStreamType()
488 mContentType = CONTENT_TYPE_SONIFICATION; in setInternalLegacyStreamType()
491 mContentType = CONTENT_TYPE_MUSIC; in setInternalLegacyStreamType()
[all …]
/frameworks/base/core/java/android/print/
DPrintDocumentInfo.java106 private int mContentType; field in PrintDocumentInfo
124 mContentType = prototype.mContentType; in PrintDocumentInfo()
136 mContentType = parcel.readInt(); in PrintDocumentInfo()
171 return mContentType; in getContentType()
203 parcel.writeInt(mContentType); in writeToParcel()
212 result = prime * result + mContentType; in hashCode()
234 if (mContentType != other.mContentType) { in equals()
252 builder.append(", contentType=").append(contentTyepToString(mContentType)); in toString()
331 mPrototype.mContentType = type; in setContentType()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/configparse/
DMIMEContainer.java32 private final String mContentType; field in MIMEContainer
56 mContentType = type.get(0); in MIMEContainer()
58 if (mContentType.startsWith("multipart/")) { in MIMEContainer()
67 if (mContentType.endsWith("/mixed")) { in MIMEContainer()
71 else if (mContentType.startsWith("text/")) { in MIMEContainer()
127 multiPart ? "multipart" : "plain", boundary, mContentType, encoding)); in MIMEContainer()
151 return mContentType; in getContentType()
162 sb.append("base64, type ").append(mContentType).append('\n'); in toString()
171 mContentType) in toString()