Home
last modified time | relevance | path

Searched refs:font_attr (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/python/debug/cli/
Dprofile_analyzer_cli.py131 return RL(text, font_attr=menu_item)
550 row += RL(column_name, font_attr=[head_menu_item, "bold"])
667 font_attr=self._LINE_COST_ATTR)
668 head += RL(self._LINENO_HEAD, font_attr=self._LINE_NUM_ATTR)
676 font_attr=self._LINE_COST_ATTR)
677 sub_head += RL(self._SOURCE_HEAD, font_attr="bold")
694 font_attr=self._LINE_COST_ATTR)
713 font_attr=[self._LINE_COST_ATTR, menu_item])
758 output = RL("[", font_attr=self._LINE_COST_ATTR)
760 font_attr=["bold", self._LINE_COST_ATTR])
[all …]
Dcli_shared.py198 line += debugger_cli_common.RichLine(write_path, font_attr="bold")
251 font_attr = [debugger_cli_common.MenuItem("", command), "bold"]
253 font_attr = "bold"
255 lines = [RL(indent_str) + RL(command, font_attr) + ":",
Dtensor_format.py46 font_attr=DEFAULT_TENSOR_ELEMENT_HIGHLIGHT_FONT_ATTR): argument
69 self.font_attr = font_attr
194 (start_col, end_col, highlight_options.font_attr))
197 highlight_options.font_attr)]
Ddebugger_cli_common.py63 def __init__(self, text="", font_attr=None): argument
75 if font_attr:
76 self.font_attr_segs = [(0, len(text), font_attr)]
104 for start, end, font_attr in other.font_attr_segs:
105 ret.font_attr_segs.append((old_len + start, old_len + end, font_attr))
382 def regex_find(orig_screen_output, regex, font_attr): argument
421 match_segs.append((match.start(), match.end(), font_attr))
Dcli_config.py145 line += RL(str(val), font_attr=highlight_attr)
Dcurses_ui.py1084 output, highlight_regex, font_attr=self._SEARCH_HIGHLIGHT_FONT_ATTR)