HomeSort by relevance Sort by last modified time
    Searched refs:TABSIZE (Results 1 - 13 of 13) sorted by null

  /external/python/cpython2/Tools/scripts/
pindent.py 48 # -t tabsize : set the number of spaces a tab character is worth (default 8)
83 TABSIZE = 8
103 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
107 self.tabsize = tabsize
124 self._write(line.expandtabs(self.tabsize))
156 tabs, spaces = divmod(indent*self.indentsize, self.tabsize)
268 indent = len(indentws.expandtabs(self.tabsize))
269 current = len(currentws.expandtabs(self.tabsize))
    [all...]
  /external/python/cpython3/Tools/scripts/
pindent.py 48 # -t tabsize : set the number of spaces a tab character is worth (default 8)
81 TABSIZE = 8
101 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
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))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
pindent.py 48 # -t tabsize : set the number of spaces a tab character is worth (default 8)
81 TABSIZE = 8
99 indentsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
103 self.tabsize = tabsize
120 self._write(line.expandtabs(self.tabsize))
156 tabs, spaces = divmod(indent*self.indentsize, self.tabsize)
272 indent = len(line[:i].expandtabs(self.tabsize))
338 stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
asdl_c.py 11 TABSIZE = 8
33 exclusively on depth * TABSIZE. All following lines -- these are
38 size = MAX_COL - depth * TABSIZE
96 line = (" " * TABSIZE * depth) + line + "\n"
    [all...]
tokenizer.c 28 #define TABSIZE 8
108 tok->tabsize = TABSIZE;
    [all...]
  /external/python/cpython2/Parser/
asdl_c.py 11 TABSIZE = 8
33 exclusively on depth * TABSIZE. All following lines -- these are
38 size = MAX_COL - depth * TABSIZE
96 line = (" " * TABSIZE * depth) + line + "\n"
    [all...]
tokenizer.c 28 #define TABSIZE 8
108 tok->tabsize = TABSIZE;
    [all...]
  /external/python/cpython3/Parser/
asdl_c.py 8 TABSIZE = 4
26 exclusively on depth * TABSIZE. All following lines -- these are
31 size = MAX_COL - depth * TABSIZE
97 line = (" " * TABSIZE * depth) + line + "\n"
    [all...]
tokenizer.c 40 #define TABSIZE 8
126 tok->tabsize = TABSIZE;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
curses.h     [all...]
ncurses.h     [all...]
cursesw.h 863 int tabsize() const { initialize(); return TABSIZE; } function in class:NCursesWindow
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
tokenizer.c 28 #define TABSIZE 8
108 tok->tabsize = TABSIZE;
    [all...]

Completed in 395 milliseconds