Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/angle/src/libGLESv2/
Dangletypes.cpp74 : mType(GL_NONE), in VertexFormat()
81 : mType(type), in VertexFormat()
87 if (mType == GL_FLOAT || mType == GL_HALF_FLOAT || mType == GL_FIXED) in VertexFormat()
94 : mType(attribute.mType), in VertexFormat()
104 if (mType == GL_FLOAT || mType == GL_HALF_FLOAT || mType == GL_FIXED) in VertexFormat()
111 : mType(attribute.mType), in VertexFormat()
118 mType = currentValueType; in VertexFormat()
125 if (mType == GL_FLOAT || mType == GL_HALF_FLOAT || mType == GL_FIXED) in VertexFormat()
149 return (mType == other.mType && in operator ==()
162 if (mType != other.mType) in operator <()
[all …]
DVertexAttribute.h20 VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mPureInteger(false), in VertexAttribute()
27 switch (mType) in typeSize()
54 mType = type; in setState()
73 return static_cast<T>(mType); in querySingleParameter()
89 GLenum mType; variable
Dformatutils.cpp210 GLenum mType; member
213 : mInternalformat(internalformat), mFormat(format), mType(type) { } in FormatInfo()
542 GLenum mType; member
557 …entCount(0), mCompressedBlockWidth(0), mCompressedBlockHeight(0), mFormat(GL_NONE), mType(GL_NONE), in InternalFormatInfo()
591 formatInfo.mType = type; in RGBAFormat()
609 formatInfo.mType = type; in LUMAFormat()
629 formatInfo.mType = type; in DepthStencilFormat()
649 formatInfo.mType = type; in CompressedFormat()
967 set.insert(formatInfo.mType); in BuildES3ValidTypeSet()
1280 … framebufferInternalFormatInfo.mType, clientVersion); in IsValidCopyTexImageCombination()
[all …]
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
DEncodingOption.java56 private EncodingType mType; field in EncodingOption
61 mType = type; in EncodingOption()
67 return mType + ":" + mSymbolLength; in toString()
71 return mType; in getType()
89 if (mType == null) { in equals()
90 if (other.mType != null) { in equals()
93 } else if (!mType.equals(other.mType)) { in equals()
103 result = result * 31 + (mType != null ? mType.hashCode() : 0); in hashCode()
DPoloMessage.java67 private final PoloMessageType mType; field in PoloMessage
70 mType = type; in PoloMessage()
74 return mType; in getType()
79 return "[" + mType.toString() + "]"; in toString()
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
DSelectPopupItem.java15 private final int mType; field in SelectPopupItem
19 mType = type; in SelectPopupItem()
34 return mType == PopupItemType.ENABLED || mType == PopupItemType.GROUP; in isEnabled()
39 return mType == PopupItemType.GROUP; in isGroupHeader()
43 return mType; in getType()
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
DOmniboxSuggestion.java17 private final Type mType; field in OmniboxSuggestion
96 mType = Type.getTypeFromNativeType(nativeType); in OmniboxSuggestion()
127 return mType; in getType()
171 return mType.isUrl(); in isUrlSuggestion()
194 return mType + " relevance=" + mRelevance + " \"" + mDisplayText + "\" -> " + mUrl; in toString()
199 int hash = 37 * mType.mNativeType + mDisplayText.hashCode() + mFillIntoEdit.hashCode() + in hashCode()
220 return mType == suggestion.mType in equals()
DSuggestionAnswer.java176 private final int mType; field in SuggestionAnswer.TextField
180 mType = jsonTextField.getInt(ANSWERS_JSON_TEXT_TYPE); in TextField()
185 return mType; in getType()
/external/doclava/src/com/google/doclava/
DAnnotationInstanceInfo.java25 private ClassInfo mType; field in AnnotationInstanceInfo
31 mType = null; in AnnotationInstanceInfo()
36 mType = type; in AnnotationInstanceInfo()
41 return mType; in type()
45 mType = cl; in setClass()
64 if (mType == null) { in toString()
67 str.append(mType.qualifiedName()); in toString()
DParameterInfo.java28 mType = type; in ParameterInfo()
34 return mType; in type()
73 return mType.dimension().equals(dimension); in matchesDimension()
78 TypeInfo mType; field in ParameterInfo
DFieldInfo.java41 mType = type; in FieldInfo()
48 isVolatile(), isSynthetic(), mType, getRawCommentText(), mConstantValue, position(), in cloneForClass()
64 return mType; in type()
418 return mType.equals(other.mType) in valueEquals()
424 if (!mType.equals(fInfo.mType)) { in isConsistent()
490 TypeInfo mType; field in FieldInfo
DPageMetadata.java572 private String mType; // can be file, dir, video show, announcement, etc. field in PageMetadata.Node
585 mType = builder.mType; in Node()
589 private String mLabel, mTitleFriendly, mSummary, mLink, mGroup, mImage, mLang, mType; field in PageMetadata.Node.Builder
607 public Builder setType(String mType) {this.mType = mType; return this;} in setType() argument
622 buf.append("var " + list.get(i).mType.toUpperCase() + "_RESOURCES = ["); in renderTypeResources()
649 buf.append(" \"type\":\"" + list.get(i).mType + "\""); in renderTypes()
669 buf.append("var " + list.get(i).mType.toUpperCase() + "_BY_TAG = {"); in renderTypesByTag()
851 return mType; in getType()
855 mType = type; in setType()
DSampleCode.java579 private String mType; field in SampleCode.Node
586 mType = builder.mType; in Node()
590 private String mLabel, mLink, mGroup, mType; field in SampleCode.Node.Builder
596 public Builder setType(String mType) { this.mType = mType; return this;} in setType() argument
726 return mType; in getType()
730 mType = type; in setType()
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
DQueryImpl.h20 explicit QueryImpl(GLenum type) : mType(type), mStatus(GL_FALSE), mResult(0) { } in QueryImpl()
29 GLenum getType() const { return mType; } in getType()
38 GLenum mType; variable
DVertexBuffer.cpp174 if (attrib.mType != GL_FLOAT) in directStoragePossible()
233 if (mCache[element].type == attribute.mType && in lookupAttribute()
279 …VertexElement element = { attrib.mType, attrib.mSize, attrib.stride(), attrib.mNormalized, attrib.… in storeVertexAttributes()
/external/chromium_org/third_party/angle/src/compiler/translator/
DLoopInfo.h24 TBasicType getType() const { return mType; } in getType()
25 void setType(TBasicType type) { mType = type; } in setType()
35 TBasicType mType; // Either EbtInt or EbtFloat variable
DTypes.cpp43 ASSERT(mType && mName); in equals()
44 ASSERT(other.mType && other.mName); in equals()
45 return mType->equals(*(other.mType)) && *mName == *(other.mName); in equals()
DLoopInfo.cpp80 mType(EbtVoid), in TLoopIndexInfo()
102 mType = symbol->getBasicType(); in fillInfo()
104 if (mType == EbtInt) in fillInfo()
DTypes.h25 : mType(type), in TField()
35 return mType; in type()
39 return mType; in type()
55 TType *mType; variable
/external/chromium_org/third_party/angle/src/common/
DRefCountObject.h69 FramebufferTextureBindingPointer() : mType(GL_NONE), mMipLevel(0), mLayer(0) { } in FramebufferTextureBindingPointer()
74 mType = type; in set()
82 GLenum type() const { return mType; } in type()
87 GLenum mType;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
DBookmarksBridge.java329 private final int mType; field in BookmarksBridge.BookmarkId
333 mType = type; in BookmarkId()
392 return mType; in getType()
396 switch (mType) { in getBookmarkTypeString()
414 return (item.mId == mId && item.mType == mType); in equals()
DChromeBrowserProvider.java761 private final Type mType; field in ChromeBrowserProvider.BookmarkNode
775 mType = type; in BookmarkNode()
804 return mType; in type()
865 mType == node.mType && in equalContents()
929 dest.writeInt(mType.ordinal()); in writeNodeContents()
/external/chromium_org/third_party/codesighs/
Dmsdump2symdb.c132 char* mType; member
514 … inContainer->mReadState.mCurrentObject->mSections[sectionIndex].mType = typeDup; in processLine()
689 CLEANUP(inContainer->mObjects[objectLoop].mSections[sectionLoop].mType); in dumpCleanup()
796 inContainer->mObjects[objectLoop].mSections[sectionLoop].mType, in reportContainer()
/external/svox/pico/lib/
Dpicopr.c357 static void pr_ALLOCATE (picodata_ProcessingUnit this, pr_MemTypes mType, void * * adr, unsigned in… in pr_ALLOCATE() argument
363 if (mType == pr_WorkMem) { in pr_ALLOCATE()
386 else if (mType == pr_DynMem) { in pr_ALLOCATE()
413 static void pr_DEALLOCATE (picodata_ProcessingUnit this, pr_MemTypes mType, void * * adr) in pr_DEALLOCATE() argument
417 if (mType == pr_WorkMem) { in pr_DEALLOCATE()
420 else if (mType == pr_DynMem) { in pr_DEALLOCATE()
433 static void pr_getMemState(picodata_ProcessingUnit this, pr_MemTypes mType, picoos_uint32 *lmemStat… in pr_getMemState() argument
436 mType = mType; /* avoid warning "var not used in this function"*/ in pr_getMemState()
441 static void pr_resetMemState(picodata_ProcessingUnit this, pr_MemTypes mType, picoos_uint32 lmemSta… in pr_resetMemState() argument
448 mType = mType; /* avoid warning "var not used in this function"*/ in pr_resetMemState()
[all …]
/external/srec/srec/cfront/
Dnisthdr.h175 char mType; variable

12