OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ListRecTy
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/TableGen/
Record.h
30
class
ListRecTy
;
55
std::unique_ptr<
ListRecTy
> ListTy;
72
ListRecTy
*getListTy();
152
///
ListRecTy
- 'list<Ty>' - Represent a list of values, all of which must be of
155
class
ListRecTy
: public RecTy {
157
explicit
ListRecTy
(RecTy *T) : RecTy(ListRecTyKind), Ty(T) {}
158
friend
ListRecTy
*RecTy::getListTy();
165
static
ListRecTy
*get(RecTy *T) { return T->getListTy(); }
592
: TypedInit(IK_ListInit,
ListRecTy
::get(EltTy)),
922
cast<
ListRecTy
>(T->getType())->getElementType())
[
all
...]
/external/llvm/lib/TableGen/
Record.cpp
91
ListRecTy
*RecTy::getListTy() {
93
ListTy.reset(new
ListRecTy
(this));
140
std::string
ListRecTy
::getAsString() const {
144
bool
ListRecTy
::typeIsConvertibleTo(const RecTy *RHS) const {
145
if (const auto *ListTy = dyn_cast<
ListRecTy
>(RHS))
496
RecTy *EltTy = cast<
ListRecTy
>(getType())->getElementType();
502
if (auto *LRT = dyn_cast<
ListRecTy
>(Ty)) {
513
if (isa<
ListRecTy
>(getType()))
783
Args, cast<
ListRecTy
>(LHSs->getType())->getElementType());
960
if (MHSl && isa<
ListRecTy
>(Type))
[
all
...]
TGParser.cpp
706
return
ListRecTy
::get(SubType);
829
ListRecTy
*LType = dyn_cast<
ListRecTy
>(LHSt->getType());
855
:
ListRecTy
::get(Itemt->getType());
858
ListRecTy
*LType = dyn_cast<
ListRecTy
>(LHSt->getType());
[
all
...]
Completed in 483 milliseconds