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

123456

/frameworks/base/libs/hwui/
H A DOutline.h30 , mType(kOutlineType_None)
35 mType = kOutlineType_RoundRect;
49 mType = kOutlineType_ConvexPath;
56 mType = kOutlineType_Empty;
62 mType = kOutlineType_None;
68 return mType == kOutlineType_Empty;
85 return mShouldClip && (mType == kOutlineType_RoundRect);
89 if (mType == kOutlineType_RoundRect) {
98 if (mType == kOutlineType_None || mType
112 OutlineType mType; member in class:android::uirenderer::Outline
[all...]
/frameworks/base/media/java/android/media/
H A DAudioDevicePort.java36 private final int mType; field in class:AudioDevicePort
45 mType = type;
53 return mType;
91 AudioSystem.getInputDeviceName(mType) :
92 AudioSystem.getOutputDeviceName(mType));
94 + ", mType: " + type
H A DMediaSyncEvent.java65 private final int mType; field in class:MediaSyncEvent
69 mType = eventType;
100 return mType;
/frameworks/base/media/java/android/media/tv/
H A DTvTrackInfo.java42 private final int mType; field in class:TvTrackInfo
55 mType = type;
67 mType = in.readInt();
83 return mType;
105 if (mType != TYPE_AUDIO) {
115 if (mType != TYPE_AUDIO) {
126 if (mType != TYPE_VIDEO) {
137 if (mType != TYPE_VIDEO) {
148 if (mType != TYPE_VIDEO) {
174 dest.writeInt(mType);
203 private final int mType; field in class:TvTrackInfo.Builder
[all...]
H A DTvInputHardwareInfo.java68 private int mType; field in class:TvInputHardwareInfo
81 return mType;
93 if (mType != TV_INPUT_TYPE_HDMI) {
103 b.append(", type=").append(mType);
106 if (mType == TV_INPUT_TYPE_HDMI) {
122 dest.writeInt(mType);
125 if (mType == TV_INPUT_TYPE_HDMI) {
132 mType = source.readInt();
135 if (mType == TV_INPUT_TYPE_HDMI) {
142 private Integer mType field in class:TvInputHardwareInfo.Builder
[all...]
H A DTvStreamConfig.java35 private int mType; field in class:TvStreamConfig
75 return mType;
95 b.append("mType=").append(mType).append(";");
109 dest.writeInt(mType);
120 private Integer mType; field in class:TvStreamConfig.Builder
134 mType = type;
154 if (mStreamId == null || mType == null || mMaxWidth == null || mMaxHeight == null
161 config.mType = mType;
[all...]
/frameworks/av/media/libstagefright/webm/
H A DWebmFrame.cpp42 : mType(kInvalidType),
50 : mType(type),
59 mType == kVideoType ? kVideoTrackNum : kAudioTrackNum,
73 if (this->mType == kAudioType && other.mType == kVideoType) {
76 if (this->mType == kVideoType && other.mType == kAudioType) {
/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) {
/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.java41 private final int mType; field in class:ContentProviderOperation
58 mType = builder.mType;
70 mType = source.readInt();
93 mType = cpo.mType;
117 dest.writeInt(mType);
208 return mType;
212 return mType == TYPE_DELETE || mType
427 private final int mType; field in class:ContentProviderOperation.Builder
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java55 Type mType; field in class:Allocation
93 return mType.mElement.mType;
101 return mType.mElement.mType;
109 return mType.mElement.mType;
117 return mType.mElement.mType;
261 return mType
[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/bluetooth/le/
H A DResultStorageDescriptor.java30 private int mType; field in class:ResultStorageDescriptor
35 return mType;
54 mType = type;
66 dest.writeInt(mType);
76 mType = in.readInt();
/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.java53 final int mType; field in class:NetworkIdentity
61 mType = type;
70 return Objects.hash(mType, mSubType, mSubscriberId, mNetworkId, mRoaming);
77 return mType == ident.mType && mSubType == ident.mSubType && mRoaming == ident.mRoaming
87 builder.append("type=").append(getNetworkTypeName(mType));
91 } else if (ConnectivityManager.isNetworkTypeMobile(mType)) {
109 return mType;
190 int res = Integer.compare(mType, another.mType);
[all...]
/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 if (mType.mDimYuv != 0) {
199 return (int)Math.ceil(mType.getCount() * mType.getElement().getBytesSize() * 1.5);
201 return mType.getCount() * mType.getElement().getBytesSize();
241 mType = t;
243 mSize = mType.getCount() * mType
[all...]
/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/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/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/graphics/
H A DComposeShader.java30 private int mType; field in class:ComposeShader
52 mType = TYPE_XFERMODE;
68 mType = TYPE_PORTERDUFFMODE;
82 switch (mType) {
H A DSweepGradient.java28 private int mType; field in class:SweepGradient
60 mType = TYPE_COLORS_AND_POSITIONS;
77 mType = TYPE_COLOR_START_AND_COLOR_END;
91 switch (mType) {
/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();

Completed in 1176 milliseconds

123456