Searched refs:IfElseFn (Results 1 – 3 of 3) sorted by relevance
/bootable/deprecated-ota/edify/ |
D | parser.yy | 105 | IF expr THEN expr ENDIF { $$ = Build(IfElseFn, @$, 2, $2, $4); } 106 | IF expr THEN expr ELSE expr ENDIF { $$ = Build(IfElseFn, @$, 3, $2, $4, $6); }
|
D | expr.cpp | 94 Value* IfElseFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) { in IfElseFn() function 333 RegisterFunction("ifelse", IfElseFn); in RegisterBuiltins()
|
/bootable/deprecated-ota/edify/include/edify/ |
D | expr.h | 111 Value* IfElseFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv);
|