Searched defs:Expression (Results 1 – 3 of 3) sorted by relevance
30 struct Expression { struct31 Expression() {} in Expression() argument32 virtual ~Expression() {} in ~Expression() argument34 enum Type {42 static std::string getTypeDescription(Type type) { in getTypeDescription()69 static Expression *parenthesize(Expression *inner); argument
259 struct Expression : public IExpression { struct260 Return<void> foo1(const hidl_array<int32_t, 1>&) override { return Void(); } in foo1()261 Return<void> foo2(const hidl_array<int32_t, 13>&) override { return Void(); } in foo2()262 Return<void> foo3(const hidl_array<int32_t, 20>&) override { return Void(); } in foo3()
68 struct Expression : public AstNode { struct