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

12

/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
H A DEncodingOption.java56 private EncodingType mType; field in class:EncodingOption
61 mType = type;
67 return mType + ":" + mSymbolLength;
71 return mType;
89 if (mType == null) {
90 if (other.mType != null) {
93 } else if (!mType.equals(other.mType)) {
103 result = result * 31 + (mType != null ? mType
[all...]
H A DPoloMessage.java67 private final PoloMessageType mType; field in class:PoloMessage
70 mType = type;
74 return mType;
79 return "[" + mType.toString() + "]";
/external/swiftshader/src/OpenGL/libGLESv2/
H A DQuery.cpp30 mType = type;
43 switch(mType)
53 UNREACHABLE(mType);
69 switch(mType)
94 switch(mType)
136 return mType;
148 switch(mType)
H A DQuery.h45 GLenum mType; member in class:es2::Query
H A DVertexArray.cpp73 mVertexAttributes[attributeIndex].mType = type;
H A DVertexDataManager.cpp185 switch(attrib.mType)
199 default: UNREACHABLE(attrib.mType); translated[i].type = sw::STREAMTYPE_FLOAT; break;
H A DContext.h196 VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mPureInteger(false), mStride(0), mDivisor(0), mPointer(nullptr), mArrayEnabled(false)
207 switch(mType)
221 default: UNREACHABLE(mType); return mSize * sizeof(GLfloat);
301 GLenum mType; member in class:es2::VertexAttribute
/external/swiftshader/src/OpenGL/libGL/
H A DQuery.cpp30 mType = type;
43 switch(mType)
110 return mType;
122 switch(mType)
H A DQuery.h48 GLenum mType; member in class:gl::Query
H A DVertexDataManager.cpp179 switch(attribs[i].mType)
189 default: UNREACHABLE(attribs[i].mType); translated[i].type = sw::STREAMTYPE_FLOAT; break;
H A DContext.h371 VertexAttribute() : mType(GL_FLOAT), mSize(0), mNormalized(false), mStride(0), mPointer(nullptr), mArrayEnabled(false)
381 switch(mType)
389 default: UNREACHABLE(mType); return mSize * sizeof(GLfloat);
399 GLenum mType; member in class:gl::VertexAttribute
/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DMessageHeader.java45 private final int mType; field in class:MessageHeader
54 mType = type;
65 mType = type;
86 mType = decoder.readInt(TYPE_OFFSET);
112 return mType;
185 result = prime * result + mType;
202 && mType == other.mType);
/external/doclava/src/com/google/doclava/
H A DParameterInfo.java31 mType = type;
42 mName, mTypeName, mType.getTypeWithArguments(typeArgumentMapping),
47 return mType;
102 return mType.dimension().equals(dimension);
107 TypeInfo mType; field in class:ParameterInfo
H A DAnnotationInstanceInfo.java26 private ClassInfo mType; field in class:AnnotationInstanceInfo
32 mType = null;
37 mType = type;
42 return mType;
46 mType = cl;
65 if (mType == null) {
68 str.append(mType.qualifiedName());
H A DFieldInfo.java44 mType = type;
54 isVolatile(), isSynthetic(), mType, getRawCommentText(), mConstantValue, position(),
92 return mType;
470 return mType.equals(other.mType)
476 if (!mType.equals(fInfo.mType)) {
478 + " has changed type from " + mType + " to " + fInfo.mType);
542 TypeInfo mType; field in class:FieldInfo
[all...]
H A DPageMetadata.java707 private String mType; // design, develop, distribute, youtube, blog, etc field in class:PageMetadata.Node
721 mType = builder.mType;
726 private String mLabel, mCategory, mSummary, mLink, mGroup, mImage, mLang, mType, mTimestamp; field in class:PageMetadata.Node.Builder
744 public Builder setType(String mType) {this.mType = mType; return this;} argument
760 buf.append("var " + list.get(i).mType.toUpperCase() + "_RESOURCES = [");
778 buf.append("METADATA['" + langname + "']." + list.get(i).mType + " = [");
800 if ("develop".equals(list.get(i).mType)) {
[all...]
H A DSampleCode.java591 private String mType; field in class:SampleCode.Node
598 mType = builder.mType;
602 private String mLabel, mLink, mGroup, mType; field in class:SampleCode.Node.Builder
608 public Builder setType(String mType) { this.mType = mType; return this;} argument
780 return mType;
784 mType = type;
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
H A DPollingTask.java53 public int mType; field in class:PollingTask
66 mType = type;
77 if (CapabilityPolling.ACTION_POLLING_NEW_CONTACTS == mType) {
231 return (this.mId == that.mId) && (this.mType == that.mType);
239 sb.append("\nType: " + mType);
H A DPollingsQueue.java159 if (task.mType > task0.mType) {
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
H A DTelephonyEvents.java69 private String mType; field in class:TelephonyEvents.PreciseCallStateEvent
78 mType = type;
84 return mType;
106 TelephonyConstants.PreciseCallStateContainer.TYPE, mType);
/external/swiftshader/src/OpenGL/compiler/
H A DTypes.h32 : mType(type),
42 return mType;
46 return mType;
59 TType *mType; member in class:TField
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DVertexDataManager.cpp174 switch(attribs[i].mType)
184 default: UNREACHABLE(attribs[i].mType); translated[i].type = sw::STREAMTYPE_FLOAT; break;
H A DContext.h149 VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mStride(0), mPointer(nullptr), mArrayEnabled(false)
159 switch(mType)
167 default: UNREACHABLE(mType); return mSize * sizeof(GLfloat);
177 GLenum mType; member in class:es1::VertexAttribute
H A DContext.cpp896 mState.vertexAttribute[attribNum].mType = type;
1390 case GL_POINT_SIZE_ARRAY_TYPE_OES: *params = mState.vertexAttribute[sw::PointSize].mType; break;
1394 case GL_VERTEX_ARRAY_TYPE: *params = mState.vertexAttribute[sw::Position].mType; break;
1397 case GL_NORMAL_ARRAY_TYPE: *params = mState.vertexAttribute[sw::Normal].mType; break;
1401 case GL_COLOR_ARRAY_TYPE: *params = mState.vertexAttribute[sw::Color0].mType; break;
1405 case GL_TEXTURE_COORD_ARRAY_TYPE: *params = mState.vertexAttribute[sw::TexCoord0 + mState.activeSampler].mType; break;
/external/clang/lib/Parse/
H A DParseObjc.cpp1347 tok::TokenKind mType,
1353 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
1372 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus,
1400 mType, DSRet, ReturnType,
1442 mType == tok::minus,
1469 mType == tok::minus,
1530 mType, DSRet, ReturnType,
1346 ParseObjCMethodDecl(SourceLocation mLoc, tok::TokenKind mType, tok::ObjCKeywordKind MethodImplKind, bool MethodDefinition) argument

Completed in 797 milliseconds

12