Home
last modified time | relevance | path

Searched refs:tag_names (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/idlelib/
Dsqueezer.py297 tag_names = self.text.tag_names(tk.INSERT)
299 if tag_name in tag_names:
Dcolorizer.py291 ok = "SYNC" in self.tag_names(next + "-1c")
300 if "SYNC" in self.tag_names(next + "-1c"):
Dsidebar.py465 text_tagnames = text.tag_names
Dpyshell.py1280 "console" not in self.text.tag_names("insert")
Deditor.py1230 "STRING" in self.text.tag_names(text_index)
/third_party/python/Lib/idlelib/idle_test/
Dtest_colorizer.py226 self.assertEqual(text.tag_names()[-1], 'sel')
413 for tag in text.tag_names():
423 eq(text.tag_names(index), expected_tags)
458 for tag in set(text.tag_names()) - {'sel', 'TODO', 'SYNC'}:
Dtest_configdialog.py449 for tag in hs.tag_names():
/third_party/python/Lib/tkinter/
D__init__.py3901 def tag_names(self, index=None): member in Text