Searched defs:ExtInfo (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
H A DDecl.h530 struct ExtInfo : public QualifierInfo { struct in class:clang::DeclaratorDecl
534 llvm::PointerUnion<TypeSourceInfo*, ExtInfo*> DeclInfo;
540 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
541 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
542 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
2574 typedef QualifierInfo ExtInfo;
2584 llvm::PointerUnion<NamedDecl *, ExtInfo *> NamedDeclOrQualifier;
2586 bool hasExtInfo() const { return NamedDeclOrQualifier.is<ExtInfo *>(); }
[all...]
H A DType.h1253 unsigned ExtInfo : 9;
2655 /// ExtInfo - A class which abstracts out some details necessary for
2675 class ExtInfo { class in class:clang::FunctionType
2692 ExtInfo(unsigned Bits) : Bits(static_cast<uint16_t>(Bits)) {} function in class:clang::FunctionType::ExtInfo
2699 ExtInfo(bool noReturn, bool hasRegParm, unsigned regParm, CallingConv cc, function in class:clang::FunctionType::ExtInfo
2710 ExtInfo() : Bits(CC_C) { } function in class:clang::FunctionType::ExtInfo
2714 ExtInfo(CallingConv CC) : Bits(CC) { } function in class:clang::FunctionType::ExtInfo
2727 bool operator==(ExtInfo Other) const {
2730 bool operator!=(ExtInfo Other) const {
2737 ExtInfo withNoRetur
2863 FunctionType::ExtInfo ExtInfo; member in struct:clang::FunctionType::ExtInfo::FunctionProtoType::ExtProtoInfo
[all...]
/external/clang/lib/CodeGen/
H A DCGStmt.cpp2122 FunctionType::ExtInfo ExtInfo; local
2124 CGM.getTypes().arrangeFreeFunctionDeclaration(Ctx.VoidTy, Args, ExtInfo,
/external/clang/lib/Sema/
H A DSemaLambda.cpp1173 InvokerExtInfo.ExtInfo = InvokerExtInfo.ExtInfo.withCallingConv(CC);
1342 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo(); local
1343 ExtInfo.TypeQuals = 0;
1345 Proto->getReturnType(), Proto->getParamTypes(), ExtInfo);
1349 FunctionProtoType::ExtProtoInfo ExtInfo(S.Context.getDefaultCallingConvention(
1351 ExtInfo.TypeQuals = Qualifiers::Const;
1352 QualType ConvTy = S.Context.getFunctionType(BlockPtrTy, None, ExtInfo);

Completed in 154 milliseconds