Home
last modified time | relevance | path

Searched refs:TabWidth (Results 1 – 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/
DIIOwrite.c61 INT32 TabWidth; // Each TAB expands into this number of spaces in IIO_WriteOne() local
73 TabWidth = (INT32)This->Termio.c_cc[VTABLEN]; in IIO_WriteOne()
74 if(TabWidth > MAX_TAB_WIDTH) { in IIO_WriteOne()
75 TabWidth = MAX_TAB_WIDTH; in IIO_WriteOne()
87 if(TabWidth > 0) { in IIO_WriteOne()
90 SpaceIndex = CurColumn % TabWidth; // Number of spaces after a Tab Stop in IIO_WriteOne()
91 numW = TabWidth - SpaceIndex; // Number of spaces to the next Tab Stop in IIO_WriteOne()
/device/google/bonito/
D.clang-format9 TabWidth: 4
/device/google/crosshatch/
D.clang-format9 TabWidth: 4
/device/google/bonito-sepolicy/
D.clang-format9 TabWidth: 4
/device/generic/opengl-transport/host/libs/virglrenderer/
D.clang-format15 TabWidth: 4
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dglobals.c458 int TabWidth = 2; /* MR6 */ /* MR27 */ variable
Dmain.c212 TabWidth = atoi(t); /* MR6 */
213 if ( TabWidth < 0 || TabWidth > 8 ) { /* MR6 */
215 TabWidth=0; /* MR6 */
Dproto.h199 extern int TabWidth; /* MR6 */
Dgen.c108 if (TabWidth==0) { \
111 for (i=0; i<tabs*TabWidth; i++) fputc(' ',output); \