Searched refs:pretty_printers_dict (Results 1 - 1 of 1) sorted by relevance

/external/eigen/debug/gdb/
H A Dprinters.py175 pretty_printers_dict[re.compile('^Eigen::Quaternion<.*>$')] = lambda val: EigenQuaternionPrinter(val)
176 pretty_printers_dict[re.compile('^Eigen::Matrix<.*>$')] = lambda val: EigenMatrixPrinter("Matrix", val)
177 pretty_printers_dict[re.compile('^Eigen::Array<.*>$')] = lambda val: EigenMatrixPrinter("Array", val)
200 for function in pretty_printers_dict:
202 return pretty_printers_dict[function](val)
206 pretty_printers_dict = {} variable

Completed in 241 milliseconds