Home | History | Annotate | Download | only in gdb

Lines Matching full:rows

55 			self.rows = val['m_storage']['m_rows']
57 self.rows = int(template_params[1])
81 def __init__ (self, rows, cols, dataPtr, rowMajor):
82 self.rows = rows
101 if self.currentRow >= self.rows:
105 if self.currentRow >= self.rows:
118 elif (self.rows == 1): #if it's a row vector
124 return self._iterator(self.rows, self.cols, self.data, self.rowMajor)
127 return "Eigen::%s<%s,%d,%d,%s> (data ptr: %s)" % (self.variety, self.innerType, self.rows, self.cols, "RowMajor" if self.rowMajor else "ColMajor", self.data)