HomeSort by relevance Sort by last modified time
    Searched refs:ListRecTy (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/TableGen/
Record.cpp 92 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* ListTy = dyn_cast<ListRecTy>(RHS)
    [all...]
TGParser.cpp 719 return ListRecTy::get(SubType);
860 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType());
889 Type = ListRecTy::get(Itemt->getType());
893 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType());
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 36 class ListRecTy;
84 ListRecTy *ListTy;
102 ListRecTy *getListTy();
290 /// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
293 class ListRecTy : public RecTy {
295 explicit ListRecTy(RecTy *T) : RecTy(ListRecTyKind), Ty(T) {}
296 friend ListRecTy *RecTy::getListTy();
302 static ListRecTy *get(RecTy *T) { return T->getListTy(); }
787 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)),
    [all...]

Completed in 100 milliseconds