Searched refs:blank (Results 501 - 525 of 667) sorted by relevance

<<21222324252627

/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_clrbot.c55 NCURSES_CH_T blank = win->_nc_bkgd; local
68 *ptr++ = blank;
H A Dlib_delch.c53 NCURSES_CH_T blank = win->_nc_bkgd; local
63 *temp1 = blank;
H A Dlib_scroll.c53 NCURSES_CH_T blank)
95 win->_line[line].text[j] = blank;
112 win->_line[line].text[j] = blank;
49 _nc_scroll_window(WINDOW *win, int const n, NCURSES_SIZE_T const top, NCURSES_SIZE_T const bottom, NCURSES_CH_T blank) argument
H A Dlib_addstr.c131 static const NCURSES_CH_T blank = NewChar(BLANK_TEXT); local
167 line->text[x - i--] = _nc_render(win, blank);
205 line->text[x] = _nc_render(win, blank);
H A Dlib_addch.c171 NCURSES_CH_T blank = blankchar; local
176 if (waddch_literal(win, blank) == ERR)
438 NCURSES_CH_T blank = blankchar; local
439 AddAttr(blank, AttrOf(ch));
441 if (waddch_literal(win, blank) == ERR)
/macosx-10.10/ncurses-44/ncurses/ncurses/tty/
H A Dtty_update.c108 static void ClearScreen(NCURSES_CH_T blank);
211 static const NCURSES_CH_T blank = NewChar(BLANK_TEXT); local
215 * not force the result to a blank:
236 ch = CHREF(blank);
237 TR(TRACE_CHARPUT, ("forced to blank"));
715 * If the attribute change location is a blank with a "safe"
718 * non-blank in the run.
959 NCURSES_CH_T blank = blankchar; local
961 AddAttr(blank, (AttrOf(BCE_BKGD(win)) & BCE_ATTRS));
962 return blank;
976 NCURSES_CH_T blank = ClrBlank(stdscr); local
1000 ClrToEOL(NCURSES_CH_T blank, bool needclear) argument
1040 ClrToEOS(NCURSES_CH_T blank) argument
1074 NCURSES_CH_T blank = newscr->_line[total - 1].text[last - 1]; local
1245 NCURSES_CH_T blank; local
1427 ClearScreen(NCURSES_CH_T blank) argument
1602 scroll_csr_forward(int n, int top, int bot, int miny, int maxy, NCURSES_CH_T blank) argument
1659 scroll_csr_backward(int n, int top, int bot, int miny, int maxy, NCURSES_CH_T blank) argument
1717 scroll_idl(int n, int del, int ins, NCURSES_CH_T blank) argument
1769 NCURSES_CH_T blank = ClrBlank(stdscr); local
1945 static const NCURSES_CH_T blank = NewChar(BLANK_TEXT); local
[all...]
H A Dhashmap.c146 NCURSES_CH_T blank = blankchar; local
149 SetPair(blank, GetPair(stdscr->_nc_bkgd));
152 if (!(CharEq(blank, *to)))
160 * effective. 'blank' indicates whether the line 'to' would become blank.
163 cost_effective(const int from, const int to, const bool blank) argument
178 return (((blank ? update_cost_from_blank(NEWTEXT(to))
/macosx-10.10/zsh-61/zsh/Functions/Misc/
H A Dzcalc4 # Line editing and history are available. A blank line or `q' quits.
199 if [[ $line = (#b)[[:blank:]]#('[#'(\#|)(<->|)']')[[:blank:]]#(*) ]]; then
219 line="${${line##[[:blank:]]#}%%[[:blank:]]#}"
224 eval ${line##:(\\|)\![[:blank:]]#}
238 ((:|)sci[[:blank:]]#(#b)(<->)(#B))
243 ((:|)fix[[:blank:]]#(#b)(<->)(#B))
248 ((:|)eng[[:blank:]]#(#b)(<->)(#B))
257 ((:|)local([[:blank
[all...]
/macosx-10.10/ncurses-44/ncurses/form/
H A Dfty_int.c152 bool blank = FALSE; local
162 if (blank)
172 blank = TRUE;
H A Dform.priv.h202 bool blank = FALSE; \
211 if (blank) \
221 blank = TRUE; \
H A Dfty_num.c169 bool blank = FALSE; local
180 if (blank)
190 blank = TRUE;
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/apps/
H A Dnns147 set blank [blank $argv0]
149 puts stderr "$blank ident ?-host NAME|IP? ?-port PORT?"
150 puts stderr "$blank search ?-host NAME|IP? ?-port PORT? ?-continuous? ?PATTERN?"
151 puts stderr "$blank who"
162 proc ::nns::blank {s} {
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/textutil/
H A Drepeat.tcl52 proc ::textutil::repeat::blank {n} {
76 proc ::textutil::repeat::blank {n} {
85 namespace export strRepeat blank
H A Dtextutil.tcl44 namespace import -force repeat::strRepeat repeat::blank
68 namespace export strRepeat blank
/macosx-10.10/IOBDStorageFamily-14/
H A DIOBDTypes.h99 UInt8 blank:1; member in struct:BDTrackInfo
111 UInt8 blank:1; member in struct:BDTrackInfo
/macosx-10.10/CPANInternal-159.1/Perl-Tidy-20121207/examples/
H A Dbreak_long_quotes.pl160 my $blank = ' ';
164 while ( ( $quote_pos = index( $str, $blank, 1 + $quote_pos ) ) >= 0 ) {
/macosx-10.10/vim-55/runtime/indent/
H A Dchaiscript.vim20 " Find a non-blank line above the current line.
H A Dtcsh.vim24 " Find a non-blank line above the current line.
H A Dfortran.vim114 "Find the previous non-blank line
134 "Find the previous line which is not blank, not a comment,
141 " Skip comments, blank lines and continuation lines
/macosx-10.10/vim-55/runtime/syntax/
H A Dblank.vim45 let b:current_syntax = "blank"
/macosx-10.10/emacs-93/emacs/lisp/textmodes/
H A Dtext-mode.el66 In this mode, paragraphs are delimited only by blank or white lines.
79 In this mode, you do not need blank lines between paragraphs
91 In this mode, you do not need blank lines between paragraphs when the
/macosx-10.10/zsh-61/zsh/Test/
H A Dztst.zsh193 [[ $ZTST_curline = [[:blank:]]# ]] && continue
209 # Code chunks are always separated by blank lines or the
214 while [[ $ZTST_curline = [[:blank:]]# ]]; do
217 while [[ $ZTST_curline = [[:blank:]]##[^[:blank:]]* ]]; do
/macosx-10.10/OpenSSL098-52/src/crypto/des/
H A Ddes.c863 unsigned int blank=(unsigned int)'\n'-' '; local
868 if (n == blank)
899 if (w == blank) k=1;
900 if (x == blank) k=2;
901 if (y == blank) k=3;
902 if (z == blank) k=4;
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/
H A Dtkphoto.tcl24 ffidl::callout ffidl-photo-blank {Tk_PhotoHandle} void \
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DNDC.pm16 # Return elements blank separated
75 C<%x> placeholder which is replaced by the blank-separated list
105 Retrieve the content of the stack as a string of blank-separated values

Completed in 316 milliseconds

<<21222324252627