Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp576 QualType baseType = Context.getBaseType(); in ProcessCodeCompleteResults() local
579 if (!baseType.isNull()) { in ProcessCodeCompleteResults()
581 if (const TagType *Tag = baseType->getAs<TagType>()) in ProcessCodeCompleteResults()
586 baseType->getAs<ObjCObjectPointerType>()) in ProcessCodeCompleteResults()
589 else if (const ObjCObjectType *Obj = baseType->getAs<ObjCObjectType>()) in ProcessCodeCompleteResults()
593 baseType->getAs<InjectedClassNameType>()) in ProcessCodeCompleteResults()
606 const Type *type = baseType.getTypePtrOrNull(); in ProcessCodeCompleteResults()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGExprConstant.cpp1303 llvm::Type *baseType,
1333 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local
1334 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant()
1366 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local
1367 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant()
1382 llvm::Type *baseType, in EmitNullConstantForBase() argument
1388 return llvm::Constant::getNullValue(baseType); in EmitNullConstantForBase()
H A DCodeGenFunction.cpp1201 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType, in emitNonZeroVLAInit() argument
1205 = CGF.getContext().getTypeInfoInChars(baseType); in emitNonZeroVLAInit()
1355 QualType &baseType, in emitArrayLength() argument
1373 baseType = elementType; in emitArrayLength()
1432 baseType = eltType; in emitArrayLength()
H A DCodeGenFunction.h1620 QualType &baseType,
/minix3/minix/llvm/passes/include/magic/
H A DMagicPass.h90 …FunctionType* getFunctionType(TYPECONST FunctionType *baseType, std::vector<unsigned> selectedArgs…
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaExprMember.cpp278 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK, in CheckExtVectorComponent() argument
286 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); in CheckExtVectorComponent()
345 << baseType << SourceRange(CompLoc); in CheckExtVectorComponent()
H A DSemaDecl.cpp9517 QualType baseType = Context.getBaseElementType(type); in CheckCompleteVariableDeclaration() local
9527 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl(); in CheckCompleteVariableDeclaration()
9529 !Init->isConstantInitializer(Context, baseType->isReferenceType())) in CheckCompleteVariableDeclaration()
9559 if (const RecordType *recordType = baseType->getAs<RecordType>()) in CheckCompleteVariableDeclaration()
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DType.h1046 ExtQualsTypeCommonBase(const Type *baseType, QualType canon)
1047 : BaseType(baseType), CanonicalType(canon) {}
1095 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals)
1096 : ExtQualsTypeCommonBase(baseType,
/minix3/minix/llvm/passes/magic/
H A DMagicPass.cpp2492 FunctionType* MagicPass::getFunctionType(TYPECONST FunctionType *baseType, std::vector<unsigned> se… in getFunctionType() argument
2495 ArgTypes.push_back(baseType->getParamType(selectedArgs[i] - 1)); in getFunctionType()
2498 FunctionType *FTy = FunctionType::get(baseType->getReturnType(), ArgTypes, baseType->isVarArg()); in getFunctionType()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DASTContext.cpp2005 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const { in getExtQualType() argument
2011 ExtQuals::Profile(ID, baseType, quals); in getExtQualType()
2020 if (!baseType->isCanonicalUnqualified()) { in getExtQualType()
2021 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split(); in getExtQualType()
2029 ExtQuals *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals); in getExtQualType()