HomeSort by relevance Sort by last modified time
    Searched refs:tabsize (Results 1 - 25 of 40) sorted by null

1 2

  /hardware/intel/bootstub/
mb.h 48 u32 tabsize; member in struct:__anon39399
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tabnanny.py 184 def indent_level(self, tabsize):
188 # il = il + (i/tabsize + 1)*tabsize * count[i]
201 for i in range(tabsize, len(count)):
202 il = il + i/tabsize * count[i]
203 return trailing + tabsize * (il + self.nt)
stringold.py 328 def expandtabs(s, tabsize=8):
329 """expandtabs(s [,tabsize]) -> string
333 column, and the tabsize (default 8).
339 c = ' '*(tabsize - len(line) % tabsize)
tokenize.py 143 tabsize = 8 variable
322 column = (column//tabsize + 1)*tabsize
UserString.py 85 def expandtabs(self, tabsize=8):
86 return self.__class__(self.data.expandtabs(tabsize))
string.py 471 def expandtabs(s, tabsize=8):
472 """expandtabs(s [,tabsize]) -> string
476 column, and the tabsize (default 8).
479 return s.expandtabs(tabsize)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tabnanny.py 184 def indent_level(self, tabsize):
188 # il = il + (i/tabsize + 1)*tabsize * count[i]
201 for i in range(tabsize, len(count)):
202 il = il + i/tabsize * count[i]
203 return trailing + tabsize * (il + self.nt)
stringold.py 328 def expandtabs(s, tabsize=8):
329 """expandtabs(s [,tabsize]) -> string
333 column, and the tabsize (default 8).
339 c = ' '*(tabsize - len(line) % tabsize)
tokenize.py 143 tabsize = 8 variable
322 column = (column//tabsize + 1)*tabsize
UserString.py 85 def expandtabs(self, tabsize=8):
86 return self.__class__(self.data.expandtabs(tabsize))
string.py 471 def expandtabs(s, tabsize=8):
472 """expandtabs(s [,tabsize]) -> string
476 column, and the tabsize (default 8).
479 return s.expandtabs(tabsize)
  /external/tinyxml/
tinyxmlparser.cpp 176 tabsize = _tabsize;
183 int tabsize; member in class:TiXmlParsingData
191 // Do nothing if the tabsize is 0.
192 if ( tabsize < 1 )
249 col = (col / tabsize + 1) * tabsize;
708 TiXmlParsingData data( p, TabSize(), location.row, location.col );
1323 int tabsize = 4; local
1325 tabsize = document->TabSize();
    [all...]
tinyxml.h 1362 int tabsize; member in class:TiXmlDocument
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 148 tabsize = 8 variable
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 148 tabsize = 8 variable
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 185 tabsize = _tabsize;
192 int tabsize; member in class:TiXmlParsingData
200 // Do nothing if the tabsize is 0.
201 if ( tabsize < 1 )
258 col = (col / tabsize + 1) * tabsize;
731 TiXmlParsingData data( p, TabSize(), location.row, location.col );
    [all...]
tinyxml.cpp 915 tabsize = 4;
922 tabsize = 4;
932 tabsize = 4;
1122 target->tabsize = tabsize;
    [all...]
tinyxml.h 1552 int tabsize; member in class:TiXmlDocument
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 185 tabsize = _tabsize;
192 int tabsize; member in class:TiXmlParsingData
200 // Do nothing if the tabsize is 0.
201 if ( tabsize < 1 )
258 col = (col / tabsize + 1) * tabsize;
731 TiXmlParsingData data( p, TabSize(), location.row, location.col );
    [all...]
tinyxml.cpp 915 tabsize = 4;
922 tabsize = 4;
932 tabsize = 4;
1122 target->tabsize = tabsize;
    [all...]
tinyxml.h 1552 int tabsize; member in class:TiXmlDocument
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_difflib.py 151 j = difflib.HtmlDiff(tabsize=2)
173 '<h2>tabsize=2</h2>',
175 '<h2>tabsize=default</h2>',
test_bigmem.py 150 tabsize = 8
153 slen, remainder = divmod(size, tabsize)
155 s = s.expandtabs(tabsize)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_difflib.py 151 j = difflib.HtmlDiff(tabsize=2)
173 '<h2>tabsize=2</h2>',
175 '<h2>tabsize=default</h2>',
  /external/libvorbis/doc/
Vorbis_I_spec.tex 37 \fvset{tabsize=4,fontsize=\scriptsize,numbers=left}

Completed in 537 milliseconds

1 2