HomeSort by relevance Sort by last modified time
    Searched defs:ExtInfo (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/AST/
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...]
Type.h     [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...]
  /external/clang/lib/CodeGen/
CGStmt.cpp     [all...]

Completed in 250 milliseconds