HomeSort by relevance Sort by last modified time
    Searched refs:ExtInfo (Results 1 - 25 of 30) sorted by null

1 2

  /external/clang/lib/CodeGen/
CGCleanup.h 224 struct ExtInfo {
232 mutable struct ExtInfo *ExtInfo;
234 struct ExtInfo &getExtInfo() {
235 if (!ExtInfo) ExtInfo = new struct ExtInfo();
236 return *ExtInfo;
239 const struct ExtInfo &getExtInfo() const {
240 if (!ExtInfo) ExtInfo = new struct ExtInfo()
    [all...]
CodeGenTypes.h 180 const FunctionType::ExtInfo &Info,
198 FunctionType::ExtInfo info,
220 FunctionType::ExtInfo info,
CGCall.h 196 const FunctionType::ExtInfo &extInfo,
242 FunctionType::ExtInfo getExtInfo() const {
243 return FunctionType::ExtInfo(isNoReturn(),
266 const FunctionType::ExtInfo &info,
CGCall.cpp 87 /// given ExtInfo instead of the ExtInfo from the function type.
91 FunctionType::ExtInfo extInfo) {
97 return CGT.arrangeLLVMFunctionInfo(resultType, prefix, extInfo, required);
111 FunctionType::ExtInfo &extInfo,
113 if (extInfo.getCC() == CC_Default) {
115 extInfo = extInfo.withCallingConv(CC)
    [all...]
CGObjCRuntime.cpp 364 FunctionType::ExtInfo einfo = signature.getExtInfo();
375 FunctionType::ExtInfo(),
CGObjC.cpp 511 FunctionType::ExtInfo(),
778 FunctionType::ExtInfo(),
    [all...]
CGDeclCXX.cpp 446 FunctionType::ExtInfo(),
CGAtomic.cpp 137 FunctionType::ExtInfo(), RequiredArgs::All);
503 FunctionType::ExtInfo(), RequiredArgs::All);
    [all...]
CGBlocks.cpp     [all...]
CGObjCMac.cpp 246 FunctionType::ExtInfo(),
266 FunctionType::ExtInfo(),
292 FunctionType::ExtInfo(),
319 FunctionType::ExtInfo(),
338 FunctionType::ExtInfo(),
351 FunctionType::ExtInfo(),
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 699 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
700 ExtInfo.TypeQuals = 0;
705 ExtInfo);
709 FunctionProtoType::ExtProtoInfo ExtInfo;
710 ExtInfo.TypeQuals = Qualifiers::Const;
712 S.Context.getFunctionType(FunctionPtrTy, ArrayRef<QualType>(), ExtInfo);
772 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
773 ExtInfo.TypeQuals = 0;
778 ExtInfo);
782 FunctionProtoType::ExtProtoInfo ExtInfo;
    [all...]
SemaType.cpp     [all...]
SemaLookup.cpp 720 EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC_Default);
    [all...]
SemaExpr.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
Decl.h 504 struct ExtInfo : public QualifierInfo {
508 llvm::PointerUnion<TypeSourceInfo*, ExtInfo*> DeclInfo;
514 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
515 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
516 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
    [all...]
CanonicalType.h 548 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo)
555 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo)
562 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo)
ASTContext.h 866 /// \brief Change the ExtInfo on a function type.
868 FunctionType::ExtInfo EInfo);
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
Decl.cpp     [all...]
Type.cpp     [all...]
TypePrinter.cpp 623 FunctionType::ExtInfo Info = T->getExtInfo();
    [all...]
ASTImporter.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 304 DeclaratorDecl::ExtInfo *Info =
305 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
436 TagDecl::ExtInfo *Info = new (Reader.getContext()) TagDecl::ExtInfo();
490 DeclaratorDecl::ExtInfo *Info
491 = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
    [all...]
ASTReader.cpp     [all...]

Completed in 551 milliseconds

1 2