Searched refs:mType (Results 1 - 25 of 148) sorted by last modified time

123456

/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 DAllocationThunker.java78 mType = t;
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) &&
H A DElementThunker.java163 return mType;
/frameworks/rs/cpp/
H A DAllocation.cpp64 mType = t;
76 RsDataType dt = mType->getElement()->getDataType();
84 RsDataType dt = mType->getElement()->getDataType();
92 RsDataType dt = mType->getElement()->getDataType();
100 RsDataType dt = mType->getElement()->getDataType();
108 RsDataType dt = mType->getElement()->getDataType();
129 sp<const Type> old = mType;
133 mType = t;
207 count, data, count * mType->getElement()->getSizeBytes()));
222 count, data, count * mType
[all...]
H A DElement.cpp180 mType = RS_TYPE_NONE;
260 mType = dt;
352 // We also ignore mNormalized because it can be different. The mType
356 (mType != RS_TYPE_NONE) &&
357 (mType == e->mType) &&
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.cpp38 mType = type;
219 if (mType == GL_FRAGMENT_SHADER) {
231 mCurrentState->mShaderID = glCreateShader(mType);
239 ALOGV("Loading shader type %x, ID %i", mType, mCurrentState->mShaderID);
569 setupUserConstants(rsc, sc, mType == GL_FRAGMENT_SHADER);
H A DrsdShader.h109 uint32_t mType; member in class:RsdShader
/frameworks/rs/
H A Drs.spec113 param RsDataType mType
H A DrsAllocation.h176 ObjectBaseRef<const Type> mType; member in class:android::renderscript::Allocation
178 mType.set(t);
H A DrsComponent.cpp30 mType = dt;
75 switch (mType) {
186 rsAssert(mType != RS_TYPE_INVALID);
196 return (mType >= RS_TYPE_ELEMENT);
250 if (mType >= RS_TYPE_ELEMENT) {
252 prefix, gTypeObjStrings[mType - RS_TYPE_ELEMENT], gKindStrings[mKind], mVectorSize, mBits);
255 prefix, gTypeBasicStrings[mType], gKindStrings[mKind], mVectorSize, mBits);
260 stream->addU8((uint8_t)mType);
267 mType = (RsDataType)stream->loadU8();
273 set(mType, mKin
[all...]
H A DrsComponent.h38 RsDataType getType() const {return mType;}
54 RsDataType mType; member in class:android::renderscript::Component
H A DrsFileA3D.cpp81 entry->mType = (RsA3DClassID)headerStream->loadU32();
248 switch (entry->mType) {
331 headerStream.addU32((uint32_t)mWriteIndex[i]->mType);
379 indexEntry->mType = obj->getClassId();
H A DrsFileA3D.h46 RsA3DClassID mType; member in class:android::renderscript::FileA3D::A3DIndexEntry
56 return mType;
H A DrsScriptGroup.cpp218 l->mType = type[ct];
238 l->mType.get(), RS_ALLOCATION_USAGE_SCRIPT);
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.

Completed in 481 milliseconds

123456