Searched defs:tabsize (Results 1 - 16 of 16) sorted by relevance

/external/dtc/libfdt/
H A Dfdt.c230 const char *_fdt_find_string(const char *strtab, int tabsize, const char *s) argument
233 const char *last = strtab + tabsize - len;
/external/python/cpython2/Objects/stringlib/
H A Dtransmogrify.h8 "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/Parser/
H A Dtokenizer.h27 int tabsize; /* Tab spacing */ member in struct:tok_state
/external/python/cpython2/Lib/lib2to3/pgen2/
H A Dtokenize.py148 tabsize = 8 variable
403 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
/external/python/cpython2/Lib/
H A Dtokenize.py144 tabsize = 8 variable
345 column = (column//tabsize + 1)*tabsize
/external/syslinux/com32/mboot/
H A Dmb_info.h123 uint32_t tabsize; member in struct:multiboot_info::__anon20949::__anon20950
/external/syslinux/gpxe/src/arch/i386/include/
H A Dmultiboot.h88 uint32_t tabsize; member in struct:multiboot_aout_symbol_table
/external/python/cpython2/Modules/
H A Dstropmodule.c582 "expandtabs(string, [tabsize]) -> string\n"
600 int tabsize = 8; local
604 if (!PyArg_ParseTuple(args, "s#|i:expandtabs", &string, &stringlen, &tabsize))
606 if (tabsize < 1) {
608 "tabsize must be at least 1");
617 Py_ssize_t incr = tabsize - (j%tabsize);
647 j = tabsize - (i%tabsize);
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp185 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;
H A Dtinyxml.h1490 set, the default of 4 is used. The tabsize is set per document. Setting
1491 the tabsize to 0 disables row/column tracking.
1504 void SetTabSize( int _tabsize ) { tabsize = _tabsize; }
1506 int TabSize() const { return tabsize; }
1552 int tabsize; member in class:TiXmlDocument
/external/tinyxml/
H A Dtinyxmlparser.cpp176 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;
1323 int tabsize = 4; local
1325 tabsize = document->TabSize();
H A Dtinyxml.h1312 set, the default of 4 is used. The tabsize is set per document. Setting
1313 the tabsize to 0 disables row/column tracking.
1326 void SetTabSize( int _tabsize ) { tabsize = _tabsize; }
1328 int TabSize() const { return tabsize; }
1362 int tabsize; member in class:TiXmlDocument
/external/python/cpython2/Objects/
H A Dstringobject.c3074 "S.expandtabs([tabsize]) -> string\n\
3077 If tabsize is not given, a tab size of 8 characters is assumed.");
3086 int tabsize = 8; local
3088 if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize))
3097 if (tabsize > 0) {
3098 incr = tabsize - (j % tabsize);
3131 if (tabsize > 0) {
3132 i = tabsize - (j % tabsize);
[all...]
H A Dunicodeobject.c6512 "S.expandtabs([tabsize]) -> unicode\n\
6515 If tabsize is not given, a tab size of 8 characters is assumed.");
6526 int tabsize = 8; local
6528 if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize))
6537 if (tabsize > 0) {
6538 incr = tabsize - (j % tabsize); /* cannot overflow */
6570 if (tabsize > 0) {
6571 i = tabsize - (j % tabsize);
[all...]
/external/guice/extensions/persist/lib/
H A Dantlr-2.7.5h3.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ActionElement.class ActionElement.java package antlr ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 616 milliseconds