Searched refs:term (Results 226 - 250 of 389) sorted by relevance

1234567891011>>

/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dresizeterm.c42 #include <term.h>
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dlib_options.c44 #include <term.h>
H A Dlib_setup.c54 #include <term.h> /* lines, columns, cur_term */
/macosx-10.10/ncurses-44/ncurses/ncurses/trace/
H A Dlib_traceatr.c40 #include <term.h> /* acs_chars */
/macosx-10.10/ncurses-44/ncurses/ncurses/tty/
H A Dlib_vidattr.c66 #include <term.h>
/macosx-10.10/ncurses-44/ncurses/ncurses/widechar/
H A Dlib_vid_attr.c34 #include <term.h>
/macosx-10.10/ruby-106/ruby/
H A Dsprintf.c568 char term = (*p == '<') ? '>' : '}'; local
571 for (; p < end && *p != term; ) {
583 (size_t)(p - start - 2), len, start, term);
599 if (term == '}') goto format_s;
H A Dregparse.c4829 static int parse_subexp(Node** top, OnigToken* tok, int term,
4833 parse_enclose(Node** np, OnigToken* tok, int term, UChar** src, UChar* end, argument
4864 r = parse_subexp(np, tok, term, &p, end, env);
5178 r = parse_subexp(&target, tok, term, &p, end, env);
5212 r = parse_subexp(&target, tok, term, &p, end, env);
5744 parse_exp(Node** np, OnigToken* tok, int term, argument
5752 if (tok->type == (enum TokenSyms )term)
5774 r = parse_subexp(&target, tok, term, src, end, env);
6177 parse_branch(Node** top, OnigToken* tok, int term, argument
6184 r = parse_exp(&node, tok, term, sr
6220 parse_subexp(Node** top, OnigToken* tok, int term, UChar** src, UChar* end, ScanEnv* env) argument
[all...]
/macosx-10.10/screen-22/screen/
H A Dwindow.h33 char *term; /* TERM to be set instead of "screen" */ member in struct:NewWindow
H A Dsocket.c653 if (nwin->term != nwin_undef.term)
654 strncpy(m.m.create.screenterm, nwin->term, 19);
734 nwin.term = mp->m.create.screenterm;
H A Dterm.h2 * This file is automagically created from term.c -- DO NOT EDIT
9 struct term struct
/macosx-10.10/vim-55/runtime/syntax/
H A Dcterm.vim182 "hi PreConditBold term=bold ctermfg=1 cterm=bold guifg=Purple gui=bold
183 "hi Special term=bold ctermfg=6 guifg=SlateBlue gui=underline
H A Dlogtalk.vim149 syn match logtalkBuiltInMethod "\<\(goal\|term\)_expansion\ze("
245 syn match logtalkKeyword "\<write\(q\|_\(canonical\|term\)\)\?\ze("
257 " Atomic term processing
H A Ddenyhosts.vim275 hi def denyhostsBooleanTrue term=bold ctermfg=Green guifg=Green
H A Dmodula2.vim76 " hi modula2Comment term=bold ctermfg=DarkBlue guifg=Blue gui=bold
/macosx-10.10/vim-55/src/
H A DMake_w16.mak118 $(INTDIR)\term.obj\
H A Dsyntax.c26 int sg_term; /* "term=" highlighting attributes */
29 int sg_term_attr; /* Screen attr for term mode */
35 int sg_cterm_attr; /* Screen attr for color term mode */
62 #define SG_TERM 1 /* term has been set */
79 * The "term", "cterm" and "gui" arguments can be any combination of the
6453 CENT("ErrorMsg term=standout ctermbg=DarkRed ctermfg=White",
6454 "ErrorMsg term=standout ctermbg=DarkRed ctermfg=White guibg=Red guifg=White"),
6455 CENT("IncSearch term=reverse cterm=reverse",
6456 "IncSearch term=reverse cterm=reverse gui=reverse"),
6457 CENT("ModeMsg term
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v7.6/
H A Dconfigure1952 char *term;
1954 value = strtoul(string, &term, 0);
1955 if ((value != 0) || (term != (string+1))) {
2035 char *term;
2037 value = strtod(string, &term);
2038 if ((value != 69) || (term != (string+4))) {
2122 char *term;
2123 strtod(string, &term);
2124 if ((term != string) && (term[
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.0a1/
H A Dconfigure1953 char *term;
1955 value = strtoul(string, &term, 0);
1956 if ((value != 0) || (term != (string+1))) {
2036 char *term;
2038 value = strtod(string, &term);
2039 if ((value != 69) || (term != (string+4))) {
2123 char *term;
2124 strtod(string, &term);
2125 if ((term != string) && (term[
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.0a2/
H A Dconfigure2126 char *term;
2128 value = strtoul(string, &term, 0);
2129 if ((value != 0) || (term != (string+1))) {
2209 char *term;
2211 value = strtod(string, &term);
2212 if ((value != 69) || (term != (string+4))) {
2296 char *term;
2297 strtod(string, &term);
2298 if ((term != string) && (term[
[all...]
/macosx-10.10/emacs-93/emacs/lisp/
H A Dterm.el0 ;;; term.el --- general command interpreter in a window stuff
55 ;;; (defun term-send-up () (interactive) (term-send-raw-string "\eOA"))
56 ;;; (defun term-send-down () (interactive) (term-send-raw-string "\eOB"))
57 ;;; (defun term-send-right () (interactive) (term-send-raw-string "\eOC"))
58 ;;; (defun term-send-left () (interactive) (term-send-raw-string "\eOD"))
64 ;;; With this enhanced ansi-term
408 (defgroup term nil function
1297 (defun term (program) function
[all...]
/macosx-10.10/disklabel-6/
H A Dutil.c335 parseProperty(const char *term, CFStringRef *namePtr, CFTypeRef *valuePtr) { argument
339 char *value = strdup(term);
/macosx-10.10/emacs-93/emacs/etc/
H A Dcalccard.tex626 \key{commute term leftward, rightward}{j L\, j R}
628 \key{isolate selected term in equation}{j I}
629 \key{negate, invert term in context}{j N\, j \&}
630 \key{rewrite selected term}{j r}
/macosx-10.10/vim-55/runtime/doc/
H A DMakefile101 term.txt \
234 term.html \
/macosx-10.10/vim-55/src/testdir/
H A DMake_vms.mms129 -@ create/term/wait/nodetach mcr $(VIMPROG) $(GUI_OPTION) -u vms.vim --noplugin -s dotest.in $*.in

Completed in 289 milliseconds

1234567891011>>