Searched refs:term (Results 51 - 75 of 409) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/examples/term/
H A Dpara5 package require term::ansi::send
6 term::ansi::send::import vt
H A Dattributes5 package require term::ansi::send
6 term::ansi::send::import vt
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dsyncolor.vim34 SynColor Comment term=bold cterm=NONE ctermfg=Cyan ctermbg=NONE gui=NONE guifg=#80a0ff guibg=NONE
35 SynColor Constant term=underline cterm=NONE ctermfg=Magenta ctermbg=NONE gui=NONE guifg=#ffa0a0 guibg=NONE
36 SynColor Special term=bold cterm=NONE ctermfg=LightRed ctermbg=NONE gui=NONE guifg=Orange guibg=NONE
37 SynColor Identifier term=underline cterm=bold ctermfg=Cyan ctermbg=NONE gui=NONE guifg=#40ffff guibg=NONE
38 SynColor Statement term=bold cterm=NONE ctermfg=Yellow ctermbg=NONE gui=bold guifg=#ffff60 guibg=NONE
39 SynColor PreProc term=underline cterm=NONE ctermfg=LightBlue ctermbg=NONE gui=NONE guifg=#ff80ff guibg=NONE
40 SynColor Type term=underline cterm=NONE ctermfg=LightGreen ctermbg=NONE gui=bold guifg=#60ff60 guibg=NONE
41 SynColor Underlined term=underline cterm=underline ctermfg=LightBlue gui=underline guifg=#80a0ff
42 SynColor Ignore term=NONE cterm=NONE ctermfg=black ctermbg=NONE gui=NONE guifg=bg guibg=NONE
44 SynColor Comment term
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/yarr/
H A DYarrPattern.cpp466 PatternTerm& term = currentAlternative->lastTerm(); local
467 ASSERT((term.type == PatternTerm::TypeParenthesesSubpattern) || (term.type == PatternTerm::TypeParentheticalAssertion));
469 if ((term.type == PatternTerm::TypeParenthesesSubpattern) && term.capture() && (subpatternId == term.parentheses.subpatternId)) {
505 PatternTerm copyTerm(PatternTerm& term, bool filterStartsWithBOL = false) argument
507 if ((term.type != PatternTerm::TypeParenthesesSubpattern) && (term.type != PatternTerm::TypeParentheticalAssertion))
508 return PatternTerm(term);
525 PatternTerm& term = m_alternative->lastTerm(); local
574 PatternTerm& term = alternative->m_terms[i]; local
703 PatternTerm& term = terms.last(); local
745 PatternTerm& term = terms[termIndex]; local
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tk/
H A Dimage.rb284 args = opts.collect{|term|
285 if term.kind_of?(String) && term.include?(?\s)
286 term.split
288 term
348 args = opts.collect{|term|
349 if term.kind_of?(String) && term.include?(?\s)
350 term.split
352 term
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Debnf-ebx.el55 ;; exception ::= term ('-' term)?
57 ;; term ::= factor ('*' | '+' | '?')?
275 (let ((term (ebnf-ebx-exception token))
277 (or (setq token (car term)
278 term (cdr term))
280 (setq seq (cons term seq))
281 (while (setq term (ebnf-ebx-exception token)
282 token (car term)
[all...]
H A Debnf-abn.el309 (let ((term (ebnf-abn-repetition token))
311 (or (setq token (car term)
312 term (cdr term))
314 (setq seq (cons term seq))
315 (while (setq term (ebnf-abn-repetition token)
316 token (car term)
317 term (cdr term))
318 (setq seq (cons term se
[all...]
H A Debnf-bnf.el83 ;; repeat = [ integer "*" [ integer ]] term. ;; repetition
85 ;; term = factor
203 seq term)
204 (while (setq term (ebnf-exception token)
205 token (car term)
206 term (cdr term))
207 (setq seq (cons term seq)))
215 (let ((term (ebnf-repeat token)))
216 (if (not (eq (car term) 'excep
[all...]
/macosx-10.9.5/CPANInternal-140/Parse-Yapp/lib/Parse/Yapp/
H A DLalr.pm21 ACTIONS => { term => action }
34 'term' in ACTIONS is '' means default action
135 my($term,$action)=($_,$$states[$stateno]{ACTIONS}{$_});
137 $term eq chr(0)
138 and $term = '$end';
142 push(@errors,$term);
148 push(@shifts,[ $term, $action ]);
154 $term
160 push(@reduces,[ $term, $action ]);
168 my($term,
[all...]
H A DParse.pm34 my($syms,$head,$tail,$token,$term,$nterm,$rules,$precterm,$start,$nullable);
496 $$term{$_[1][0]} = undef;
512 $$term{$_[1][0]} = undef;
552 $$term{$symbol} = [ ];
565 defined($$term{$symbol}[0])
574 $$term{$symbol} = [ $_[1][0], $prec ];
614 delete($$term{$symbol}); #not a terminal
769 defined($$term{$_[2][0]})
777 $$term{$_[2][0]}[1];
979 ref($$term{
[all...]
H A DGrammar.pm256 my($rules,$nterm,$term,$ufrules,$ufnterm)=@_;
267 exists($$term{$sym})
287 my($rules,$term,$nullable) = @_;
299 exists($$term{$_})
332 my($rules,$nterm,$term) = @$values {'RULES', 'NTERM', 'TERM'};
339 $reachable = _Reachable($rules,$nterm,$term,$ufrules,$ufnterm);
342 for my $sym (keys %$term) {
347 = defined($$term{$sym}[0]) ? $$term{$sym} : undef;
/macosx-10.9.5/CPANInternal-140/Parse-Yapp-1.05/lib/Parse/Yapp/
H A DLalr.pm21 ACTIONS => { term => action }
34 'term' in ACTIONS is '' means default action
135 my($term,$action)=($_,$$states[$stateno]{ACTIONS}{$_});
137 $term eq chr(0)
138 and $term = '$end';
142 push(@errors,$term);
148 push(@shifts,[ $term, $action ]);
154 $term
160 push(@reduces,[ $term, $action ]);
168 my($term,
[all...]
H A DParse.pm34 my($syms,$head,$tail,$token,$term,$nterm,$rules,$precterm,$start,$nullable);
496 $$term{$_[1][0]} = undef;
512 $$term{$_[1][0]} = undef;
552 $$term{$symbol} = [ ];
565 defined($$term{$symbol}[0])
574 $$term{$symbol} = [ $_[1][0], $prec ];
614 delete($$term{$symbol}); #not a terminal
769 defined($$term{$_[2][0]})
777 $$term{$_[2][0]}[1];
979 ref($$term{
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/net/
H A Deudcb-mab.el81 (dolist (term query)
83 ((eq (car term) 'name)
84 (unless (string-match (cdr term)
87 ((eq (car term) 'email)
88 (unless (string= (cdr term) mail)
90 ((eq (car term) 'phone))))
/macosx-10.9.5/screen-22/screen/
H A DMakefile.in55 search.c tty.c term.c window.c utmp.c loadav.c putenv.c help.c \
60 search.o tty.o term.o window.o utmp.o loadav.o putenv.o help.o \
111 rm -f shadow/term.h shadow/tty.c shadow/comm.h shadow/osdef.h
116 term.h: term.c term.sh
117 AWK=$(AWK) srcdir=$(srcdir) sh $(srcdir)/term.sh
119 kmapdef.c: term.h
140 rm -f tty.c term.h comm.h osdef.h kmapdef.c core
144 # building of term
[all...]
/macosx-10.9.5/emacs-92/emacs/
H A Dupdate-subdirs27 *.elc | *.el | term | RCS | CVS | Old | . | .. | =* | *~ | *.orig | *.rej)
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/support/devel/sak/util/
H A Dcolor.tcl24 getpackage term::ansi::code::attr term/ansi/code/attr.tcl
25 getpackage term::ansi::code::ctrl term/ansi/code/ctrl.tcl
27 ::term::ansi::code::ctrl::import ::sak::color sda_bg* sda_reset
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/support/devel/sak/util/
H A Dcolor.tcl24 getpackage term::ansi::code::attr term/ansi/code/attr.tcl
25 getpackage term::ansi::code::ctrl term/ansi/code/ctrl.tcl
27 ::term::ansi::code::ctrl::import ::sak::color sda_bg* sda_reset
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A Ddebug.c49 char *term; local
51 term = getenv("TERM");
52 if (term)
59 /* we found a supported term? */
60 if (0 == strcmp(terms[i], term))
/macosx-10.9.5/ruby-104/ruby/missing/
H A Derf.c32 double result, term, previous; local
36 result = term = exp(a * log(x) - x - loggamma_a) / a;
38 term *= x / (a + k);
39 previous = result; result += term;
/macosx-10.9.5/awk-18/src/
H A Dawkgram.y65 %type <p> pas pattern ppattern plist pplist patlist prarg term re
214 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); }
216 | term
247 | pattern term %prec CAT { $$ = op2(CAT, $1, $2); }
249 | term
295 print prarg '|' term {
298 | print prarg APPEND term {
301 | print prarg GT term {
351 term: label
352 term '/' ASGNO
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/example/
H A Dvirterm23 set rows 24 ;# number of rows in term
24 set cols 80 ;# number of columns in term
25 set term myterm ;# name of text widget used by term
30 set term_shell $env(SHELL) ;# program to run in term
37 # term_spawn_id ;# spawn id of term
65 # if {[string match *foo* [$term get 4.0 4.end]]}
68 # if {[string match foo* [$term get 4.7 4.end]]}
71 # $term get 1.0 end
183 global rows cols cur_row cur_col term termdat
[all...]
/macosx-10.9.5/vim-53/runtime/colors/
H A Ddarkblue.vim22 hi Search guifg=#90fff0 guibg=#2050d0 ctermfg=white ctermbg=darkblue cterm=underline term=underline
29 hi WildMenu guifg=yellow guibg=black ctermfg=yellow ctermbg=black cterm=none term=none
35 hi StatusLine guifg=blue guibg=darkgray gui=none ctermfg=blue ctermbg=gray term=none cterm=none
36 hi StatusLineNC guifg=black guibg=darkgray gui=none ctermfg=black ctermbg=gray term=none cterm=none
37 hi VertSplit guifg=black guibg=darkgray gui=none ctermfg=black ctermbg=gray term=none cterm=none
39 hi Folded guifg=#808080 guibg=#000040 ctermfg=darkgrey ctermbg=black cterm=bold term=bold
40 hi FoldColumn guifg=#808080 guibg=#000040 ctermfg=darkgrey ctermbg=black cterm=bold term=bold
43 hi DiffAdd guibg=darkblue ctermbg=darkblue term=none cterm=none
59 hi Underlined cterm=underline term=underline
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/library/
H A Dxpath.tcl197 # We're looking for a term
204 set mode term
213 set mode term
221 set mode term
225 set mode term
229 set mode term
233 set mode term
241 set mode term
266 set mode term
275 set mode term
[all...]
/macosx-10.9.5/vim-53/src/
H A Dtermlib.c38 * Purpose: Get termcap entry for <term> into buffer at <tbuf>.
40 * Calling conventions: char tbuf[TBUFSZ+], term=canonical name for terminal.
47 * - Uses environment variables "TERM" and "TERMCAP". If TERM = term (that is,
69 tgetent(tbuf, term)
71 char *term; /* Name of terminal */
96 int tlen = strlen(term);
105 if (tmp+tlen == nexttmp && _match(tmp, term) == tlen)
123 while (getent(tbuf + len, term, termcap, TBUFSZ - len))
126 if ((term = tgetstr("tc", &tcptr))) /* extended entry */
143 getent(tbuf, term, termca
[all...]

Completed in 208 milliseconds

1234567891011>>