Home
last modified time | relevance | path

Searched refs:baseType (Results 1 – 7 of 7) sorted by relevance

/freebsd-9-stable/contrib/llvm/tools/clang/lib/CodeGen/
DCGExprConstant.cpp1323 llvm::Type *baseType,
1354 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local
1355 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant()
1391 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local
1392 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant()
1407 llvm::Type *baseType, in EmitNullConstantForBase() argument
1413 return llvm::Constant::getNullValue(baseType); in EmitNullConstantForBase()
1416 if (isa<llvm::StructType>(baseType)) { in EmitNullConstantForBase()
1423 llvm::ArrayType *baseArrayType = cast<llvm::ArrayType>(baseType); in EmitNullConstantForBase()
DCodeGenFunction.cpp1001 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType, in emitNonZeroVLAInit() argument
1005 = CGF.getContext().getTypeInfoInChars(baseType); in emitNonZeroVLAInit()
1155 QualType &baseType, in emitArrayLength() argument
1173 baseType = elementType; in emitArrayLength()
1232 baseType = eltType; in emitArrayLength()
DCodeGenFunction.h1506 QualType &baseType,
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaExprMember.cpp275 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK, in CheckExtVectorComponent() argument
283 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); in CheckExtVectorComponent()
342 << baseType << SourceRange(CompLoc); in CheckExtVectorComponent()
DSemaDecl.cpp8846 QualType baseType = Context.getBaseElementType(type); in CheckCompleteVariableDeclaration() local
8857 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl(); in CheckCompleteVariableDeclaration()
8859 !Init->isConstantInitializer(Context, baseType->isReferenceType())) in CheckCompleteVariableDeclaration()
8889 if (const RecordType *recordType = baseType->getAs<RecordType>()) in CheckCompleteVariableDeclaration()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DType.h1031 ExtQualsTypeCommonBase(const Type *baseType, QualType canon)
1032 : BaseType(baseType), CanonicalType(canon) {}
1080 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals)
1081 : ExtQualsTypeCommonBase(baseType,
/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DASTContext.cpp1999 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const { in getExtQualType() argument
2005 ExtQuals::Profile(ID, baseType, quals); in getExtQualType()
2014 if (!baseType->isCanonicalUnqualified()) { in getExtQualType()
2015 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split(); in getExtQualType()
2023 ExtQuals *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals); in getExtQualType()