/external/python/cpython2/Lib/idlelib/ |
PyParse.py | 114 def __init__(self, indentwidth, tabwidth): 115 self.indentwidth = indentwidth 490 extra = self.indentwidth
|
EditorWindow.py | 242 text.bind("<<change-indentwidth>>",self.change_indentwidth_event) 269 # indentwidth is not a multiple of tabwidth, 286 # indentwidth is the number of screen characters per indent level. 288 self.indentwidth = self.tabwidth [all...] |
HyperParser.py | 20 parser = PyParse.Parser(editwin.indentwidth, editwin.tabwidth)
|
PyShell.py | [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
PyParse.py | 114 def __init__(self, indentwidth, tabwidth): 115 self.indentwidth = indentwidth 490 extra = self.indentwidth
|
EditorWindow.py | 234 text.bind("<<change-indentwidth>>",self.change_indentwidth_event) 267 # indentwidth is not a multiple of tabwidth, 284 # indentwidth is the number of screen characters per indent level. 286 self.indentwidth = self.tabwidth 822 "Update the indentwidth if changed and not using tabs in this window" 825 self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces', [all...] |
HyperParser.py | 25 parser = PyParse.Parser(editwin.indentwidth, editwin.tabwidth)
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
PyParse.py | 114 def __init__(self, indentwidth, tabwidth): 115 self.indentwidth = indentwidth 490 extra = self.indentwidth
|
EditorWindow.py | 234 text.bind("<<change-indentwidth>>",self.change_indentwidth_event) 267 # indentwidth is not a multiple of tabwidth, 284 # indentwidth is the number of screen characters per indent level. 286 self.indentwidth = self.tabwidth 822 "Update the indentwidth if changed and not using tabs in this window" 825 self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces', [all...] |
HyperParser.py | 25 parser = PyParse.Parser(editwin.indentwidth, editwin.tabwidth)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 114 def __init__(self, indentwidth, tabwidth): 115 self.indentwidth = indentwidth 490 extra = self.indentwidth
|
EditorWindow.py | 234 text.bind("<<change-indentwidth>>",self.change_indentwidth_event) 267 # indentwidth is not a multiple of tabwidth, 284 # indentwidth is the number of screen characters per indent level. 286 self.indentwidth = self.tabwidth 822 "Update the indentwidth if changed and not using tabs in this window" 825 self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces', [all...] |
HyperParser.py | 25 parser = PyParse.Parser(editwin.indentwidth, editwin.tabwidth)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 114 def __init__(self, indentwidth, tabwidth): 115 self.indentwidth = indentwidth 490 extra = self.indentwidth
|
EditorWindow.py | 234 text.bind("<<change-indentwidth>>",self.change_indentwidth_event) 267 # indentwidth is not a multiple of tabwidth, 284 # indentwidth is the number of screen characters per indent level. 286 self.indentwidth = self.tabwidth 822 "Update the indentwidth if changed and not using tabs in this window" 825 self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces', [all...] |
HyperParser.py | 25 parser = PyParse.Parser(editwin.indentwidth, editwin.tabwidth)
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
test_autocomplete.py | 18 self.indentwidth = 8
|
test_parenmatch.py | 26 self.indentwidth = 8
|
test_hyperparser.py | 11 self.indentwidth = 8
|
/external/python/cpython3/Lib/idlelib/ |
editor.py | 171 text.bind("<<change-indentwidth>>",self.change_indentwidth_event) 199 # indentwidth is not a multiple of tabwidth, 217 # indentwidth is the number of screen characters per indent level. 219 self.indentwidth = self.tabwidth 752 "Update the indentwidth if changed and not using tabs in this window" 755 self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces', [all...] |
hyperparser.py | 32 parser = pyparse.Parser(editwin.indentwidth, editwin.tabwidth)
|
pyparse.py | 140 def __init__(self, indentwidth, tabwidth): 141 self.indentwidth = indentwidth 513 extra = self.indentwidth
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
test_autocomplete.py | 22 self.indentwidth = 8
|
test_parenmatch.py | 17 self.indentwidth = 8
|
test_hyperparser.py | 11 self.indentwidth = 8
|