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

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
transmogrify.h 8 "B.expandtabs([tabsize]) -> copy of B\n\
11 If tabsize is not given, a tab size of 8 characters is assumed.");
20 int tabsize = 8; local
22 if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize))
30 if (tabsize > 0) {
31 j += tabsize - (j % tabsize);
67 if (tabsize > 0) {
68 i = tabsize - (j % tabsize);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
transmogrify.h 8 "B.expandtabs([tabsize]) -> copy of B\n\
11 If tabsize is not given, a tab size of 8 characters is assumed.");
20 int tabsize = 8; local
22 if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize))
30 if (tabsize > 0) {
31 Py_ssize_t incr = tabsize - (j % tabsize);
63 if (tabsize > 0) {
64 i = tabsize - (j % tabsize);
    [all...]
  /external/python/cpython2/Objects/stringlib/
transmogrify.h 8 "B.expandtabs([tabsize]) -> copy of B\n\
11 If tabsize is not given, a tab size of 8 characters is assumed.");
20 int tabsize = 8; local
22 if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize))
30 if (tabsize > 0) {
31 Py_ssize_t incr = tabsize - (j % tabsize);
63 if (tabsize > 0) {
64 i = tabsize - (j % tabsize);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
tokenizer.h 27 int tabsize; /* Tab spacing */ member in struct:tok_state
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
tokenizer.h 27 int tabsize; /* Tab spacing */ member in struct:tok_state
  /external/python/cpython2/Parser/
tokenizer.h 27 int tabsize; /* Tab spacing */ member in struct:tok_state
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
tokenize.py 144 tabsize = 8 variable
328 column = (column//tabsize + 1)*tabsize
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
tokenize.py 148 tabsize = 8 variable
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
tokenize.py 143 tabsize = 8 variable
322 column = (column//tabsize + 1)*tabsize
  /external/python/cpython2/Lib/lib2to3/pgen2/
tokenize.py 148 tabsize = 8 variable
403 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
  /external/python/cpython2/Lib/
tokenize.py 144 tabsize = 8 variable
345 column = (column//tabsize + 1)*tabsize
  /external/python/cpython3/Lib/lib2to3/pgen2/
tokenize.py 148 tabsize = 8 variable
409 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
  /external/python/cpython3/Objects/stringlib/
transmogrify.h 27 static char *kwlist[] = {"tabsize", 0};
28 int tabsize = 8; local
31 kwlist, &tabsize))
39 if (tabsize > 0) {
40 Py_ssize_t incr = tabsize - (j % tabsize);
72 if (tabsize > 0) {
73 i = tabsize - (j % tabsize);
  /external/python/cpython3/Parser/
tokenizer.h 33 int tabsize; /* Tab spacing */ member in struct:tok_state
  /hardware/intel/bootstub/
mb.h 48 u32 tabsize; member in struct:__anon47197
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
tokenize.py 148 tabsize = 8 variable
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
  /prebuilts/gdb/darwin-x86/lib/python2.7/
tokenize.py 143 tabsize = 8 variable
322 column = (column//tabsize + 1)*tabsize
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
tokenize.py 148 tabsize = 8 variable
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
  /prebuilts/gdb/linux-x86/lib/python2.7/
tokenize.py 143 tabsize = 8 variable
322 column = (column//tabsize + 1)*tabsize
  /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/darwin-x86/2.7.5/lib/python2.7/
tokenize.py 143 tabsize = 8 variable
322 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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tokenize.py 143 tabsize = 8 variable
322 column = (column//tabsize + 1)*tabsize
  /external/python/cpython3/Lib/
tokenize.py 215 tabsize = 8 variable
549 column = (column//tabsize + 1)*tabsize
  /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...]

Completed in 783 milliseconds

1 2 3