HomeSort by relevance Sort by last modified time
    Searched refs:ExtInfo (Results 1 - 25 of 31) 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 178 const FunctionType::ExtInfo &Info,
196 FunctionType::ExtInfo info,
216 FunctionType::ExtInfo info,
CGCall.h 199 const FunctionType::ExtInfo &extInfo,
245 FunctionType::ExtInfo getExtInfo() const {
246 return FunctionType::ExtInfo(isNoReturn(),
269 const FunctionType::ExtInfo &info,
CGCall.cpp 84 /// given ExtInfo instead of the ExtInfo from the function type.
88 FunctionType::ExtInfo extInfo) {
94 return CGT.arrangeLLVMFunctionInfo(resultType, prefix, extInfo, required);
108 FunctionType::ExtInfo &extInfo,
110 if (extInfo.getCC() == CC_Default) {
112 extInfo = extInfo.withCallingConv(CC)
    [all...]
CGObjCRuntime.cpp 359 FunctionType::ExtInfo einfo = signature.getExtInfo();
370 FunctionType::ExtInfo(),
CGObjC.cpp 511 FunctionType::ExtInfo(),
778 FunctionType::ExtInfo(),
    [all...]
CGDeclCXX.cpp 402 FunctionType::ExtInfo(),
CGBlocks.cpp     [all...]
CGObjCMac.cpp 245 FunctionType::ExtInfo(),
265 FunctionType::ExtInfo(),
291 FunctionType::ExtInfo(),
318 FunctionType::ExtInfo(),
337 FunctionType::ExtInfo(),
350 FunctionType::ExtInfo(),
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 617 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
618 ExtInfo.TypeQuals = 0;
622 ExtInfo);
626 FunctionProtoType::ExtProtoInfo ExtInfo;
627 ExtInfo.TypeQuals = Qualifiers::Const;
628 QualType ConvTy = S.Context.getFunctionType(FunctionPtrTy, 0, 0, ExtInfo);
688 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
689 ExtInfo.TypeQuals = 0;
694 ExtInfo);
698 FunctionProtoType::ExtProtoInfo ExtInfo;
    [all...]
SemaType.cpp     [all...]
SemaLookup.cpp 721 EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC_Default);
    [all...]
SemaExpr.cpp     [all...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
Decl.h 590 struct ExtInfo : public QualifierInfo {
594 llvm::PointerUnion<TypeSourceInfo*, ExtInfo*> DeclInfo;
600 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
601 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
602 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
    [all...]
CanonicalType.h 590 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo)
597 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo)
604 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo)
ASTContext.h 797 /// \brief Change the ExtInfo on a function type.
799 FunctionType::ExtInfo EInfo);
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
Decl.cpp     [all...]
Type.cpp     [all...]
TypePrinter.cpp 625 FunctionType::ExtInfo Info = T->getExtInfo();
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 306 DeclaratorDecl::ExtInfo *Info =
307 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
437 TagDecl::ExtInfo *Info = new (Reader.getContext()) TagDecl::ExtInfo();
490 DeclaratorDecl::ExtInfo *Info
491 = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
    [all...]
ASTReader.cpp     [all...]

Completed in 168 milliseconds

1 2