Home
last modified time | relevance | path

Searched refs:mType (Results 1 – 25 of 29) sorted by relevance

12

/external/swiftshader/src/OpenGL/libGLESv2/
DQuery.cpp30 mType = type; in Query()
43 switch(mType) in begin()
53 UNREACHABLE(mType); in begin()
69 switch(mType) in begin()
94 switch(mType) in end()
136 return mType; in getType()
148 switch(mType) in testQuery()
DQuery.h45 GLenum mType; variable
DVertexDataManager.cpp185 switch(attrib.mType) in prepareVertexData()
199 default: UNREACHABLE(attrib.mType); translated[i].type = sw::STREAMTYPE_FLOAT; break; in prepareVertexData()
DVertexArray.cpp73 mVertexAttributes[attributeIndex].mType = type; in setAttributeState()
DContext.h196 …VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mPureInteger(false), mStride(0)… in VertexAttribute()
207 switch(mType) in typeSize()
221 default: UNREACHABLE(mType); return mSize * sizeof(GLfloat); in typeSize()
301 GLenum mType; variable
DlibGLESv3.cpp1880 *params = attribState.mType; in GetVertexAttribIiv()
1936 *params = attribState.mType; in GetVertexAttribIuiv()
/external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
DMessageHeader.java45 private final int mType; field in MessageHeader
54 mType = type; in MessageHeader()
65 mType = type; in MessageHeader()
86 mType = decoder.readInt(TYPE_OFFSET); in MessageHeader()
112 return mType; in getType()
185 result = prime * result + mType; in hashCode()
202 && mType == other.mType); in equals()
/external/doclava/src/com/google/doclava/
DAnnotationInstanceInfo.java26 private ClassInfo mType; field in AnnotationInstanceInfo
32 mType = null; in AnnotationInstanceInfo()
37 mType = type; in AnnotationInstanceInfo()
42 return mType; in type()
46 mType = cl; in setClass()
65 if (mType == null) { in toString()
68 str.append(mType.qualifiedName()); in toString()
DParameterInfo.java31 mType = type; in ParameterInfo()
42 mName, mTypeName, mType.getTypeWithArguments(typeArgumentMapping), in cloneWithTypeArguments()
47 return mType; in type()
102 return mType.dimension().equals(dimension); in matchesDimension()
107 TypeInfo mType; field in ParameterInfo
DFieldInfo.java44 mType = type; in FieldInfo()
54 isVolatile(), isSynthetic(), mType, getRawCommentText(), mConstantValue, position(), in cloneForClass()
92 return mType; in type()
470 return mType.equals(other.mType) in valueEquals()
476 if (!mType.equals(fInfo.mType)) { in isConsistent()
478 + " has changed type from " + mType + " to " + fInfo.mType); in isConsistent()
542 TypeInfo mType; field in FieldInfo
DPageMetadata.java707 private String mType; // design, develop, distribute, youtube, blog, etc field in PageMetadata.Node
721 mType = builder.mType; in Node()
726 private String mLabel, mCategory, mSummary, mLink, mGroup, mImage, mLang, mType, mTimestamp; field in PageMetadata.Node.Builder
744 public Builder setType(String mType) {this.mType = mType; return this;} in setType() argument
760 buf.append("var " + list.get(i).mType.toUpperCase() + "_RESOURCES = ["); in renderTypeResources()
778 buf.append("METADATA['" + langname + "']." + list.get(i).mType + " = ["); in renderLangResources()
800 if ("develop".equals(list.get(i).mType)) { in renderSamplesResources()
839 if ((list.get(i).mType != null) && (list.get(i).mType != "")) { in renderTypes()
840 buf.append(" \"type\":\"" + list.get(i).mType + "\",\n"); in renderTypes()
892 if ((list.get(i).mType != null) && (list.get(i).mType != "")) { in renderTypeForSamples()
[all …]
DSampleCode.java591 private String mType; field in SampleCode.Node
598 mType = builder.mType; in Node()
602 private String mLabel, mLink, mGroup, mType; field in SampleCode.Node.Builder
608 public Builder setType(String mType) { this.mType = mType; return this;} in setType() argument
780 return mType; in getType()
784 mType = type; in setType()
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
DPollingTask.java53 public int mType; field in PollingTask
66 mType = type; in PollingTask()
77 if (CapabilityPolling.ACTION_POLLING_NEW_CONTACTS == mType) { in PollingTask()
231 return (this.mId == that.mId) && (this.mType == that.mType); in equals()
239 sb.append("\nType: " + mType); in toString()
DPollingsQueue.java159 if (task.mType > task0.mType) { in add()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
DTelephonyEvents.java75 private String mType; field in TelephonyEvents.PreciseCallStateEvent
84 mType = type; in PreciseCallStateEvent()
90 return mType; in getType()
112 TelephonyConstants.PreciseCallStateContainer.TYPE, mType); in toJSON()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPathParser.java157 private char mType; field in ShadowPathParser.PathDataNode
161 mType = type; in PathDataNode()
166 mType = n.mType; in PathDataNode()
180 addCommand(path, current, previousCommand, node[i].mType, node[i].mParams); in nodesToPath()
181 previousCommand = node[i].mType; in nodesToPath()
/external/swiftshader/src/OpenGL/compiler/
DTypes.h32 : mType(type), in TField()
42 return mType; in type()
46 return mType; in type()
59 TType *mType;
/external/swiftshader/src/OpenGL/libGLES_CM/
DVertexDataManager.cpp174 switch(attribs[i].mType) in prepareVertexData()
184 default: UNREACHABLE(attribs[i].mType); translated[i].type = sw::STREAMTYPE_FLOAT; break; in prepareVertexData()
DContext.h149 …VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mStride(0), mPointer(nullptr), … in VertexAttribute()
159 switch(mType) in typeSize()
167 default: UNREACHABLE(mType); return mSize * sizeof(GLfloat); in typeSize()
177 GLenum mType; variable
DContext.cpp896 mState.vertexAttribute[attribNum].mType = type; in setVertexAttribState()
1390 …case GL_POINT_SIZE_ARRAY_TYPE_OES: *params = mState.vertexAttribute[sw::PointSize].mType in getIntegerv()
1394 …case GL_VERTEX_ARRAY_TYPE: *params = mState.vertexAttribute[sw::Position].mType;… in getIntegerv()
1397 …case GL_NORMAL_ARRAY_TYPE: *params = mState.vertexAttribute[sw::Normal].mType; … in getIntegerv()
1401 …case GL_COLOR_ARRAY_TYPE: *params = mState.vertexAttribute[sw::Color0].mType; … in getIntegerv()
1405 … *params = mState.vertexAttribute[sw::TexCoord0 + mState.activeSampler].mType; bre… in getIntegerv()
/external/clang/lib/Parse/
DParseObjc.cpp1347 tok::TokenKind mType, in ParseObjCMethodDecl() argument
1353 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus, in ParseObjCMethodDecl()
1372 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus, in ParseObjCMethodDecl()
1400 mType, DSRet, ReturnType, in ParseObjCMethodDecl()
1442 mType == tok::minus, in ParseObjCMethodDecl()
1469 mType == tok::minus, in ParseObjCMethodDecl()
1530 mType, DSRet, ReturnType, in ParseObjCMethodDecl()
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcudnn_7_1.inc1864 …atus_t CUDNNWINAPI cudnnSetRNNMatrixMathType(cudnnRNNDescriptor_t rnnDesc, cudnnMathType_t mType) {
1868 return func_ptr(rnnDesc, mType);
1871 …tus_t CUDNNWINAPI cudnnGetRNNMatrixMathType(cudnnRNNDescriptor_t rnnDesc, cudnnMathType_t* mType) {
1875 return func_ptr(rnnDesc, mType);
Dcudnn_7_3.inc1869 cudnnSetRNNMatrixMathType(cudnnRNNDescriptor_t rnnDesc, cudnnMathType_t mType) {
1873 return func_ptr(rnnDesc, mType);
1877 cudnnGetRNNMatrixMathType(cudnnRNNDescriptor_t rnnDesc, cudnnMathType_t *mType) {
1881 return func_ptr(rnnDesc, mType);
Dcudnn_7_4.inc2002 cudnnSetRNNMatrixMathType(cudnnRNNDescriptor_t rnnDesc, cudnnMathType_t mType) {
2006 return func_ptr(rnnDesc, mType);
2010 cudnnGetRNNMatrixMathType(cudnnRNNDescriptor_t rnnDesc, cudnnMathType_t *mType) {
2014 return func_ptr(rnnDesc, mType);
/external/clang/include/clang/Parse/
DParser.h1390 Decl *ParseObjCMethodDecl(SourceLocation mLoc, tok::TokenKind mType,

12