Home
last modified time | relevance | path

Searched refs:stat2 (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/usr.bin/perl/lib/File/
H A Dstat.t48 my $stat2 = stat $file;
49 isa_ok($stat2, 'File::stat',
51 is_deeply($stat2, $stat, '... and matches the direct call');
163 my $stat2 = File::stat::stat('STAT');
164 main::isa_ok($stat2, 'File::stat',
169 my $stat3 = $stat2;
/openbsd/usr.bin/awk/
H A Dawkgram.y177 pa_pat { $$ = stat2(PASTAT, $1, stat2(PRINT, rectonode(), NIL)); }
178 | pa_pat lbrace stmtlist '}' { $$ = stat2(PASTAT, $1, $3); }
179 | pa_pat ',' opt_nl pa_pat { $$ = pa2stat($1, $4, stat2(PRINT, rectonode(), NIL)); }
181 | lbrace stmtlist '}' { $$ = stat2(PASTAT, NIL, $2); }
309 | DELETE varname '[' patlist ']' { $$ = stat2(DELETE, makearr($2), $4); }
310 | DELETE varname { $$ = stat2(DELETE, makearr($2), 0); }
326 { $$ = stat2(DO, $3, notnull($7)); }
342 | while {inloop++;} stmt { --inloop; $$ = stat2(WHILE, $1, $3); }
H A Dproto.h82 extern Node *stat2(int, Node *, Node *);
H A Dparse.c120 Node *stat2(int a, Node *b, Node *c) in stat2() function
/openbsd/gnu/usr.bin/perl/t/win32/
H A Dsymlink.t121 my @stat2 = stat($file2);