Searched refs:Concat (Results 1 – 2 of 2) sorted by relevance
/development/vndk/tools/sourcedr/blueprint/tests/ |
D | test_ast.py | 23 from blueprint import Bool, Concat, Dict, Expr, Integer, List, String, VarRef 236 expr = Concat(lhs, rhs) 254 expr = Concat(lhs, rhs) 271 Concat(str_obj, list_obj).eval({}) 274 Concat(list_obj, str_obj).eval({})
|
/development/vndk/tools/sourcedr/blueprint/ |
D | blueprint.py | 523 class Concat(Expr): # pylint: disable=too-few-public-methods class 620 value = Concat(self.create_var_ref(ident), value) 699 expr = Concat(expr, self.parse_operand())
|