HomeSort by relevance Sort by last modified time
    Searched defs:typeIsConvertibleTo (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/TableGen/
Record.cpp 98 bool RecTy::typeIsConvertibleTo(const RecTy *RHS) const {
103 bool BitRecTy::typeIsConvertibleTo(const RecTy *RHS) const{
104 if (RecTy::typeIsConvertibleTo(RHS) || RHS->getRecTyKind() == IntRecTyKind)
125 bool BitsRecTy::typeIsConvertibleTo(const RecTy *RHS) const {
126 if (RecTy::typeIsConvertibleTo(RHS)) //argument and the sender are same type
132 bool IntRecTy::typeIsConvertibleTo(const RecTy *RHS) const {
145 bool ListRecTy::typeIsConvertibleTo(const RecTy *RHS) const {
147 return Ty->typeIsConvertibleTo(ListTy->getElementType());
163 bool RecordRecTy::typeIsConvertibleTo(const RecTy *RHS) const {
179 if (T1->typeIsConvertibleTo(T2)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/TableGen/
Record.h 79 /// typeIsConvertibleTo - Return true if all values of 'this' type can be
81 virtual bool typeIsConvertibleTo(const RecTy *RHS) const = 0;
160 bool typeIsConvertibleTo(const RecTy *RHS) const {
205 bool typeIsConvertibleTo(const RecTy *RHS) const {
249 bool typeIsConvertibleTo(const RecTy *RHS) const {
292 bool typeIsConvertibleTo(const RecTy *RHS) const {
338 bool typeIsConvertibleTo(const RecTy *RHS) const {
347 return RHS->getElementType()->typeIsConvertibleTo(Ty);
381 bool typeIsConvertibleTo(const RecTy *RHS) const {
421 bool typeIsConvertibleTo(const RecTy *RHS) const
    [all...]

Completed in 527 milliseconds