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

12345

/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/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;
122 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;
/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/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/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/net/
H A DWifiLinkQualityInfo.java29 private int mType = UNKNOWN_INT; field in class:WifiLinkQualityInfo
48 dest.writeInt(mType);
65 li.mType = in.readInt();
80 return mType;
87 mType = type;
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;
/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/libs/hwui/thread/
H A DBarrier.h27 Barrier(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mOpened(false) { }
33 mCondition.signal(mType);
49 Condition::WakeUpType mType; member in class:android::uirenderer::Barrier
H A DSignal.h29 Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mSignaled(false) { }
35 mCondition.signal(mType);
47 Condition::WakeUpType mType; member in class:android::uirenderer::Signal
/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/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DAdapterItem.java30 private final int mType; field in class:AdapterItem
38 mType = type;
60 return mType;
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocation.java60 Type mType; field in class:Allocation
178 return mType.getElement();
198 return mType.getCount() * mType.getElement().getBytesSize();
238 mType = t;
240 mSize = mType.getCount() * mType.getElement().getBytesSize();
264 if ((mType.mElement.mType == Element.DataType.SIGNED_32) ||
265 (mType
[all...]
/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/base/graphics/java/android/renderscript/
H A DAllocation.java60 Type mType; field in class:Allocation
207 return mType.getElement();
227 return mType.getCount() * mType.getElement().getBytesSize();
270 mType = t;
277 mSize = mType.getCount() * mType.getElement().getBytesSize();
294 if ((mType.mElement.mType == Element.DataType.SIGNED_32) ||
295 (mType
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphOutputTarget.java14 private FrameType mType = FrameType.any(); field in class:GraphOutputTarget
22 mType = type;
26 return mType;
32 .addInputPort("frame", Signature.PORT_REQUIRED, mType)
/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;
75 switch (mType) {
179 rsAssert(mType != RS_TYPE_INVALID);
189 return (mType >= RS_TYPE_ELEMENT);
243 if (mType >= RS_TYPE_ELEMENT) {
245 prefix, gTypeObjStrings[mType - RS_TYPE_ELEMENT], gKindStrings[mKind], mVectorSize, mBits);
248 prefix, gTypeBasicStrings[mType], gKindStrings[mKind], mVectorSize, mBits);
253 stream->addU8((uint8_t)mType);
260 mType = (RsDataType)stream->loadU8();
266 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/hardware/
H A DSensor.java272 int offset = sensor.mType * 2;
290 int type = sensor.mType;
317 private int mType; field in class:Sensor
346 return mType;
417 + ", type=" + mType + ", maxRange=" + mMaxRange + ", resolution=" + mResolution
/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/graphics/java/android/graphics/
H A DComposeShader.java30 private int mType; field in class:ComposeShader
52 mType = TYPE_XFERMODE;
76 mType = TYPE_PORTERDUFFMODE;
92 switch (mType) {
H A DSweepGradient.java28 private int mType; field in class:SweepGradient
60 mType = TYPE_COLORS_AND_POSITIONS;
78 mType = TYPE_COLOR_START_AND_COLOR_END;
93 switch (mType) {
/frameworks/native/services/surfaceflinger/Effects/
H A DDaltonizer.cpp23 mType(deuteranomaly), mMode(simulation), mDirty(true) {
30 if (type != mType) {
32 mType = type;
154 switch (mType) {

Completed in 3950 milliseconds

12345