Searched defs:vars (Results 1 - 7 of 7) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | vars.pm | 1 package vars; package 8 use strict qw(vars subs); 22 warnings::warn("No need to declare built-in vars"); 23 } elsif (($^H &= strict::bits('vars'))) { 25 Carp::croak("'$_' is not a valid variable name under strict vars"); 51 vars - Perl pragma to predeclare global variable names (obsolete) 55 use vars qw($frob @mung %seen); 67 Unlike pragmas that affect the C<$^H> hints variable, the C<use vars> and 70 declarations with C<no vars> or C<no subs>. 74 package lexicals defined using C<my()>. While the B<vars> pragm [all...] |
H A D | overload.t | 500 sub vars { my $p = shift; tie($_, $p), $_->nop foreach @_; } subroutine 560 symbolic->vars($a, $b); 621 sub vars { my $p = shift; tie($_, $p), $_->nop foreach @_; } subroutine 681 symbolic1->vars($a, $b);
|
/osnet-11/usr/src/grub/grub2/include/grub/ |
H A D | env_private.h | 31 struct grub_env_var *vars[HASHSZ]; member in struct:grub_env_context
|
/osnet-11/usr/src/lib/libcurses/screen/ |
H A D | tparm.c | 254 long vars[26]; local 546 vars[*cp++ - 'a'] = pop(&stk); 565 push(&stk, vars[*cp++ - 'a']);
|
/osnet-11/usr/src/lib/libgen/common/ |
H A D | reg_compile.c | 77 vars_storage *vars; local 81 vars = pthread_getspecific(*keyp); 82 if (vars == NULL) { 83 vars = calloc(1, sizeof (vars_storage)); 84 if (thr_setspecific(*keyp, vars) != 0) { 85 if (vars) 86 (void) free(vars); 87 vars = NULL; 90 return (vars); 99 vars_storage *vars local 110 vars_storage *vars = _get_vars_storage(&key); local 121 vars_storage *vars = _get_vars_storage(&key); local [all...] |
H A D | reg_step.c | 75 vars_storage *vars; local 79 vars = pthread_getspecific(*keyp); 80 if (vars == NULL) { 81 vars = calloc(1, sizeof (vars_storage)); 82 if (thr_setspecific(*keyp, vars) != 0) { 83 if (vars) 84 (void) free(vars); 85 vars = NULL; 88 return (vars); 97 vars_storage *vars local 108 vars_storage *vars = _get_vars_storage(&key); local 119 vars_storage *vars = _get_vars_storage(&key); local 130 vars_storage *vars = _get_vars_storage(&key); local 141 vars_storage *vars = _get_vars_storage(&key); local [all...] |
/osnet-11/usr/src/lib/libshell/common/sh/ |
H A D | streval.c | 66 struct vars /* vars stacked per invocation */ struct 118 static int _seterror(struct vars *vp,const char *msg) 502 static int gettok(register struct vars *vp) 570 static int expr(register struct vars *vp,register int precedence) 900 struct vars cur;
|
Completed in 30 milliseconds