Searched refs:mType (Results 1 - 25 of 94) sorted by relevance

1234

/frameworks/base/media/java/android/media/
H A DMediaSyncEvent.java65 private final int mType; field in class:MediaSyncEvent
69 mType = eventType;
100 return mType;
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp37 : mMatrix(other.mMatrix), mType(other.mType) {
59 if (CC_LIKELY(mType == IDENTITY))
63 if (rhs.mType == IDENTITY)
66 // TODO: we could use mType to optimize the matrix multiply
78 r.mType |= rhs.mType;
81 r.mType &= 0xFF;
82 r.mType |= UNKNOWN_TYPE;
103 mType
[all...]
/frameworks/base/core/java/android/nfc/tech/
H A DNfcBarcode.java38 private int mType; field in class:NfcBarcode
67 mType = extras.getInt(EXTRA_BARCODE_TYPE);
83 return mType;
94 switch (mType) {
H A DMifareUltralight.java80 private int mType; field in class:MifareUltralight
109 mType = TYPE_UNKNOWN;
114 mType = TYPE_ULTRALIGHT_C;
116 mType = TYPE_ULTRALIGHT;
133 return mType;
H A DMifareClassic.java122 private int mType; field in class:MifareClassic
155 mType = TYPE_CLASSIC;
159 mType = TYPE_CLASSIC;
163 mType = TYPE_PLUS;
168 mType = TYPE_PLUS;
173 mType = TYPE_CLASSIC;
177 mType = TYPE_CLASSIC;
182 mType = TYPE_CLASSIC;
187 mType = TYPE_CLASSIC;
193 mType
[all...]
/frameworks/base/drm/java/android/drm/
H A DDrmEvent.java49 private final int mType; field in class:DrmEvent
65 mType = type;
85 mType = type;
107 return mType;
/frameworks/base/graphics/java/android/renderscript/
H A DAllocation.java74 Type mType; field in class:Allocation
199 return mType.getElement();
220 return mType.getCount() * mType.getElement().getBytesSize();
258 mType = t;
267 if ((mType.mElement.mType == Element.DataType.SIGNED_32) ||
268 (mType.mElement.mType == Element.DataType.UNSIGNED_32)) {
272 "32 bit integer source does not match allocation type " + mType
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderOperation.java40 private final int mType; field in class:ContentProviderOperation
57 mType = builder.mType;
69 mType = source.readInt();
91 dest.writeInt(mType);
182 return mType;
186 return mType == TYPE_DELETE || mType == TYPE_INSERT || mType == TYPE_UPDATE;
190 return mType
402 private final int mType; field in class:ContentProviderOperation.Builder
[all...]
/frameworks/base/core/java/android/hardware/
H A DSensor.java129 private int mType; field in class:Sensor
157 return mType;
209 + ", type=" + mType + ", maxRange=" + mMaxRange + ", resolution=" + mResolution
/frameworks/base/core/java/android/util/
H A DProperty.java31 private final Class<V> mType; field in class:Property
63 mType = type;
104 return mType;
/frameworks/base/media/java/android/media/videoeditor/
H A DEffectColor.java63 private final int mType; field in class:EffectColor
122 mType = type;
131 return mType;
/frameworks/base/location/java/android/location/
H A DGeofence.java33 private final int mType; field in class:Geofence
54 mType = TYPE_HORIZONTAL_CIRCLE;
62 return mType;
124 parcel.writeInt(mType);
143 typeToString(mType), mLatitude, mLongitude, mRadius);
156 result = prime * result + mType;
178 if (mType != other.mType)
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DAllocation.java72 Type mType; field in class:Allocation
159 return mType.getElement();
180 return mType.getCount() * mType.getElement().getBytesSize();
202 mType = t;
211 if ((mType.mElement.mType == Element.DataType.SIGNED_32) ||
212 (mType.mElement.mType == Element.DataType.UNSIGNED_32)) {
216 "32 bit integer source does not match allocation type " + mType
[all...]
/frameworks/base/core/java/android/os/
H A DPatternMatcher.java49 private final int mType; field in class:PatternMatcher
53 mType = type;
61 return mType;
65 return matchPattern(mPattern, str, mType);
70 switch (mType) {
90 dest.writeInt(mType);
95 mType = src.readInt();
/frameworks/rs/
H A DrsComponent.cpp30 mType = dt;
69 switch (mType) {
173 rsAssert(mType != RS_TYPE_INVALID);
183 return (mType >= RS_TYPE_ELEMENT);
237 if (mType >= RS_TYPE_ELEMENT) {
239 prefix, gTypeObjStrings[mType - RS_TYPE_ELEMENT], gKindStrings[mKind], mVectorSize, mBits);
242 prefix, gTypeBasicStrings[mType], gKindStrings[mKind], mVectorSize, mBits);
247 stream->addU8((uint8_t)mType);
254 mType = (RsDataType)stream->loadU8();
260 set(mType, mKin
[all...]
H A DrsComponent.h38 RsDataType getType() const {return mType;}
54 RsDataType mType; member in class:android::renderscript::Component
H A DrsFileA3D.h47 RsA3DClassID mType; member in class:android::renderscript::FileA3D::A3DIndexEntry
57 return mType;
/frameworks/support/renderscript/v8/rs_support/
H A DrsComponent.cpp30 mType = dt;
69 switch (mType) {
173 rsAssert(mType != RS_TYPE_INVALID);
183 return (mType >= RS_TYPE_ELEMENT);
237 if (mType >= RS_TYPE_ELEMENT) {
239 prefix, gTypeObjStrings[mType - RS_TYPE_ELEMENT], gKindStrings[mKind], mVectorSize, mBits);
242 prefix, gTypeBasicStrings[mType], gKindStrings[mKind], mVectorSize, mBits);
247 stream->addU8((uint8_t)mType);
254 mType = (RsDataType)stream->loadU8();
260 set(mType, mKin
[all...]
H A DrsComponent.h38 RsDataType getType() const {return mType;}
54 RsDataType mType; member in class:android::renderscript::Component
/frameworks/base/core/java/android/net/
H A DNetworkIdentity.java46 final int mType; field in class:NetworkIdentity
54 mType = type;
63 return Objects.hashCode(mType, mSubType, mSubscriberId, mNetworkId, mRoaming);
70 return mType == ident.mType && mSubType == ident.mSubType && mRoaming == ident.mRoaming
80 builder.append("type=").append(getNetworkTypeName(mType));
84 } else if (ConnectivityManager.isNetworkTypeMobile(mType)) {
102 return mType;
H A DNetworkTemplate.java232 if (ident.mType == TYPE_WIMAX) {
236 return ((sForceAllNetworkTypes || contains(DATA_USAGE_NETWORK_TYPES, ident.mType))
246 if (ident.mType == TYPE_WIMAX) {
264 if (ident.mType == TYPE_WIMAX) {
280 switch (ident.mType) {
292 if (ident.mType == TYPE_ETHERNET) {
299 if (ident.mType == TYPE_WIMAX) {
302 return sForceAllNetworkTypes || contains(DATA_USAGE_NETWORK_TYPES, ident.mType);
307 switch (ident.mType) {
/frameworks/av/media/libeffects/testlibs/
H A DAudioShelvingFilter.cpp51 : mType(type),
66 setFrequency(mType == kLowShelf ? 0 : mNiquistFreq);
77 uint32_t log2minFreq = (mType == kLowShelf ? (32-10) : (32-2));
99 if (mType == kHighShelf) {
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java279 private final byte[] mType; field in class:NdefRecord
527 mType = type;
557 mType = rs[0].mType;
581 return mType.clone();
641 if (Arrays.equals(mType, NdefRecord.RTD_TEXT)) {
646 String mimeType = new String(mType, Charsets.US_ASCII);
679 if (Arrays.equals(mType, RTD_SMART_POSTER) && !inSmartPoster) {
690 } else if (Arrays.equals(mType, RTD_URI)) {
697 Uri uri = Uri.parse(new String(mType, Charset
[all...]
/frameworks/av/media/libstagefright/
H A DMetaData.cpp222 : mType(0),
231 : mType(from.mType),
241 mType = from.mType;
252 mType = 0;
259 mType = type;
266 *type = mType;
294 switch(mType) {
322 out = String8::format("(unknown type %d, size %d)", mType, mSiz
[all...]
/frameworks/rs/cpp/
H A DAllocation.cpp72 mType = t;
81 RsDataType dt = mType->getElement()->getDataType();
89 RsDataType dt = mType->getElement()->getDataType();
97 RsDataType dt = mType->getElement()->getDataType();
105 RsDataType dt = mType->getElement()->getDataType();
113 RsDataType dt = mType->getElement()->getDataType();
134 sp<const Type> old = mType;
138 mType = t;
189 int eSize = mType.mElement.getSizeBytes();
202 if (component_number >= mType
[all...]

Completed in 480 milliseconds

1234