Home
last modified time | relevance | path

Searched refs:ConcatFn (Results 1 – 3 of 3) sorted by relevance

/bootable/recovery/edify/
Dexpr.h101 Value* ConcatFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv);
Dexpr.cpp76 Value* ConcatFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) { in ConcatFn() function
334 RegisterFunction("concat", ConcatFn); in RegisterBuiltins()
Dparser.yy98 | expr '+' expr { $$ = Build(ConcatFn, @$, 2, $1, $3); }