HomeSort by relevance Sort by last modified time
    Searched refs:font_attr (Results 1 - 6 of 6) sorted by null

  /external/tensorflow/tensorflow/python/debug/cli/
cli_shared.py 198 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) + ":",
tensor_format.py 46 font_attr=DEFAULT_TENSOR_ELEMENT_HIGHLIGHT_FONT_ATTR):
62 font_attr: (str) Font attribute to be applied to the
69 self.font_attr = font_attr
194 (start_col, end_col, highlight_options.font_attr))
197 highlight_options.font_attr)]
profile_analyzer_cli.py 131 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...]
debugger_cli_common.py 61 def __init__(self, text="", font_attr=None):
66 font_attr: If specified, a single font attribute to be applied to the
70 # TODO(ebreck) Make .text and .font_attr protected members when we no
73 if font_attr:
74 self.font_attr_segs = [(0, len(text), font_attr)]
102 for start, end, font_attr in other.font_attr_segs:
103 ret.font_attr_segs.append((old_len + start, old_len + end, font_attr))
361 def regex_find(orig_screen_output, regex, font_attr):
375 font_attr: Font attribute used for highlighting the found result.
400 match_segs.append((match.start(), match.end(), font_attr))
    [all...]
cli_config.py 145 line += RL(str(val), font_attr=highlight_attr)
curses_ui.py     [all...]

Completed in 445 milliseconds