Searched refs:NewExpression (Results 1 – 3 of 3) sorted by relevance
200 struct NewExpression : public Expression { struct204 explicit NewExpression(const std::string& name); argument205 NewExpression(const std::string& name, const std::vector<std::shared_ptr<Expression>>& args);206 virtual ~NewExpression() = default;
224 NewExpression::NewExpression(const std::string& n) : instantiableName(n) {} in NewExpression() function in android::aidl::java::NewExpression226 NewExpression::NewExpression(const std::string& n, in NewExpression() function in android::aidl::java::NewExpression230 void NewExpression::Write(CodeWriter* to) const { in Write()
352 auto ne = std::make_shared<NewExpression>(interfaceType->GetCanonicalName() + ".Stub.Proxy"); in MakeAsInterface()