/third_party/python/Tools/scripts/ |
D | pindent.py | 101 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument 105 self.tabsize = tabsize 122 self._write(line.expandtabs(self.tabsize)) 154 tabs, spaces = divmod(indent*self.indentsize, self.tabsize) 266 indent = len(indentws.expandtabs(self.tabsize)) 267 current = len(currentws.expandtabs(self.tabsize)) 280 current = len(currentws.expandtabs(self.tabsize)) 332 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument 333 pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs) 338 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): argument [all …]
|
D | untabify.py | 11 tabsize = 8 22 tabsize = int(optvalue) 25 process(filename, tabsize) 28 def process(filename, tabsize, verbose=True): argument 36 newtext = text.expandtabs(tabsize)
|
/third_party/ffmpeg/libavfilter/ |
D | af_superequalizer.c | 50 int winlen, tabsize; member 146 s->tabsize = 1 << wb; in equ_init() 148 s->ires = av_calloc(s->tabsize, sizeof(float)); in equ_init() 149 s->irest = av_calloc(s->tabsize, sizeof(float)); in equ_init() 150 s->fsamples = av_calloc(s->tabsize, sizeof(float)); in equ_init() 166 const int tabsize = s->tabsize; in make_fir() local 176 for (; i < tabsize; i++) in make_fir() 181 for (i = 0; i < tabsize; i++) in make_fir() 209 for (; i < s->tabsize; i++) in filter_frame() 216 for (i = 1; i < s->tabsize / 2; i++) { in filter_frame() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | lzwenc.c | 54 int tabsize; ///< Number of values in hash table member 154 s->tab[hash_code].code = s->tabsize; in addCode() 158 s->tabsize++; in addCode() 160 if (s->tabsize >= (1 << s->bits) + (s->mode == FF_LZW_GIF)) in addCode() 183 s->tabsize = 258; in clearTable() 249 if (s->tabsize >= s->maxcode - 1) { in ff_lzw_encode()
|
/third_party/boost/libs/spirit/example/x3/rexpr/rexpr_full/rexpr/ |
D | printer.hpp | 19 int const tabsize = 4; variable 33 tab(indent+tabsize); in operator ()() 35 boost::apply_visitor(rexpr_printer(out, indent+tabsize), entry.second); in operator ()()
|
/third_party/python/Objects/stringlib/clinic/ |
D | transmogrify.h.h | 17 stringlib_expandtabs_impl(PyObject *self, int tabsize); 27 int tabsize = 8; in stringlib_expandtabs() local 36 tabsize = _PyLong_AsInt(args[0]); in stringlib_expandtabs() 37 if (tabsize == -1 && PyErr_Occurred()) { in stringlib_expandtabs() 41 return_value = stringlib_expandtabs_impl(self, tabsize); in stringlib_expandtabs()
|
/third_party/boost/libs/spirit/example/x3/rexpr/rexpr_min/ |
D | rexpr.cpp | 81 int const tabsize = 4; variable 95 tab(indent+tabsize); in operator ()() 97 boost::apply_visitor(rexpr_printer(indent+tabsize), entry.second); in operator ()()
|
/third_party/python/Lib/ |
D | tabnanny.py | 188 def indent_level(self, tabsize): argument 205 for i in range(tabsize, len(count)): 206 il = il + i//tabsize * count[i] 207 return trailing + tabsize * (il + self.nt)
|
D | textwrap.py | 125 tabsize=8, argument 138 self.tabsize = tabsize 154 text = text.expandtabs(self.tabsize)
|
D | tokenize.py | 157 tabsize = 8 variable 489 column = (column//tabsize + 1)*tabsize
|
/third_party/python/Objects/stringlib/ |
D | transmogrify.h | 38 stringlib_expandtabs_impl(PyObject *self, int tabsize) in stringlib_expandtabs_impl() argument 51 if (tabsize > 0) { in stringlib_expandtabs_impl() 52 Py_ssize_t incr = tabsize - (j % tabsize); in stringlib_expandtabs_impl() 84 if (tabsize > 0) { in stringlib_expandtabs_impl() 85 i = tabsize - (j % tabsize); in stringlib_expandtabs_impl()
|
/third_party/boost/libs/spirit/example/qi/ |
D | mini_xml1.cpp | 73 int const tabsize = 4; variable 102 mini_xml_printer(indent+tabsize)(xml); in operator ()() 107 tab(indent+tabsize); in operator ()()
|
D | mini_xml2.cpp | 69 int const tabsize = 4; variable 98 mini_xml_printer(indent+tabsize)(xml); in operator ()() 103 tab(indent+tabsize); in operator ()()
|
D | mini_xml3.cpp | 70 int const tabsize = 4; variable 99 mini_xml_printer(indent+tabsize)(xml); in operator ()() 104 tab(indent+tabsize); in operator ()()
|
/third_party/boost/libs/spirit/repository/example/qi/ |
D | mini_xml2_sr.cpp | 76 int const tabsize = 4; variable 105 mini_xml_printer(indent+tabsize)(xml); in operator ()() 110 tab(indent+tabsize); in operator ()()
|
/third_party/python/Parser/ |
D | tokenizer.h | 45 int tabsize; /* Tab spacing */ member
|
/third_party/boost/boost/python/ |
D | str.hpp | 57 str expandtabs(object_cref tabsize) const; 241 str expandtabs(T const& tabsize) const in expandtabs() 243 return base::expandtabs(object(tabsize)); in expandtabs()
|
/third_party/boost/libs/spirit/doc/x3/tutorial/ |
D | rexpr.qbk | 105 int const tabsize = 4; 119 tab(indent+tabsize); 121 boost::apply_visitor(rexpr_printer(indent+tabsize), entry.second);
|
/third_party/python/Objects/clinic/ |
D | unicodeobject.c.h | 203 unicode_expandtabs_impl(PyObject *self, int tabsize); 213 int tabsize = 8; in unicode_expandtabs() local 222 tabsize = _PyLong_AsInt(args[0]); in unicode_expandtabs() 223 if (tabsize == -1 && PyErr_Occurred()) { in unicode_expandtabs() 227 return_value = unicode_expandtabs_impl(self, tabsize); in unicode_expandtabs()
|
/third_party/python/Lib/lib2to3/pgen2/ |
D | tokenize.py | 136 tabsize = 8 variable 396 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
|
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/ |
D | tinyxmlparser.cpp | 185 tabsize = _tabsize; in TiXmlParsingData() 192 int tabsize; member in TiXmlParsingData 201 if ( tabsize < 1 ) in Stamp() 258 col = (col / tabsize + 1) * tabsize; in Stamp()
|
D | tinyxml.cpp | 915 tabsize = 4; in TiXmlDocument() 922 tabsize = 4; in TiXmlDocument() 932 tabsize = 4; in TiXmlDocument() 1122 target->tabsize = tabsize; in CopyTo()
|
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/ |
D | tinyxmlparser.cpp | 185 tabsize = _tabsize; in TiXmlParsingData() 192 int tabsize; member in TiXmlParsingData 201 if ( tabsize < 1 ) in Stamp() 258 col = (col / tabsize + 1) * tabsize; in Stamp()
|
/third_party/python/Doc/library/ |
D | textwrap.rst | 24 break_on_hyphens=True, tabsize=8, max_lines=None) 41 break_on_hyphens=True, tabsize=8, \ 74 function, so changing the value of :attr:`.tabsize`, :attr:`.expand_tabs`, 178 .. attribute:: tabsize
|
/third_party/ltp/scripts/ |
D | checkpatch.pl | 73 my $tabsize = 8; 112 --tab-size=n set the number of spaces for tab (default $tabsize) 309 'tab-size=i' => \$tabsize, 368 die "$P: Invalid TAB size: $tabsize\n" if ($tabsize < 2); 1466 for (; ($n % $tabsize) != 0; $n++) { 2496 my $source_indent = $tabsize; 3755 s/(^\+.*) {$tabsize,$tabsize}\t/$1\t\t/) {} 3791 if ($indent % $tabsize) { 3795 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/$tabsize)@e; 3813 "\t" x ($pos / $tabsize) . [all …]
|