Searched refs:ListRecTy (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/TableGen/
H A DRecord.cpp92 ListRecTy *RecTy::getListTy() {
94 ListTy = new ListRecTy(this);
270 std::string ListRecTy::getAsString() const {
274 Init *ListRecTy::convertValue(ListInit *LI) {
285 if (!isa<ListRecTy>(LI->getType()))
291 Init *ListRecTy::convertValue(TypedInit *TI) {
293 if (ListRecTy *LRT = dyn_cast<ListRecTy>(TI->getType()))
299 bool ListRecTy::baseClassOf(const RecTy *RHS) const{
300 if(const ListRecTy* ListT
[all...]
H A DTGParser.cpp725 return ListRecTy::get(SubType);
850 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType());
879 Type = ListRecTy::get(Itemt->getType());
883 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType());
1305 ListRecTy *GivenListTy = nullptr;
1308 ListRecTy *ListType = dyn_cast<ListRecTy>(ItemType);
1773 ListRecTy *ListTyp
[all...]
/external/llvm/include/llvm/TableGen/
H A DRecord.h36 class ListRecTy;
84 ListRecTy *ListTy;
102 ListRecTy *getListTy();
291 /// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
294 class ListRecTy : public RecTy { class in namespace:llvm
296 explicit ListRecTy(RecTy *T) : RecTy(ListRecTyKind), Ty(T) {} function in class:llvm::ListRecTy
297 friend ListRecTy *RecTy::getListTy();
304 static ListRecTy *get(RecTy *T) { return T->getListTy(); }
789 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)),
1138 cast<ListRecTy>(
[all...]

Completed in 85 milliseconds