Searched refs:tag_add (Results 1 – 25 of 30) sorted by relevance
12
/external/python/cpython3/Lib/idlelib/idle_test/ |
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_paragraph.py | 309 text.tag_add('sel', '1.11', '1.end') 323 text.tag_add('sel', '2.0', '4.0') 352 text.tag_add('sel', '2.0', '3.0')
|
D | test_colorizer.py | 381 text.tag_add('TODO', '1.0', 'end') 409 text.tag_add("ERROR", "1.0") 410 text.tag_add("TODO", "1.0") 411 text.tag_add("hit", "1.0")
|
D | test_hyperparser.py | 69 self.text.tag_add('console', '1.0', '1.end')
|
/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 | 192 text.tag_add("sel", first, last) 195 text.tag_add("hit", first) 197 text.tag_add("hit", first, last) 232 text.tag_add(SEL, "1.0", END)
|
D | colorizer.py | 146 self.tag_add("TODO", index1, index2) 262 self.tag_add(key, 269 self.tag_add("DEFINITION", 285 self.tag_add("TODO", next)
|
D | search.py | 60 text.tag_add("sel", first, last) 92 text.tag_add('sel', '1.0', 'end')
|
D | grep.py | 191 text.tag_add(SEL, "1.0", END)
|
D | editor.py | 379 self.text.tag_add("sel", first, last) 599 self.text.tag_add("sel", "1.0", "end-1c") 727 self.text.tag_add("sel", "insert", "insert +1l") 782 text.tag_add("ERROR", pos) 785 text.tag_add("ERROR", pos + " wordstart", pos) 1542 text.tag_add("sel", head, "insert")
|
/external/python/cpython2/Lib/idlelib/ |
D | ReplaceDialog.py | 178 text.tag_add("sel", first, last) 181 text.tag_add("hit", first) 183 text.tag_add("hit", first, last) 211 text.tag_add(SEL, "1.0", END)
|
D | ColorDelegator.py | 96 self.tag_add("TODO", index1, index2) 205 self.tag_add(key, 212 self.tag_add("DEFINITION", 228 self.tag_add("TODO", next)
|
D | SearchDialog.py | 55 text.tag_add("sel", first, last) 79 text.tag_add(SEL, "1.0", END)
|
D | ParenMatch.py | 136 self.text.tag_add("paren", indices[0]) 145 self.text.tag_add("paren", indices[0], rightindex)
|
D | ScriptBinding.py | 121 text.tag_add("ERROR", pos) 124 text.tag_add("ERROR", pos + " wordstart", pos)
|
D | PyShell.py | 170 text.tag_add("BREAK", "%d.0" % lineno, "%d.0" % (lineno+1)) 341 self.tag_add("SYNC", "1.0", "iomark") 725 text.tag_add("ERROR", pos) 729 text.tag_add("ERROR", pos + " wordstart", pos) 1202 self.text.tag_add("stdin", "iomark", "end-1c")
|
D | GrepDialog.py | 146 text.tag_add(SEL, "1.0", END)
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_formatparagraph.py | 306 text.tag_add('sel', '1.11', '1.end') 320 text.tag_add('sel', '2.0', '4.0') 349 text.tag_add('sel', '2.0', '3.0')
|
D | test_hyperparser.py | 67 self.text.tag_add('console', '1.0', '1.end')
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | rmt.py | 120 t.tag_add('bold', 'insert linestart', 'promptEnd') 131 t.tag_add('bold', 'promptEnd linestart', 'promptEnd')
|
D | ManPage.py | 173 self.tag_add(prop, here, AtInsert())
|
/external/python/cpython2/Tools/scripts/ |
D | redemo.py | 144 self.stringdisplay.tag_add(tag, pfirst, plast)
|
/external/python/cpython3/Tools/demo/ |
D | redemo.py | 144 self.stringdisplay.tag_add(tag, pfirst, plast)
|
/external/python/cpython2/Tools/pynche/ |
D | TextViewer.py | 68 self.__text.tag_add(SEL, start, end)
|
/external/python/cpython3/Tools/pynche/ |
D | TextViewer.py | 68 self.__text.tag_add(SEL, start, end)
|
12