Searched refs:mType (Results 1 - 25 of 46) sorted by relevance

12

/frameworks/base/core/java/android/pim/vcard/
H A DVCardSourceDetector.java46 private int mType = VCardConfig.PARSE_TYPE_UNKNOWN; field in class:VCardSourceDetector
75 mType = VCardConfig.PARSE_TYPE_FOMA;
79 if (mType != VCardConfig.PARSE_TYPE_UNKNOWN) {
83 mType = VCardConfig.PARSE_TYPE_WINDOWS_MOBILE_JP;
85 mType = VCardConfig.PARSE_TYPE_FOMA;
87 mType = VCardConfig.PARSE_TYPE_MOBILE_PHONE_JP;
89 mType = VCardConfig.PARSE_TYPE_APPLE;
106 return mType;
118 switch (mType) {
/frameworks/base/media/libdrm/mobile2/src/rights/
H A DOperationPermission.cpp27 OperationPermission::OperationPermission(OPERATION type, Constraint *cst) : mType(type), mConstraint(cst)
41 mType = type;
47 return mType;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DResourceValue.java25 private final String mType; field in class:ResourceValue
30 mType = null;
35 mType = type;
41 return mType;
/frameworks/base/core/java/android/content/
H A DContentProviderOperation.java40 private final int mType; field in class:ContentProviderOperation
57 mType = builder.mType;
69 mType = source.readInt();
91 dest.writeInt(mType);
182 return mType;
186 return mType == TYPE_DELETE || mType == TYPE_INSERT || mType == TYPE_UPDATE;
190 return mType
400 private final int mType; field in class:ContentProviderOperation.Builder
[all...]
H A DIntent.java2565 private String mType; field in class:Intent
2587 this.mType = o.mType;
2610 this.mType = o.mType;
2790 intent.mType = value;
2905 intent.mType = uri.substring(i, j);
3085 return mType;
3118 if (mType != null) {
3119 return mType;
[all...]
/frameworks/base/libs/rs/
H A DrsComponent.cpp35 mType = dt;
73 switch(mType) {
161 switch (mType) {
251 return String8(gCTypeStrings[mType]);
256 if (mVectorSize == 4 && mType == RS_TYPE_UNSIGNED_8) {
261 String8 s(gCVecTypeStrings[mType]);
269 if (mType == RS_TYPE_SIGNED_32) {
277 if (mType == RS_TYPE_FLOAT_32) {
334 prefix, gTypeStrings[mType], gKindStrings[mKind], mVectorSize, mBits);
H A DrsComponent.h43 RsDataType getType() const {return mType;}
52 RsDataType mType; member in class:android::renderscript::Component
H A DrsAllocation.cpp30 mPtr = malloc(mType->getSizeBytes());
70 mType.set(type);
120 rsAssert(lodOffset < mType->getLODCount());
124 mTextureGenMipmap = !mType->getDimLOD() && genMipmap;
137 GLenum type = mType->getElement()->getComponent().getGLType();
138 GLenum format = mType->getElement()->getComponent().getGLFormat();
161 for(uint32_t lod = 0; (lod + mTextureLOD) < mType->getLODCount(); lod++) {
183 rsAssert(!mType->getDimY());
184 rsAssert(!mType->getDimZ());
202 glBufferData(GL_ARRAY_BUFFER, mType
[all...]
H A DrsMesh.h55 RsPrimitive mType; member in struct:android::renderscript::Mesh::Primitive_t
H A DrsAllocation.h48 const Type * getType() const {return mType.get();}
81 ObjectBaseRef<const Type> mType; member in class:android::renderscript::Allocation
H A DrsFileA3D.cpp111 LOGE("process index, type %i", ie->mType);
113 switch(ie->mType) {
188 e.mType = (A3DChunkType)index.loadU32();
189 LOGE(" type %i", e.mType);
266 p->mType = (RsPrimitive)io->loadU8();
/frameworks/base/libs/surfaceflinger/
H A DTransform.cpp58 : mMatrix(other.mMatrix), mType(other.mType) {
80 if (CC_LIKELY(mType == IDENTITY))
84 if (rhs.mType == IDENTITY)
87 // TODO: we could use mType to optimize the matrix multiply
99 r.mType |= rhs.mType;
102 r.mType &= 0xFF;
103 r.mType |= UNKNOWN_TYPE;
124 mType
[all...]
/frameworks/base/core/java/android/hardware/
H A DSensor.java85 private int mType; field in class:Sensor
113 return mType;
/frameworks/base/core/java/android/os/
H A DPatternMatcher.java49 private final int mType; field in class:PatternMatcher
53 mType = type;
61 return mType;
65 return matchPattern(mPattern, str, mType);
70 switch (mType) {
90 dest.writeInt(mType);
95 mType = src.readInt();
/frameworks/base/media/libdrm/mobile2/src/dcf/
H A DDrmDcfCommon.cpp41 mType = *((uint32_t *)p);
42 p += sizeof(mType);
50 if (DCF_USER_TYPE == mType)
63 mType = other.mType;
117 return mType;
/frameworks/base/media/libdrm/mobile2/include/rights/
H A DOperationPermission.h68 OPERATION mType; member in class:OperationPermission
/frameworks/base/graphics/java/android/renderscript/
H A DAllocation.java34 Type mType; field in class:Allocation
40 mType = t;
44 return mType;
64 subData1D(0, mType.getElementCount(), d);
68 subData1D(0, mType.getElementCount(), d);
72 subData1D(0, mType.getElementCount(), d);
76 subData1D(0, mType.getElementCount(), d);
81 if((off < 0) || (count < 1) || ((off + count) > mType.getElementCount())) {
90 int dataSize = mType.mElement.getSizeBytes() * count;
95 int dataSize = mType
[all...]
/frameworks/base/media/libstagefright/
H A DMetaData.cpp181 : mType(0),
190 : mType(from.mType),
200 mType = from.mType;
211 mType = 0;
218 mType = type;
225 *type = mType;
/frameworks/base/core/java/android/webkit/
H A DFileLoader.java39 private int mType; // Indicates the type of the load field in class:FileLoader
64 mType = type;
69 if (mType == TYPE_ASSET) {
74 } else if (mType == TYPE_RES) {
99 if (mType == TYPE_ASSET) {
106 } else if (mType == TYPE_RES) {
/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/core/java/com/android/internal/view/
H A DBaseSurfaceHolder.java47 int mType = -1; field in class:BaseSurfaceHolder
136 if (mType == SURFACE_TYPE_PUSH_BUFFERS) {
/frameworks/base/media/libdrm/mobile2/include/dcf/
H A DDrmDcfCommon.h96 uint32_t mType; member in class:Box
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java112 public int mType; field in class:ConnectivityService.NetworkAttributes
119 mType = Integer.parseInt(fragments[1]);
125 return (mType == mRadio);
133 public int mType; field in class:ConnectivityService.RadioAttributes
136 mType = Integer.parseInt(fragments[0]);
211 if (r.mType > ConnectivityManager.MAX_RADIO_TYPE) {
212 Slog.e(TAG, "Error in radioAttributes - ignoring attempt to define type " + r.mType);
215 if (mRadioAttributes[r.mType] != null) {
217 r.mType);
220 mRadioAttributes[r.mType]
[all...]
/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/services/jni/
H A Dcom_android_server_KeyInputQueue.cpp41 jfieldID mType; member in struct:android::input_offsets_t
76 env->SetIntField(event, gInputOffsets.mType, (jint)type);
330 gInputOffsets.mType
332 LOG_FATAL_IF(gInputOffsets.mType == NULL, "Unable to find RawInputEvent.type");

Completed in 3034 milliseconds

12