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

1 2 3 4 5 6

  /packages/apps/VideoEditor/src/com/android/videoeditor/
OverlayType.java 50 private final int mType;
57 mType = type;
71 return mType;
EffectType.java 82 private final int mType;
86 mType = type;
94 return mType;
TransitionType.java 86 private final int mType;
93 mType = type;
107 return mType;
  /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/doclava/src/com/google/doclava/
ParameterInfo.java 28 mType = type;
34 return mType;
73 return mType.dimension().equals(dimension);
78 TypeInfo mType;
AnnotationInstanceInfo.java 23 private ClassInfo mType;
29 mType = null;
34 mType = type;
39 return mType;
43 mType = cl;
62 if (mType == null) {
65 str.append(mType.qualifiedName());
  /frameworks/base/core/java/android/nfc/tech/
NfcBarcode.java 38 private int mType;
67 mType = extras.getInt(EXTRA_BARCODE_TYPE);
83 return mType;
94 switch (mType) {
  /frameworks/base/core/java/android/util/
Property.java 31 private final Class<V> mType;
63 mType = type;
104 return mType;
  /frameworks/base/drm/java/android/drm/
DrmEvent.java 49 private final int mType;
65 mType = type;
85 mType = type;
107 return mType;
  /frameworks/base/media/java/android/media/
MediaSyncEvent.java 65 private final int mType;
69 mType = eventType;
100 return mType;
  /packages/apps/Tag/src/com/android/apps/tag/record/
MimeRecord.java 39 private final String mType;
43 mType = Preconditions.checkNotNull(mimeType);
50 return mType;
61 text.setText(mType);
67 return mType;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLDataTypeSpec.java 23 private final Type mType;
31 mType = getDataType(type);
61 return mType;
  /dalvik/hit/src/com/android/hit/
RootObj.java 22 RootType mType = RootType.UNKNOWN;
42 mType = type;
51 if (mType == RootType.SYSTEM_CLASS) {
70 if (mType == RootType.SYSTEM_CLASS) {
105 return "root " + mType.getName();
109 return String.format("%s@0x08x", mType.getName(), mId);
RootType.java 38 private final int mType;
42 mType = type;
47 return mType;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontCacheLinux.cpp 115 FontDescription::GenericFamilyType mType;
127 if (type == fontDescriptions[i].mType) {
  /frameworks/base/media/java/android/media/videoeditor/
EffectColor.java 63 private final int mType;
122 mType = type;
131 return mType;
  /frameworks/native/include/gui/
Sensor.h 81 int32_t mType;
  /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());
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
ResourceValue.java 27 private final ResourceType mType;
32 mType = type;
37 mType = type;
42 return mType;
52 return mType.getName();
81 return "ResourceValue [" + mType + "/" + getName() + " = " + mValue //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
92 result = prime * result + ((mType == null) ? 0 : mType.hashCode());
109 if (mType == null) {
110 if (other.mType != null
    [all...]
  /cts/suite/audio_quality/lib/include/task/
TaskCase.h 60 inline Value(): mType(ETypeDouble) {};
61 inline Value(Type type): mType(type) {};
62 inline Value(double val): mType(ETypeDouble) {
65 inline Value(int64_t val): mType(ETypeI64) {
69 return mType;
72 mType = type;
76 mType = ETypeDouble;
86 mType = ETypeI64;
98 return ((mValue[0] == b.mValue[0]) && (mType == b.mType));
    [all...]
TaskProcess.h 61 ProcessType mType;
78 return (mType == EId);
81 ParamType mType;
  /frameworks/av/media/libeffects/testlibs/
AudioShelvingFilter.h 118 ShelfType mType;
  /frameworks/base/core/java/android/os/
PatternMatcher.java 49 private final int mType;
53 mType = type;
61 return mType;
65 return matchPattern(mPattern, str, mType);
70 switch (mType) {
90 dest.writeInt(mType);
95 mType = src.readInt();
  /frameworks/base/location/java/android/location/
Geofence.java 33 private final int mType;
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/native/services/surfaceflinger/
Transform.h 121 mutable uint32_t mType;

Completed in 978 milliseconds

1 2 3 4 5 6