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

1234567891011

/frameworks/support/slices/core/src/main/java/androidx/slice/
H A DSliceSpec.java45 private final String mType; field in class:SliceSpec
49 mType = type;
57 return mType;
78 if (!mType.equals(candidate.mType)) return false;
86 return mType.equals(other.mType) && mRevision == other.mRevision;
91 return mType.hashCode() + mRevision;
96 return String.format("SliceSpec{%s,%d}", mType, mRevision);
/frameworks/base/core/java/android/app/slice/
H A DSliceSpec.java43 private final String mType; field in class:SliceSpec
47 mType = type;
55 mType = source.readString();
66 dest.writeString(mType);
74 return mType;
95 if (!mType.equals(candidate.mType)) return false;
103 return mType.equals(other.mType) && mRevision == other.mRevision;
108 return String.format("SliceSpec{%s,%d}", mType, mRevisio
[all...]
/frameworks/av/media/libmedia/
H A DMediaResourcePolicy.cpp30 : mType(type),
34 mType = parcel.readString8();
39 parcel->writeString8(mType);
45 str.appendFormat("%s:%s", mType.string(), mValue.string());
H A DMediaResource.cpp25 : mType(kUnspecified),
30 : mType(type),
35 : mType(type),
40 mType = static_cast<Type>(parcel.readInt32());
46 parcel->writeInt32(static_cast<int32_t>(mType));
53 str.appendFormat("%s/%s:%llu", asString(mType), asString(mSubType), (unsigned long long)mValue);
58 return (other.mType == mType) && (other.mSubType == mSubType) && (other.mValue == mValue);
/frameworks/base/core/java/android/os/
H A DTemperature.java30 private int mType; field in class:Temperature
39 mType = type;
56 return mType;
75 mType = p.readInt();
81 p.writeInt(mType);
/frameworks/base/core/java/android/view/autofill/
H A DAutofillValue.java44 private final @View.AutofillType int mType; field in class:AutofillValue
48 mType = type;
60 Preconditions.checkState(isText(), "value must be a text value, not type=" + mType);
70 return mType == AUTOFILL_TYPE_TEXT;
81 Preconditions.checkState(isToggle(), "value must be a toggle value, not type=" + mType);
91 return mType == AUTOFILL_TYPE_TOGGLE;
102 Preconditions.checkState(isList(), "value must be a list value, not type=" + mType);
112 return mType == AUTOFILL_TYPE_LIST;
123 Preconditions.checkState(isDate(), "value must be a date value, not type=" + mType);
133 return mType
[all...]
/frameworks/base/libs/hwui/
H A DOutline.h31 Outline() : mShouldClip(false), mType(Type::None), mRadius(0), mAlpha(0.0f) {}
35 if (mType == Type::RoundRect && left == mBounds.left && right == mBounds.right &&
41 mType = Type::RoundRect;
66 mType = Type::ConvexPath;
73 mType = Type::Empty;
79 mType = Type::None;
84 bool isEmpty() const { return mType == Type::Empty; }
94 return mShouldClip && (mType == Type::RoundRect);
103 if (mType == Type::RoundRect) {
112 if (mType
125 Type mType; member in class:android::uirenderer::Outline::Type
[all...]
H A DGpuMemoryTracker.h32 this, static_cast<int>(mType), mSize, pthread_self(), gGpuThread)
44 GpuObjectType objectType() { return mType; }
56 explicit GpuMemoryTracker(GpuObjectType type) : mType(type) {
73 GpuObjectType mType; member in class:android::uirenderer::GpuMemoryTracker
/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/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DSymbolExpr.java29 Class mType; field in class:SymbolExpr
34 mType = type;
43 return modelAnalyzer.findClass(mType);
48 return mType.getSimpleName() + mText;
63 return model.symbol(mText, mType);
73 return !void.class.equals(mType);
78 if (void.class.equals(mType)) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
H A DCredentialType.java49 private final int mType; field in class:CredentialType
54 mType = credType;
79 return mType;
91 return mType == that.mType;
96 return mType;
101 return "CredentialType{mType=" + mType + "}";
/frameworks/base/libs/hwui/thread/
H A DBarrier.h28 : mType(type), mOpened(false) {}
34 mCondition.signal(mType);
45 Condition::WakeUpType mType; member in class:android::uirenderer::Barrier
/frameworks/base/lowpan/java/android/net/lowpan/
H A DLowpanProperties.java34 private final Class<T> mType; field in class:LowpanProperties.LowpanStandardProperty
38 mType = type;
48 return mType;
/frameworks/base/media/java/android/media/
H A DMediaSyncEvent.java65 private final int mType; field in class:MediaSyncEvent
69 mType = eventType;
100 return mType;
H A DAudioDevicePort.java36 private final int mType; field in class:AudioDevicePort
46 mType = type;
54 return mType;
87 if (mType != other.type()) {
102 AudioSystem.getInputDeviceName(mType) :
103 AudioSystem.getOutputDeviceName(mType));
105 + ", mType: " + type
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DInjectedField.java28 private final String mType; field in class:InjectedField
33 mType = type;
63 return ModelAnalyzer.getInstance().findClass(mType, null);
/frameworks/base/core/java/android/content/
H A DContentProviderOperation.java46 private final int mType; field in class:ContentProviderOperation
63 mType = builder.mType;
75 mType = source.readInt();
98 mType = cpo.mType;
122 dest.writeInt(mType);
222 return mType;
231 return mType == TYPE_INSERT;
240 return mType
489 private final int mType; field in class:ContentProviderOperation.Builder
[all...]
/frameworks/base/media/java/android/media/tv/
H A DTvTrackInfo.java57 private final int mType; field in class:TvTrackInfo
75 mType = type;
90 mType = in.readInt();
110 return mType;
141 if (mType != TYPE_AUDIO) {
153 if (mType != TYPE_AUDIO) {
166 if (mType != TYPE_VIDEO) {
179 if (mType != TYPE_VIDEO) {
192 if (mType != TYPE_VIDEO) {
205 if (mType !
310 private final int mType; field in class:TvTrackInfo.Builder
[all...]
H A DTvInputHardwareInfo.java98 private int mType; field in class:TvInputHardwareInfo
113 return mType;
125 if (mType != TV_INPUT_TYPE_HDMI) {
148 b.append(", type=").append(mType);
151 if (mType == TV_INPUT_TYPE_HDMI) {
168 dest.writeInt(mType);
171 if (mType == TV_INPUT_TYPE_HDMI) {
179 mType = source.readInt();
182 if (mType == TV_INPUT_TYPE_HDMI) {
190 private Integer mType field in class:TvInputHardwareInfo.Builder
[all...]
H A DTvStreamConfig.java35 private int mType; field in class:TvStreamConfig
75 return mType;
92 return "TvStreamConfig {mStreamId=" + mStreamId + ";" + "mType=" + mType + ";mGeneration="
105 dest.writeInt(mType);
116 private Integer mType; field in class:TvStreamConfig.Builder
130 mType = type;
150 if (mStreamId == null || mType == null || mMaxWidth == null || mMaxHeight == null
157 config.mType = 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;
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/rs/support/java/src/android/support/v8/renderscript/
H A DAllocation.java59 Type mType; field in class:Allocation
97 return mType.mElement.mType;
105 return mType.mElement.mType;
113 return mType.mElement.mType;
121 return mType.mElement.mType;
254 return mType
[all...]
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DFood.java25 private final int mType; field in class:Food
31 mType = type;
43 return Icon.createWithResource(context, sIcons[mType]);
50 return sNames[mType];
54 return context.getResources().getIntArray(R.array.food_intervals)[mType];
58 return mType;
/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java60 Type mType; field in class:Allocation
104 return mType.mElement.mType;
112 return mType.mElement.mType;
120 return mType.mElement.mType;
128 return mType.mElement.mType;
148 "[] is not compatible with data type " + mType
[all...]

Completed in 592 milliseconds

1234567891011