Home
last modified time | relevance | path

Searched defs:expandtabs (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Tools/scripts/
Dpindent.py101 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
332 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
338 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
344 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
349 def complete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
357 def delete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
365 def reformat_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
390 def complete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
404 def delete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
418 def reformat_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument
/third_party/boost/boost/python/
Dstr.hpp238 str expandtabs() const { return base::expandtabs(); } in expandtabs() function in boost::python::str
241 str expandtabs(T const& tabsize) const in expandtabs() function in boost::python::str
/third_party/python/Lib/collections/
D__init__.py1430 def expandtabs(self, tabsize=8): member in UserString