HomeSort by: relevance | last modified time | path
    Searched defs:RecTy (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.cpp 78 QualType RecTy;
80 RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
82 RecTy = Context.VoidTy;
85 RecTy = Context.getAddrSpaceQualType(RecTy, MD->getMethodQualifiers().getAddressSpace());
86 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 56 class RecTy {
75 RecTy(RecTyKind K) : Kind(K) {}
76 virtual ~RecTy() = default;
86 virtual bool typeIsConvertibleTo(const RecTy *RHS) const;
90 virtual bool typeIsA(const RecTy *RHS) const;
96 inline raw_ostream &operator<<(raw_ostream &OS, const RecTy &Ty) {
102 class BitRecTy : public RecTy {
105 BitRecTy() : RecTy(BitRecTyKind) {}
108 static bool classof(const RecTy *RT) {
116 bool typeIsConvertibleTo(const RecTy *RHS) const override
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 5287 QualType RecTy = Context.getTypeDeclType(Record);
5292 /*IdentifierInfo=*/nullptr, RecTy, TInfo,
5307 if (RequireCompleteSizedType(Anon->getLocation(), RecTy,
8831 const RecordType *RecTy =
8833 const RecordDecl *OrigRecDecl = RecTy->getDecl();
8835 VisitStack.push_back(RecTy->getDecl());

Completed in 44 milliseconds