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

1 2 3 4 5 6 7

  /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;
116 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/libs/hwui/thread/
Barrier.h 27 Barrier(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mOpened(false) { }
33 mCondition.signal(mType);
49 Condition::WakeUpType mType;
Signal.h 29 Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mSignaled(false) { }
35 mCondition.signal(mType);
47 Condition::WakeUpType 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;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
Event.java 57 final private int mType; // The type of event - one of the constants above
69 mType = type;
87 return EVENT_COMMITTABLE == mType;
91 return EVENT_DEAD == 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());
  /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();

Completed in 1607 milliseconds

1 2 3 4 5 6 7