代码搜索:Expression
找到约 10,000 项符合「Expression」的源代码
代码结果 10,000
www.eeworm.com/read/326691/13122844
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/325790/13184830
txt props.txt
Help on properties of the pfarray class.
'expression'
The expression supplied by the user.
'intexpr'
The internal expression, used for the calculations.
'str'
A string representing the exp
www.eeworm.com/read/322876/13362713
ini setup.ini
[Startup]
AppName=Multi Expression Programming Software
www.eeworm.com/read/315921/13534867
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/303837/13808021
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/148359/5715433
equality
========================
Expression: 1=1
Object is a Boolean : true
========================
Expression: 1!=1
Object is a Boolean : false
========================
Expression: 1=0
Object is a Boolea
www.eeworm.com/read/148359/5715435
base
========================
Expression: 1
Object is a number : 1
========================
Expression: 1+2
Object is a number : 3
========================
Expression: 2*3
Object is a number : 6
======