Home
last modified time | relevance | path

Searched defs:MethodCall (Results 1 – 2 of 2) sorted by relevance

/system/tools/aidl/
Dast_java.cpp182 MethodCall::MethodCall(const string& n) : name(n) {} in MethodCall() function in android::aidl::java::MethodCall
184 MethodCall::MethodCall(const string& n, const std::vector<std::shared_ptr<Expression>>& args) in MethodCall() function in android::aidl::java::MethodCall
187 MethodCall::MethodCall(std::shared_ptr<Expression> o, const string& n) : receiver(o), name(n) {} in MethodCall() function in android::aidl::java::MethodCall
189 MethodCall::MethodCall(const std::string& t, const string& n) : receiver(t), name(n) {} in MethodCall() function in android::aidl::java::MethodCall
191 MethodCall::MethodCall(std::shared_ptr<Expression> o, const string& n, in MethodCall() function in android::aidl::java::MethodCall
195 MethodCall::MethodCall(const std::string& t, const string& n, in MethodCall() function in android::aidl::java::MethodCall
Dast_java.h171 struct MethodCall : public Expression { struct
177 explicit MethodCall(const std::string& name); argument