Home
last modified time | relevance | path

Searched refs:ternary (Results 1 – 5 of 5) sorted by relevance

/system/tools/hidl/c2hal/
DExpression.h73 static Expression *ternary(Expression *lhs, Expression *mhs, Expression *rhs);
DExpression.cpp281 Expression *Expression::ternary(Expression *lhs, Expression *mhs, Expression *rhs) { in ternary() function in android::Expression
Dc2hal_y.yy481 | expr '?' expr ':' expr { $$ = Expression::ternary($1, $3, $5); }
/system/tools/hidl/test/hidl_test/
Dstatic_test.cpp180 static_assert(IExpression::Precedence::ternary == (1 ? 2 : 3), "");
/system/tools/hidl/
Dhidl-gen_y.yy258 /* Precedence level 15 ternary operator */