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

1 2 3 4 5

  /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/util/
Property.java 31 private final Class<V> mType;
63 mType = type;
104 return mType;
  /frameworks/base/drm/java/android/drm/
DrmEvent.java 45 private final int mType;
61 mType = type;
81 mType = type;
103 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/include/gui/
Sensor.h 83 int32_t mType;
  /frameworks/base/libs/rs/
rsComponent.h 37 RsDataType getType() const {return mType;}
52 RsDataType mType;
rsFileA3D.h 48 RsA3DClassID mType;
58 return mType;
  /frameworks/base/media/java/android/media/videoeditor/
EffectColor.java 63 private final int mType;
122 mType = type;
131 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/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;
51 return mType.getName();
79 return "ResourceValue [" + mType + "/" + getName() + " = " + mValue //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
90 result = prime * result + ((mType == null) ? 0 : mType.hashCode());
107 if (mType == null) {
108 if (other.mType != null
    [all...]
  /frameworks/base/core/java/android/net/
NetworkIdentity.java 34 final int mType;
40 this.mType = type;
48 return Objects.hashCode(mType, mSubType, mSubscriberId);
55 return mType == ident.mType && mSubType == ident.mSubType
64 final String typeName = ConnectivityManager.getNetworkTypeName(mType);
66 if (ConnectivityManager.isNetworkTypeMobile(mType)) {
79 return 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/core/jni/
android_nfc_NdefRecord.cpp 94 jfieldID mType, mId, mPayload, mTnf, mFlags;
120 mType = e->GetFieldID(record_cls, "mType", "[B");
127 e->SetObjectField(o, mType, type);
  /frameworks/base/media/libeffects/testlibs/
AudioShelvingFilter.h 118 ShelfType mType;
  /frameworks/base/services/surfaceflinger/
Transform.h 121 mutable uint32_t mType;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ImageCacheRequest.java 33 private int mType;
40 mType = type;
46 ((mType == MediaItem.TYPE_THUMBNAIL) ? "THUMB" :
47 (mType == MediaItem.TYPE_MICROTHUMBNAIL) ? "MICROTHUMB" : "?");
50 ImageData data = cacheService.getImageData(mPath, mType);
63 Bitmap bitmap = onDecodeOriginal(jc, mType);
71 if (mType == MediaItem.TYPE_MICROTHUMBNAIL) {
83 cacheService.putImageData(mPath, mType, array);
  /packages/apps/Mms/src/com/android/mms/dom/events/
EventTargetImpl.java 36 final String mType;
42 mType = type;
95 && listenerEntry.mType.equals(eventImpl.getType())) {
124 && listenerEntry.mType.equals(type)) {
  /packages/apps/Mms/src/com/android/mms/layout/
HVGALayoutParameters.java 27 private int mType = -1;
43 mType = type;
47 return mType == HVGA_LANDSCAPE ? HVGA_LANDSCAPE_WIDTH
52 return mType == HVGA_LANDSCAPE ? HVGA_LANDSCAPE_HEIGHT
57 return mType == HVGA_LANDSCAPE ? IMAGE_HEIGHT_LANDSCAPE
62 return mType == HVGA_LANDSCAPE ? TEXT_HEIGHT_LANDSCAPE
67 return mType;
71 return mType == HVGA_LANDSCAPE ? "HVGA-L" : "HVGA-P";

Completed in 766 milliseconds

1 2 3 4 5