HomeSort by relevance Sort by last modified time
    Searched refs:mType (Results 1 - 25 of 1452) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Contacts/src/com/android/contacts/model/
BuilderWrapper.java 30 private int mType;
34 mType = type;
38 return mType;
41 public void setType(int mType) {
42 this.mType = mType;
CPOWrapper.java 27 private int mType;
31 mType = type;
35 return mType;
39 this.mType = type;
  /packages/apps/Dialer/java/com/android/contacts/common/model/
BuilderWrapper.java 31 private int mType;
35 mType = type;
39 return mType;
42 public void setType(int mType) {
43 this.mType = mType;
CPOWrapper.java 28 private int mType;
32 mType = type;
36 return mType;
40 this.mType = type;
  /frameworks/support/slices/core/src/main/java/androidx/slice/
SliceSpec.java 45 private final String mType;
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);
  /development/tools/apkcheck/src/com/android/apkcheck/
FieldInfo.java 24 private String mType;
36 mType = type;
45 mNameAndType = mName + ":" + TypeUtils.typeToDescriptor(mType);
54 String type = TypeUtils.ambiguousToBinaryName(mType, apiList);
55 if (!type.equals(mType)) {
57 mType = type;
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
EncodingOption.java 56 private EncodingType mType;
61 mType = type;
67 return mType + ":" + mSymbolLength;
71 return mType;
89 if (mType == null) {
90 if (other.mType != null) {
93 } else if (!mType.equals(other.mType)) {
103 result = result * 31 + (mType != null ? mType.hashCode() : 0)
    [all...]
PoloMessage.java 67 private final PoloMessageType mType;
70 mType = type;
74 return mType;
79 return "[" + mType.toString() + "]";
  /frameworks/base/core/java/android/app/slice/
SliceSpec.java 43 private final String mType;
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, mRevision)
    [all...]
  /frameworks/av/media/libmedia/
MediaResourcePolicy.cpp 30 : mType(type),
34 mType = parcel.readString8();
39 parcel->writeString8(mType);
45 str.appendFormat("%s:%s", mType.string(), mValue.string());
MediaResource.cpp 25 : 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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLAbstractAtomicProperty.java 25 private final GLStateType mType;
29 mType = type;
34 return mType;
63 pp.prettyPrint(mType, getStringValue());
  /packages/services/Car/car-lib/src/android/car/hardware/
CarSensorConfig.java 48 private final int mType;
52 mType = in.readInt();
65 dest.writeInt(mType);
83 mType = type;
88 if (mType == type) {
92 "Invalid sensor type: expected %d, got %d", type, mType));
105 throw new IllegalArgumentException("SensorType " + mType +
112 return mType;
120 sb.append("mType: " + mType);
    [all...]
  /packages/services/Car/car-lib/src/android/car/vms/
VmsLayer.java 34 private int mType;
43 mType = type;
49 return mType;
72 return Objects.equals(p.mType, mType) &&
84 return Objects.hash(mType, mSubtype, mVersion);
89 return "VmsLayer{ Type: " + mType + ", Sub type: " + mSubtype + ", Version: " + mVersion + "}";
107 out.writeInt(mType);
122 mType = in.readInt();
  /system/libvintf/
KernelConfigTypedValue.cpp 34 mType = KernelConfigType::STRING;
39 mType = KernelConfigType::INTEGER;
44 mType = KernelConfigType::RANGE;
49 mType = KernelConfigType::TRISTATE;
54 if (mType != other.mType) {
57 switch(mType) {
71 switch(mType) {
  /frameworks/base/core/java/android/os/
Temperature.java 30 private int mType;
39 mType = type;
56 return mType;
75 mType = p.readInt();
81 p.writeInt(mType);
  /frameworks/base/core/java/android/view/autofill/
AutofillValue.java 44 private final @View.AutofillType int mType;
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 == AUTOFILL_TYPE_DATE
    [all...]
  /frameworks/base/libs/hwui/
Outline.h 31 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 == Type::None || mType == Type::Empty) return nullptr
    [all...]
  /frameworks/av/media/libstagefright/webm/
WebmFrame.cpp 42 : 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/
SymbolExpr.java 29 Class mType;
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/
CredentialType.java 49 private final int mType;
54 mType = credType;
79 return mType;
91 return mType == that.mType;
96 return mType;
101 return "CredentialType{mType=" + mType + "}";
  /packages/services/Car/car-support-lib/src/android/support/car/hardware/
CarSensorConfig.java 49 private final int mType;
61 mType = type;
66 if (mType == type) {
70 "Invalid sensor type: expected %d, got %d", type, mType));
78 throw new IllegalArgumentException("SensorType " + mType +
85 return mType;
94 sb.append("mType: " + mType);
  /frameworks/base/libs/hwui/thread/
Barrier.h 28 : mType(type), mOpened(false) {}
34 mCondition.signal(mType);
45 Condition::WakeUpType mType;
Signal.h 30 : mType(type), mSignaled(false) {}
38 mCondition.signal(mType);
50 Condition::WakeUpType mType;
  /frameworks/base/lowpan/java/android/net/lowpan/
LowpanProperties.java 34 private final Class<T> mType;
38 mType = type;
48 return mType;

Completed in 1316 milliseconds

1 2 3 4 5 6 7 8 91011>>