OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IfElseFn
(Results
1 - 3
of
3
) sorted by null
/bootable/recovery/edify/
parser.y
91
| IF expr THEN expr ENDIF { $$ = Build(
IfElseFn
, @$, 2, $2, $4); }
92
| IF expr THEN expr ELSE expr ENDIF { $$ = Build(
IfElseFn
, @$, 3, $2, $4, $6); }
expr.h
100
Value*
IfElseFn
(const char* name, State* state, int argc, Expr* argv[]);
expr.c
102
Value*
IfElseFn
(const char* name, State* state, int argc, Expr* argv[]) {
383
RegisterFunction("ifelse",
IfElseFn
);
Completed in 1506 milliseconds