Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit/android/nav/
DCachedInput.cpp41 mType = PASSWORD; in setTypeFromElement()
43 mType = SEARCH; in setTypeFromElement()
45 mType = EMAIL; in setTypeFromElement()
47 mType = NUMBER; in setTypeFromElement()
49 mType = TELEPHONE; in setTypeFromElement()
51 mType = URL; in setTypeFromElement()
53 mType = NORMAL_TEXT_FIELD; in setTypeFromElement()
92 DUMP_NAV_LOGD("// Type mType=%d;\n", b->mType); in print()
DCachedNode.h112 bool isAnchor() const { return mType == ANCHOR_CACHEDNODETYPE; } in isAnchor()
113 bool isContentEditable() const { return mType == CONTENT_EDITABLE_CACHEDNODETYPE; } in isContentEditable()
115 bool isArea() const { return mType == AREA_CACHEDNODETYPE; } in isArea()
117 bool isFrame() const { return mType == FRAME_CACHEDNODETYPE; } in isFrame()
123 bool isPlugin() const { return mType == PLUGIN_CACHEDNODETYPE; } in isPlugin()
124 bool isSelect() const { return mType == SELECT_CACHEDNODETYPE; } in isSelect()
126 return mType >= ADDRESS_CACHEDNODETYPE && mType <= PHONE_CACHEDNODETYPE; in isSyntheticLink()
129 bool isTextInput() const { return mType == TEXT_INPUT_CACHEDNODETYPE; } in isTextInput()
177 void setType(CachedNodeType type) { mType = type; } in setType()
203 CachedNodeType mType : 4; variable
DCachedInput.h58 Type getType() const { return mType; } in getType()
97 Type mType; variable
DCachedRoot.cpp83 CommonCheck() : mType(kNo_Type), mAllOpaque(true), mIsOpaque(true) { in CommonCheck()
88 mType = type; in doRect()
95 bool isGlyph = mType == kDrawGlyph_Type; in joinGlyphs()
104 void setType(Type type) { mType = type; } in setType()
106 Type mType; member in android::CommonCheck
277 if (isTextType(mType)) in left()
285 bool opaqueBitmap = mType == kDrawBitmap_Type && mIsOpaque; in onIRect()
292 if (!isTextType(mType) && !opaqueBitmap) in onIRect()
317 mPartialType = mType; in onIRect()
436 if (!isTextType(mType)) in onIRect()
[all …]
DCachedNode.cpp245 mType = android::NORMAL_CACHEDNODETYPE; in init()
411 DUMP_NAV_LOGD("// Type mType=%s;\n", type(b->mType)); in print()
/external/doclava/src/com/google/doclava/
DAnnotationInstanceInfo.java23 private ClassInfo mType; field in AnnotationInstanceInfo
29 mType = null; in AnnotationInstanceInfo()
34 mType = type; in AnnotationInstanceInfo()
39 return mType; in type()
43 mType = cl; in setClass()
62 if (mType == null) { in toString()
65 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()
410 return mType.equals(other.mType) in valueEquals()
416 if (!mType.equals(fInfo.mType)) { in isConsistent()
478 TypeInfo mType; field in FieldInfo
/external/webkit/Source/WebCore/platform/graphics/chromium/
DFontCacheLinux.cpp115 FontDescription::GenericFamilyType mType; in createFontPlatformData() member
127 if (type == fontDescriptions[i].mType) { in createFontPlatformData()
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
DTexture.cpp50 mType = GL_UNSIGNED_BYTE; in Texture()
182 return (mType == GL_FLOAT || mType == GL_HALF_FLOAT_OES); in isFloatingPoint()
955 createSurface(width, height, internalFormat, mType, image); in copyNonRenderable()
1087 return selectFormat(getFormat(), mType); in getD3DFormat()
1224 bool typeOkay = (type == mType); in redefineTexture()
1257 mType = type; in redefineTexture()
1338 bool redefined = redefineTexture(level, internalFormat, width, height, mType); in copyImage()
1392 …ed = redefineTexture(0, mImageArray[0].format, mImageArray[0].width, mImageArray[0].height, mType); in copySubImage()
1513 D3DFORMAT format = selectFormat(mImageArray[0].format, mType); in createTexture()
1564 D3DFORMAT format = selectFormat(mImageArray[0].format, mType); in convertToRenderTarget()
[all …]
DContext.h91 …VertexAttribute() : mType(GL_FLOAT), mSize(0), mNormalized(false), mStride(0), mPointer(NULL), mAr… in VertexAttribute()
101 switch (mType) in typeSize()
119 GLenum mType; variable
DTexture.h155 GLenum mType; variable
DlibGLESv2.cpp3479 *params = (GLfloat)attribState.mType; in glGetVertexAttribfv()
3532 *params = attribState.mType; in glGetVertexAttribiv()
DContext.cpp753 mState.vertexAttribute[attribNum].mType = type; in setVertexAttribState()
/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/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
DVertexDataManager.cpp716 …VertexElement element = {attribute.mType, attribute.mSize, attribute.mNormalized, attributeOffset,… in map()
753 …if (mCache[element].type == attribute.mType && mCache[element].size == attribute.mSize && mCache[… in lookupAttribute()
767 return mAttributeTypes[typeIndex(attribute.mType)][attribute.mNormalized][attribute.mSize - 1]; in formatConverter()
/external/srec/srec/cfront/
Dnisthdr.h175 char mType; variable
/external/clang/lib/Parse/
DParseObjc.cpp837 tok::TokenKind mType, in ParseObjCMethodDecl() argument
844 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus, in ParseObjCMethodDecl()
861 Actions.CodeCompleteObjCMethodDecl(getCurScope(), mType == tok::minus, in ParseObjCMethodDecl()
888 mType, IDecl, DSRet, ReturnType, in ParseObjCMethodDecl()
931 mType == tok::minus, in ParseObjCMethodDecl()
959 mType == tok::minus, in ParseObjCMethodDecl()
1014 mType, IDecl, DSRet, ReturnType, in ParseObjCMethodDecl()
/external/clang/include/clang/Parse/
DParser.h1089 Decl *ParseObjCMethodDecl(SourceLocation mLoc, tok::TokenKind mType,