Searched defs:mType (Results 1 - 25 of 110) sorted by last modified time

12345

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewAnimationsTest.java1312 Type mType; field in class:RecyclerViewAnimationsTest.PositionConstraint
1324 constraint.mType = Type.scrap;
1333 constraint.mType = Type.adapterScrap;
1342 constraint.mType = Type.adapter;
1363 "t=" + mType.name() +
1374 if (mType == Type.scrap || (mType == Type.adapterScrap && !state.isPreLayout())) {
1390 if (mType == Type.scrap) {
1394 } else if (mType == Type.adapter || mType
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocation.java60 Type mType; field in class:Allocation
178 return mType.getElement();
198 if (mType.mDimYuv != 0) {
199 return (int)Math.ceil(mType.getCount() * mType.getElement().getBytesSize() * 1.5);
201 return mType.getCount() * mType.getElement().getBytesSize();
241 mType = t;
243 mSize = mType.getCount() * mType
[all...]
H A DElement.java69 DataType mType; field in class:Element
292 return mType;
716 mType = DataType.NONE;
739 mType = dt;
901 // We also ignore mNormalized because it can be different. The mType
905 (mType != DataType.NONE) &&
906 (mType == e.mType) &&
/frameworks/rs/cpp/
H A DrsCppStructs.h296 sp<const Type> mType; member in class:android::RSC::Allocation
340 return mType;
642 return mType;
1078 RsDataType mType; member in class:android::RSC::Element
/frameworks/rs/driver/
H A DrsdShader.h109 uint32_t mType; member in class:RsdShader
/frameworks/rs/
H A DrsAllocation.h176 ObjectBaseRef<const Type> mType; member in class:android::renderscript::Allocation
178 mType.set(t);
H A DrsComponent.h38 RsDataType getType() const {return mType;}
54 RsDataType mType; member in class:android::renderscript::Component
H A DrsFileA3D.h46 RsA3DClassID mType; member in class:android::renderscript::FileA3D::A3DIndexEntry
56 return mType;
H A DrsScriptGroup.h42 ObjectBaseRef<const Type> mType; member in class:android::renderscript::ScriptGroup::Link
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java304 private final int mType; field in class:VCardEntry.PhoneData
314 mType = type;
327 builder.withValue(Phone.TYPE, mType);
328 if (mType == Phone.TYPE_CUSTOM) {
352 return (mType == phoneData.mType
360 int hash = mType;
369 return String.format("type: %d, data: %s, label: %s, isPrimary: %s", mType, mNumber,
383 return mType;
397 private final int mType; field in class:VCardEntry.EmailData
496 private final int mType; field in class:VCardEntry.PostalData
738 private final int mType; field in class:VCardEntry.OrganizationData
874 private final int mType; field in class:VCardEntry.ImData
1349 private final int mType; field in class:VCardEntry.SipData
[all...]
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSimpleSessionDescription.java238 private final String mType; field in class:SimpleSessionDescription.Media
246 mType = type;
256 return mType;
369 buffer.append("m=").append(mType).append(' ').append(mPort);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapEventReport.java60 private final Type mType; field in class:BluetoothMapEventReport
71 mType = parseType(attrs.get("type"));
73 if (mType != Type.MEMORY_FULL && mType != Type.MEMORY_AVAILABLE) {
91 if (mType != Type.MEMORY_FULL && mType != Type.MEMORY_AVAILABLE) {
132 return mType;
172 json.put("type", mType);
H A DBluetoothMapMessage.java51 private final Type mType; field in class:BluetoothMapMessage
107 mType = strToType(attrs.get("type"));
181 json.put("type", mType);
266 return mType;
/frameworks/native/include/gui/
H A DSensor.h89 int32_t mType; member in class:android::Sensor
/frameworks/native/include/input/
H A DKeyCharacterMap.h217 int mType; member in class:android::KeyCharacterMap
/frameworks/native/include/media/hardware/
H A DHardwareAPI.h175 Type mType; member in struct:android::MediaImage
216 // buffers, the component shall set mNumPlanes to 0, and mType to MEDIA_IMAGE_TYPE_UNKNOWN.
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.h125 int32_t getDisplayType() const { return mType; }
178 DisplayType mType; member in class:android::DisplayDevice
H A DTransform.h107 mutable uint32_t mType; member in class:android::Transform
/frameworks/native/services/surfaceflinger/Effects/
H A DDaltonizer.h52 ColorBlindnessTypes mType; member in class:android::Daltonizer
/frameworks/compile/slang/
H A Dslang_rs_export_type.h287 DataType mType; member in class:slang::RSExportPrimitiveType
311 mType(DT),
343 inline DataType getType() const { return mType; }
345 return IsRSObjectType(mType);
508 const RSExportType *mType; member in class:slang::RSExportRecordType::Field
521 : mType(T),
528 inline const RSExportType *getType() const { return mType; }
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2532 private int mType; field in class:EditStyledText.EditStyledTextSpans.MarqueeSpan
2536 mType = type;
2546 return mType;
2550 mMarqueeColor = getMarqueeColor(mType, bgc);
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java79 private EntryType mType; field in class:TrackerEntry
82 mType = type;
120 return mType;
173 cValues.put(ENTRY_TYPE, mType.toString());
174 if (mType == EntryType.LOCATION_TYPE) {
/frameworks/base/tools/aapt/
H A DResourceTable.h315 : mName(name), mType(TYPE_UNKNOWN),
331 type getType() const { return mType; }
358 const Item* getItem() const { return mType == TYPE_ITEM ? &mItem : NULL; }
379 type mType; member in class:ResourceTable::Entry
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DAdapterItem.java30 private final int mType; field in class:AdapterItem
38 mType = type;
60 return mType;
/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java1079 int type = pointer.mType;
3896 public int mType; field in class:GLLogWrapper.PointerInfo
3899 * sizeof(mType)
3910 mType = type;
3933 return mStride > 0 ? mStride : sizeof(mType) * mSize;

Completed in 1567 milliseconds

12345