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

  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGParser.cpp 854 return ListRecTy::get(SubType);
1011 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType());
1029 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType());
1048 : ListRecTy::get(Itemt->getType());
1051 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType());
1221 if (!isa<ListRecTy>(ArgType)) {
1229 if (!isa<ListRecTy>(ItemType))
    [all...]
Record.cpp 59 ListRecTy *RecTy::getListTy() {
61 ListTy = new(Allocator) ListRecTy(this);
121 std::string ListRecTy::getAsString() const {
125 bool ListRecTy::typeIsConvertibleTo(const RecTy *RHS) const {
126 if (const auto *ListTy = dyn_cast<ListRecTy>(RHS))
131 bool ListRecTy::typeIsA(const RecTy *RHS) const {
132 if (const ListRecTy *RHSl = dyn_cast<ListRecTy>(RHS))
264 if (ListRecTy *ListTy1 = dyn_cast<ListRecTy>(T1))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 43 class ListRecTy;
71 /// ListRecTy of the list that has elements of this type.
72 ListRecTy *ListTy = nullptr;
93 ListRecTy *getListTy();
179 class ListRecTy : public RecTy {
180 friend ListRecTy *RecTy::getListTy();
184 explicit ListRecTy(RecTy *T) : RecTy(ListRecTyKind), ElementTy(T) {}
191 static ListRecTy *get(RecTy *T) { return T->getListTy(); }
674 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {}
695 return cast<ListRecTy>(getType())->getElementType()
    [all...]

Completed in 66 milliseconds