Searched defs:RecTy (Results 1 - 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/TableGen/
H A DRecord.h29 // RecTy subclasses.
69 class RecTy { class in namespace:llvm
72 RecTy() : ListTy(0) {} function in class:llvm::RecTy
73 virtual ~RecTy() {}
81 virtual bool typeIsConvertibleTo(const RecTy *RHS) const = 0;
114 public: // These methods should only be called by subclasses of RecTy.
127 inline raw_ostream &operator<<(raw_ostream &OS, const RecTy &Ty) {
135 class BitRecTy : public RecTy {
151 virtual Init *convertValue( UnOpInit *UI) { return RecTy::convertValue(UI);}
152 virtual Init *convertValue( BinOpInit *UI) { return RecTy
[all...]
/external/llvm/include/llvm/TableGen/
H A DRecord.h41 class RecTy { class in namespace:llvm
62 RecTy(RecTyKind K) : Kind(K) {} function in class:llvm::RecTy
63 virtual ~RecTy() {}
71 virtual bool typeIsConvertibleTo(const RecTy *RHS) const;
77 inline raw_ostream &operator<<(raw_ostream &OS, const RecTy &Ty) {
84 class BitRecTy : public RecTy {
86 BitRecTy() : RecTy(BitRecTyKind) {}
89 static bool classof(const RecTy *RT) {
97 bool typeIsConvertibleTo(const RecTy *RHS) const override;
102 class BitsRecTy : public RecTy {
[all...]
/external/clang/lib/CodeGen/
H A DCGCall.cpp72 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal(); local
73 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
/external/clang/lib/Sema/
H A DSemaDecl.cpp4524 QualType RecTy = Context.getTypeDeclType(Record); local
4532 RecTy,
4548 if (RequireCompleteType(Anon->getLocation(), RecTy,

Completed in 937 milliseconds