Searched refs:mType (Results 26 - 50 of 70) sorted by relevance

123

/frameworks/base/libs/gui/
H A DSensor.cpp33 : mHandle(0), mType(0),
44 mType = hwSensor->type;
69 return mType;
144 offset += write(buffer, offset, mType);
182 offset += read(buffer, offset, &mType);
/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/compile/slang/
H A Dslang_rs_export_type.h208 // NOTE: There's no any instance of RSExportPrimitiveType which mType
213 DataType mType; member in class:slang::RSExportPrimitiveType
242 mType(DT),
278 inline DataType getType() const { return mType; }
281 return ((mType >= FirstRSObjectType) && (mType <= LastRSObjectType));
433 const RSExportType *mType; member in class:slang::RSExportRecordType::Field
446 : mType(T),
454 inline const RSExportType *getType() const { return mType; }
/frameworks/base/core/java/android/content/
H A DBroadcastReceiver.java236 final int mType; field in class:BroadcastReceiver.PendingResult
253 mType = type;
364 if (mType == TYPE_COMPONENT) {
389 } else if (mOrderedHint && mType != TYPE_UNREGISTERED) {
H A DIntent.java3005 private String mType; field in class:Intent
3028 this.mType = o.mType;
3054 this.mType = o.mType;
3317 intent.mType = value;
3443 intent.mType = uri.substring(i, j);
3623 return mType;
3656 if (mType != null) {
3657 return mType;
[all...]
/frameworks/base/include/gui/
H A DSensor.h83 int32_t mType; member in class:android::Sensor
/frameworks/base/core/java/com/android/internal/view/
H A DBaseSurfaceHolder.java50 int mType = -1; field in class:BaseSurfaceHolder
165 if (mType == SURFACE_TYPE_PUSH_BUFFERS) {
/frameworks/base/libs/rs/
H A DrsAllocation.h129 ObjectBaseRef<const Type> mType; member in class:android::renderscript::Allocation
131 mType.set(t);
H A DrsFileA3D.cpp72 entry->mType = (RsA3DClassID)headerStream->loadU32();
231 switch (entry->mType) {
306 headerStream.addU32((uint32_t)mWriteIndex[i]->mType);
355 indexEntry->mType = obj->getClassId();
/frameworks/base/media/mtp/
H A DMtpProperty.h46 MtpDataType mType; member in class:android::MtpProperty
/frameworks/base/obex/javax/obex/
H A DHeaderSet.java184 private String mType; // null terminated ASCII text string field in class:HeaderSet
278 mType = (String)headerValue;
452 return mType;
512 if (mType != null) {
/frameworks/base/core/jni/
H A Dandroid_nfc_NdefRecord.cpp94 jfieldID mType, mId, mPayload, mTnf, mFlags; local
120 mType = e->GetFieldID(record_cls, "mType", "[B");
127 e->SetObjectField(o, mType, type);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DBaseAdapter.java52 private final int mType; field in class:BaseAdapter.AdapterItem
60 mType = type;
82 return mType;
/frameworks/base/media/java/android/media/
H A DRingtoneManager.java221 private int mType = TYPE_RINGTONE; field in class:RingtoneManager
242 setType(mType);
254 setType(mType);
272 mType = type;
283 switch (mType) {
/frameworks/base/libs/hwui/
H A DSkiaColorFilter.cpp27 mType(type), mBlend(blend), mSkFilter(skFilter) {
H A DSkiaShader.h77 return mType;
119 Type mType; member in struct:android::uirenderer::SkiaShader
/frameworks/base/libs/rs/driver/
H A DrsdShader.h84 uint32_t mType; member in class:RsdShader
H A DrsdShader.cpp37 mType = type;
158 if (mType == GL_FRAGMENT_SHADER) {
171 mShaderID = glCreateShader(mType);
175 LOGV("Loading shader type %x, ID %i", mType, mShaderID);
500 setupUserConstants(rsc, sc, mType == GL_FRAGMENT_SHADER);
/frameworks/base/media/libstagefright/mpeg2ts/
H A DATSParser.cpp185 unsigned mType; member in struct:android::StreamInfo
268 info.mType = streamType;
284 if (index >= 0 && mStreams.editValueAt(index)->type() != info.mType) {
304 LOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType);
321 info1.mPID == s1->pid() && info1.mType == s2->type()
322 && info2.mPID == s2->pid() && info2.mType == s1->type();
325 info1.mPID == s2->pid() && info1.mType == s1->type()
326 && info2.mPID == s1->pid() && info2.mType == s2->type();
354 sp<Stream> stream = new Stream(this, info.mPID, info.mType);
/frameworks/base/services/surfaceflinger/
H A DTransform.h121 mutable uint32_t mType; member in class:android::Transform
/frameworks/base/voip/java/android/net/sip/
H A DSimpleSessionDescription.java237 private final String mType; field in class:SimpleSessionDescription.Media
245 mType = type;
255 return mType;
368 buffer.append("m=").append(mType).append(' ').append(mPort);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothSocket.java86 private final int mType; /* one of TYPE_RFCOMM etc */ field in class:BluetoothSocket
138 mType = type;
/frameworks/base/libs/ui/
H A DKeyCharacterMap.cpp82 mType(KEYBOARD_TYPE_UNKNOWN) {
128 return mType;
509 if (mMap->mType == KEYBOARD_TYPE_UNKNOWN) {
519 if (mMap->mType != KEYBOARD_TYPE_UNKNOWN) {
546 mMap->mType = type;
/frameworks/base/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp139 Type mType; member in struct:android::MatroskaSource
159 mType(OTHER),
172 mType = AVC;
185 mType = AAC;
426 if (mType != AVC) {
/frameworks/base/graphics/java/android/renderscript/
H A DElement.java51 DataType mType; field in class:Element
697 mType = dt;
711 // we will pack mType; mKind; mNormalized; mVectorSize; NumSubElements
720 mType = dt;
721 mSize = mType.mSize * mVectorSize;
867 // We also ignore mNormalized because it can be different. The mType
871 (mType != null) &&
872 (mType == e.mType) &&

Completed in 799 milliseconds

123