Home
last modified time | relevance | path

Searched refs:tag_add (Results 1 – 20 of 20) sorted by relevance

/third_party/python/Lib/idlelib/idle_test/
Dtest_format.py311 text.tag_add('sel', '1.11', '1.end')
325 text.tag_add('sel', '2.0', '4.0')
354 text.tag_add('sel', '2.0', '3.0')
442 text.tag_add('sel', '7.0', '10.0')
463 text.tag_add('sel', '6.0', '11.0')
493 text.tag_add('sel', '7.0', '10.0')
503 text.tag_add('sel', '7.0', '10.0')
513 text.tag_add('sel', '7.0', '10.0')
523 text.tag_add('sel', '7.0', '10.0')
530 text.tag_add('sel', '3.0', '4.0')
[all …]
Dtest_search.py65 text.tag_add('sel', '1.0', '1.4') # Select 'Hello'
69 text.tag_add('sel', '1.6', '1.11') # Select 'World!'
73 text.tag_add('sel', '1.0', '1.11') # Select 'Hello World!'
Dtest_zzdummy.py107 text.tag_add('sel', '2.0', '4.end')
123 text.tag_add('sel', '2.0', '5.end')
130 text.tag_add('sel', '3.0', '4.end')
144 text.tag_add('sel', '1.0', 'end-1c')
Dtest_colorizer.py418 text.tag_add('TODO', '1.0', 'end')
453 text.tag_add('TODO', '1.0', 'end-1c')
608 text.tag_add("ERROR", "1.0")
609 text.tag_add("TODO", "1.0")
610 text.tag_add("hit", "1.0")
Dtest_editor.py179 text.tag_add('sel', '1.17', '1.end')
Dtest_hyperparser.py69 self.text.tag_add('console', '1.0', '1.end')
Dtest_sidebar.py722 text.tag_add('sel', f'{first_line}.0', 'end-1c')
746 text.tag_add('sel', f'{first_line}.3', 'end-1c')
Dtest_codecontext.py338 cc.context.tag_add('sel', '1.0', '2.0')
/third_party/python/Lib/idlelib/
Dparenmatch.py122 self.text.tag_add("paren", indices[0])
131 self.text.tag_add("paren", indices[0], indices[0]+"+1c", rightindex+"-1c", rightindex)
140 self.text.tag_add("paren", indices[0], rightindex)
Dreplace.py256 text.tag_add("sel", first, last)
259 text.tag_add("hit", first)
261 text.tag_add("hit", first, last)
298 text.tag_add(SEL, "1.0", END)
Dsearch.py113 text.tag_add("sel", first, last)
152 text.tag_add('sel', '1.0', 'end')
Dcolorizer.py195 self.tag_add("TODO", index1, index2)
312 self.tag_add("TODO", next)
331 self.tag_add(tag,
Dgrep.py209 text.tag_add(SEL, "1.0", END)
Deditor.py411 self.text.tag_add("sel", first, last)
624 self.text.tag_add("sel", "1.0", "end-1c")
753 self.text.tag_add("sel", "insert", "insert +1l")
812 text.tag_add("ERROR", pos)
815 text.tag_add("ERROR", pos + " wordstart", pos)
Dformat.py262 text.tag_add("sel", head, "insert")
Dpyshell.py186 text.tag_add("BREAK", "%d.0" % lineno, "%d.0" % (lineno+1))
353 self.tag_add("SYNC", "1.0", "iomark")
1402 self.text.tag_add("console", "iomark-1c")
Dsidebar.py196 self.text.tag_add("sel", f"{a}.0", f"{b+1}.0")
/third_party/python/Tools/pynche/
DTextViewer.py68 self.__text.tag_add(SEL, start, end)
/third_party/python/Tools/demo/
Dredemo.py143 self.stringdisplay.tag_add(tag, pfirst, plast)
/third_party/python/Lib/tkinter/
D__init__.py3856 def tag_add(self, tagName, index1, *args): member in Text