代码搜索:expression
找到约 10,000 项符合「expression」的源代码
代码结果 10,000
www.eeworm.com/read/193648/8209800
y ch3-01.y
%token NAME NUMBER
%%
statement: NAME '=' expression
| expression { printf("= %d\n", $1); }
;
expression: expression '+' NUMBER { $$ = $1 + $3; }
| expression '-' NUMBER { $$ = $1 - $3; }
| NUMB
www.eeworm.com/read/293018/8318350
y ch3-01.y
%token NAME NUMBER
%%
statement: NAME '=' expression
| expression { printf("= %d\n", $1); }
;
expression: expression '+' NUMBER { $$ = $1 + $3; }
| expression '-' NUMBER { $$ = $1 - $3; }
| NUMB
www.eeworm.com/read/410973/11262151
txt 5-1453msg3.txt
Subject: cfp : spatial expression
( < first call for papers ) > < < first call for papers > > < < first call for papers > > ijcai-95 workshop on the representation and process of spatial expression f
www.eeworm.com/read/109918/15545823
7 regex.7
.TH REGEX 7 "25 Oct 1995"
.BY "Henry Spencer"
.SH NAME
regex \- POSIX 1003.2 regular expressions
.SH DESCRIPTION
Regular expressions (``RE''s),
as defined in POSIX 1003.2, come in two forms:
mo
www.eeworm.com/read/109916/15545844
7 regex.7
.TH REGEX 7 "25 Oct 1995"
.BY "Henry Spencer"
.SH NAME
regex \- POSIX 1003.2 regular expressions
.SH DESCRIPTION
Regular expressions (``RE''s),
as defined in POSIX 1003.2, come in two forms:
mo
www.eeworm.com/read/107060/15613859
txt readme.unix.txt
Program: ngrep
Author: Jordan Ritter
Version: 1.41 (8.9.2003)
Goal:
A program that mimicks as much functionality in GNU grep as
possible, applied at the network lay
www.eeworm.com/read/105680/15661404
doc grep.doc
grep searches a file for a given pattern. Execute by
grep [flags] regular_expression file_list
Flags are single characters preceeded by '-':
-c Only a count of matching lines is print
www.eeworm.com/read/105441/15666811
doc grep.doc
grep searches a file for a given pattern. Execute by
grep [flags] regular_expression file_list
Flags are single characters preceeded by '-':
-c Only a count of matching lines is print