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 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...]
Type.h     [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...]
SemaDeclCXX.cpp     [all...]

Completed in 190 milliseconds