Searched refs:tag_add (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_format.py | 311 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 …]
|
D | test_search.py | 65 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!'
|
D | test_zzdummy.py | 107 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')
|
D | test_colorizer.py | 418 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")
|
D | test_editor.py | 178 text.tag_add('sel', '1.17', '1.end')
|
D | test_hyperparser.py | 69 self.text.tag_add('console', '1.0', '1.end')
|
D | test_sidebar.py | 726 text.tag_add('sel', f'{first_line}.0', 'end-1c') 750 text.tag_add('sel', f'{first_line}.3', 'end-1c')
|
D | test_codecontext.py | 338 cc.context.tag_add('sel', '1.0', '2.0')
|
/external/python/cpython3/Lib/idlelib/ |
D | parenmatch.py | 122 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)
|
D | replace.py | 244 text.tag_add("sel", first, last) 247 text.tag_add("hit", first) 249 text.tag_add("hit", first, last) 286 text.tag_add(SEL, "1.0", END)
|
D | search.py | 113 text.tag_add("sel", first, last) 152 text.tag_add('sel', '1.0', 'end')
|
D | colorizer.py | 195 self.tag_add("TODO", index1, index2) 312 self.tag_add("TODO", next) 331 self.tag_add(tag,
|
D | grep.py | 210 text.tag_add(SEL, "1.0", '1.end')
|
D | editor.py | 424 self.text.tag_add("sel", first, last) 674 self.text.tag_add("sel", "1.0", "end-1c") 803 self.text.tag_add("sel", "insert", "insert +1l") 862 text.tag_add("ERROR", pos) 865 text.tag_add("ERROR", pos + " wordstart", pos)
|
D | format.py | 262 text.tag_add("sel", head, "insert")
|
D | pyshell.py | 171 text.tag_add("BREAK", "%d.0" % lineno, "%d.0" % (lineno+1)) 338 self.tag_add("SYNC", "1.0", "iomark") 1389 self.text.tag_add("console", "iomark-1c")
|
D | sidebar.py | 195 self.text.tag_add("sel", f"{a}.0", f"{b+1}.0")
|
/external/python/cpython3/Lib/tkinter/ |
D | __init__.py | 4049 def tag_add(self, tagName, index1, *args): member in Text
|