Searched refs:tabsize (Results 1 - 19 of 19) sorted by relevance

/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DCharScanner.cpp25 , tabsize(8)
37 , tabsize(8)
49 , tabsize(8)
/macosx-10.10.1/tidy-15.15/tidy/console/
H A Dtab2space.c30 static int tabsize = TABSIZE; variable
180 in->curcol += tabsize - ((in->curcol - 1) % tabsize);
183 in->tabs = tabsize - ((in->curcol - 1) % tabsize) - 1;
297 sscanf(argv[1]+2, "%d", &tabsize);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/antlr/
H A DCharScanner.hpp362 * to the tabsize. This method needs to be explicitly called from the
368 int nc = ( ((c-1)/tabsize) + 1) * tabsize + 1; // calculate tab stop
371 /// set the tabsize. Returns the old tabsize
374 int oldsize = tabsize;
375 tabsize = size;
378 /// Return the tabsize used by the scanner
381 return tabsize;
499 int tabsize; ///< ta member in class:antlr::CharScanner
[all...]
/macosx-10.10.1/nano-12/src/
H A Dchars.c409 *col += tabsize - *col % tabsize;
444 *col += tabsize - *col % tabsize;
H A Drcfile.c74 {"tabsize", 0},
809 "tabsize") == 0) {
810 if (!parse_num(option, &tabsize) ||
811 tabsize <= 0) {
815 tabsize = -1;
H A Dnano.c779 print_opt(_("-T <#cols>"), _("--tabsize=<#cols>"),
1683 {"tabsize", 1, NULL, 'T'},
1839 if (!parse_num(optarg, &tabsize) || tabsize <= 0) {
1966 ssize_t tabsize_cpy = tabsize;
2013 tabsize = tabsize_cpy;
2118 /* If tabsize wasn't specified, set its default value. */
2119 if (tabsize == -1)
2120 tabsize = WIDTH_OF_TAB;
H A Dtext.c175 } while (new_pww % tabsize != 0);
198 * tabsize) tabs and (len % tabsize) spaces. */
248 /* Set the indentation to (cols / tabsize) tabs and (cols %
249 * tabsize) spaces. */
250 size_t num_tabs = cols / tabsize;
251 size_t num_spaces = cols % tabsize;
350 * is on, tabsize columns. */
353 do_indent(tabsize);
357 * mark is on, tabsize column
[all...]
H A Dwinio.c1928 * mb_cur_max() bytes + (tabsize - 1) bytes + 1 byte ('\0')
1930 * Since tabsize has a minimum value of 1, it can substitute for 1
1932 alloc_len = (mb_cur_max() + tabsize + 1) * MAX_BUF_SIZE;
1982 if (index + mb_cur_max() + tabsize + 1 >= alloc_len - 1) {
1983 alloc_len += (mb_cur_max() + tabsize + 1) * MAX_BUF_SIZE;
1999 while (start_col % tabsize != 0) {
H A Dproto.h80 extern ssize_t tabsize;
H A Dglobal.c115 ssize_t tabsize = -1; variable
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dexecute_cmd.c1919 static int LINES, COLS, tabsize; variable
1955 if ((to / tabsize) > (from / tabsize))
1958 from += tabsize - from % tabsize;
2040 tabsize = (t && *t) ? atoi (t) : 8;
2041 if (tabsize <= 0)
2042 tabsize = 8;
2044 tabsize = 8;
/macosx-10.10.1/tidy-15.15/tidy/src/
H A Dstreamio.c279 uint tabsize = cfg( in->doc, TidyTabSize ); local
335 in->tabs = tabsize > 0 ?
336 tabsize - ((in->curcol - 1) % tabsize) - 1
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dnanorc.vim43 syn keyword nanorcNumberOption contained fill tabsize
H A Dtf.vim36 syn keyword tfVar start_color tabsize telopt sub time_format visual contained
/macosx-10.10.1/ncurses-44/ncurses/c++/
H A Dcursesw.h863 int tabsize() const { initialize(); return TABSIZE; } function in class:NCursesWindow
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Delflink.c3197 size_t tabsize = 0;
3595 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
3597 old_tab = bfd_malloc (tabsize + entsize + hashsize);
3616 old_hash = (char *) old_tab + tabsize;
3618 memcpy (old_tab, htab->root.table.table, tabsize);
4279 old_hash = (char *) old_tab + tabsize;
4285 memcpy (htab->root.table.table, old_tab, tabsize);
3188 size_t tabsize = 0; local
/macosx-10.10.1/CPANInternal-159.1/Perl-Tidy-20121207/lib/Perl/
H A DTidy.pm562 my $tabsize =
1056 tabsize => $tabsize,
1568 $add_option->( 'default-tabsize', 'dt', '=i' );
1883 default-tabsize=8
2579 # set a default tabsize to be used in guessing the starting indentation
2582 if ( $rOpts->{'default-tabsize'} ) {
2583 if ( $rOpts->{'default-tabsize'} < 0 ) {
2585 $rOpts->{'default-tabsize'} = 0;
2587 if ( $rOpts->{'default-tabsize'} > 2
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/
H A Dantlr.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ActionElement.class ActionElement.java package antlr ...
/macosx-10.10.1/CPANInternal-159.1/Perl-Tidy-20121207/bin/
H A Dperltidy457 =item B<-dt=n>, B<--default-tabsize=n>

Completed in 281 milliseconds