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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
QueryImpl.h 20 explicit QueryImpl(GLenum type) : mType(type), mStatus(GL_FALSE), mResult(0) { }
29 GLenum getType() const { return mType; }
38 GLenum 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/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
SelectPopupItem.java 15 private final int mType;
19 mType = type;
34 return mType == PopupItemType.ENABLED || mType == PopupItemType.GROUP;
39 return mType == PopupItemType.GROUP;
43 return mType;
  /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 25 private ClassInfo mType;
31 mType = null;
36 mType = type;
41 return mType;
45 mType = cl;
64 if (mType == null) {
67 str.append(mType.qualifiedName());
  /frameworks/av/media/libstagefright/webm/
WebmFrame.h 26 const int mType;
  /frameworks/base/core/java/android/bluetooth/le/
ResultStorageDescriptor.java 30 private int mType;
35 return mType;
54 mType = type;
66 dest.writeInt(mType);
76 mType = in.readInt();
  /frameworks/base/core/java/android/nfc/tech/
NfcBarcode.java 38 private int mType;
67 mType = extras.getInt(EXTRA_BARCODE_TYPE);
83 return mType;
122 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/graphics/java/android/graphics/
SweepGradient.java 28 private int mType;
60 mType = TYPE_COLORS_AND_POSITIONS;
77 mType = TYPE_COLOR_START_AND_COLOR_END;
91 switch (mType) {
ComposeShader.java 30 private int mType;
52 mType = TYPE_XFERMODE;
68 mType = TYPE_PORTERDUFFMODE;
82 switch (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/
AudioDevicePort.java 34 private final int mType;
43 mType = type;
51 return mType;
89 + ", mType:" + mType
MediaSyncEvent.java 65 private final int mType;
69 mType = eventType;
100 return mType;
  /hardware/intel/img/hwcomposer/include/
DummyDevice.h 64 uint32_t mType;
  /hardware/libhardware/modules/camera/
Stream.h 61 const int 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;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
suggested_word.h 46 mType(type), mIndexToPartialCommit(indexToPartialCommit),
62 return mType;
78 int 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;
  /packages/apps/Settings/src/com/android/settings/accessibility/
ToggleDaltonizerPreferenceFragment.java 36 private ListPreference mType;
44 mType = (ListPreference) findPreference("type");
56 if (preference == mType) {
89 mType.setValue(value);
90 mType.setOnPreferenceChangeListener(this);
91 final int index = mType.findIndexOfValue(value);
94 mType.setSummary(getString(R.string.daltonizer_type_overridden,
  /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);
  /external/chromium_org/third_party/angle/src/compiler/translator/
LoopInfo.h 24 TBasicType getType() const { return mType; }
25 void setType(TBasicType type) { mType = type; }
35 TBasicType mType; // Either EbtInt or EbtFloat
  /frameworks/av/media/img_utils/include/img_utils/
TiffEntryImpl.h 56 uint16_t mType;
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
87 return static_cast<TagType>(mType);
127 BAIL_ON_FAIL(out->write(&mType, 0, 1), ret);
187 BAIL_ON_FAIL(out->write(&mType, 0, 1), ret);

Completed in 776 milliseconds

1 2 3 4 5 6 7 8 91011>>