OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typeIsConvertibleTo
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/TableGen/
Record.cpp
97
bool RecTy::
typeIsConvertibleTo
(const RecTy *RHS) const {
102
bool BitRecTy::
typeIsConvertibleTo
(const RecTy *RHS) const{
103
if (RecTy::
typeIsConvertibleTo
(RHS) || RHS->getRecTyKind() == IntRecTyKind)
124
bool BitsRecTy::
typeIsConvertibleTo
(const RecTy *RHS) const {
125
if (RecTy::
typeIsConvertibleTo
(RHS)) //argument and the sender are same type
131
bool IntRecTy::
typeIsConvertibleTo
(const RecTy *RHS) const {
144
bool ListRecTy::
typeIsConvertibleTo
(const RecTy *RHS) const {
146
return Ty->
typeIsConvertibleTo
(ListTy->getElementType());
162
bool RecordRecTy::
typeIsConvertibleTo
(const RecTy *RHS) const {
181
if (T1->
typeIsConvertibleTo
(T2)
[
all
...]
TGParser.cpp
[
all
...]
/external/llvm/include/llvm/TableGen/
Record.h
67
///
typeIsConvertibleTo
- Return true if all values of 'this' type can be
69
virtual bool
typeIsConvertibleTo
(const RecTy *RHS) const;
95
bool
typeIsConvertibleTo
(const RecTy *RHS) const override;
115
bool
typeIsConvertibleTo
(const RecTy *RHS) const override;
133
bool
typeIsConvertibleTo
(const RecTy *RHS) const override;
170
bool
typeIsConvertibleTo
(const RecTy *RHS) const override;
208
bool
typeIsConvertibleTo
(const RecTy *RHS) const override;
[
all
...]
Completed in 937 milliseconds