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 226 struct ExtInfo {
234 mutable struct ExtInfo *ExtInfo;
236 struct ExtInfo &getExtInfo() {
237 if (!ExtInfo) ExtInfo = new struct ExtInfo();
238 return *ExtInfo;
241 const struct ExtInfo &getExtInfo() const {
242 if (!ExtInfo) ExtInfo = new struct ExtInfo()
    [all...]
CodeGenTypes.h 183 const FunctionType::ExtInfo &Info,
201 FunctionType::ExtInfo info,
223 FunctionType::ExtInfo info,
CGCall.h 223 const FunctionType::ExtInfo &extInfo,
269 FunctionType::ExtInfo getExtInfo() const {
270 return FunctionType::ExtInfo(isNoReturn(),
293 const FunctionType::ExtInfo &info,
CGObjCRuntime.cpp 364 FunctionType::ExtInfo einfo = signature.getExtInfo();
375 FunctionType::ExtInfo(),
CGCall.cpp 85 /// given ExtInfo instead of the ExtInfo from the function type.
89 FunctionType::ExtInfo extInfo) {
95 return CGT.arrangeLLVMFunctionInfo(resultType, prefix, extInfo, required);
109 FunctionType::ExtInfo &extInfo,
111 if (extInfo.getCC() == CC_Default) {
113 extInfo = extInfo.withCallingConv(CC)
    [all...]
CGObjC.cpp 539 FunctionType::ExtInfo(),
806 FunctionType::ExtInfo(),
    [all...]
CGStmt.cpp     [all...]
CGBlocks.cpp     [all...]
CGDeclCXX.cpp 495 FunctionType::ExtInfo(),
CGAtomic.cpp 138 FunctionType::ExtInfo(), RequiredArgs::All);
581 FunctionType::ExtInfo(), RequiredArgs::All);
    [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 816 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
817 ExtInfo.TypeQuals = 0;
819 Proto->getArgTypes(), ExtInfo);
823 FunctionProtoType::ExtProtoInfo ExtInfo;
824 ExtInfo.TypeQuals = Qualifiers::Const;
826 S.Context.getFunctionType(FunctionPtrTy, None, ExtInfo);
    [all...]
SemaType.cpp     [all...]
SemaLookup.cpp 731 EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC_Default);
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
Decl.h 521 struct ExtInfo : public QualifierInfo {
525 llvm::PointerUnion<TypeSourceInfo*, ExtInfo*> DeclInfo;
531 bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); }
532 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); }
533 const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); }
    [all...]
CanonicalType.h 545 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo)
552 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo)
559 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo)
ASTContext.h 869 /// \brief Change the ExtInfo on a function type.
871 FunctionType::ExtInfo EInfo);
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
Decl.cpp     [all...]
Type.cpp     [all...]
TypePrinter.cpp 633 FunctionType::ExtInfo Info = T->getExtInfo();
    [all...]
ASTImporter.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 322 DeclaratorDecl::ExtInfo *Info =
323 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
459 TagDecl::ExtInfo *Info = new (Reader.getContext()) TagDecl::ExtInfo();
516 DeclaratorDecl::ExtInfo *Info
517 = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
    [all...]
ASTReader.cpp     [all...]

Completed in 286 milliseconds

1 2