Searched defs:MethodCall (Results 1 – 3 of 3) sorted by relevance
/system/tools/aidl/ |
D | ast_java.cpp | 179 MethodCall::MethodCall(const string& n) : name(n) {} in MethodCall() function in android::aidl::java::MethodCall 181 MethodCall::MethodCall(const string& n, int argc = 0, ...) : name(n) { in MethodCall() function in android::aidl::java::MethodCall 188 MethodCall::MethodCall(Expression* o, const string& n) : receiver(o), name(n) {} in MethodCall() function in android::aidl::java::MethodCall 190 MethodCall::MethodCall(const std::string& t, const string& n) : receiver(t), name(n) {} in MethodCall() function in android::aidl::java::MethodCall 192 MethodCall::MethodCall(Expression* o, const string& n, int argc = 0, ...) : receiver(o), name(n) { in MethodCall() function in android::aidl::java::MethodCall 199 MethodCall::MethodCall(const std::string& t, const string& n, int argc = 0, ...) in MethodCall() function in android::aidl::java::MethodCall
|
D | ast_java.h | 172 struct MethodCall : public Expression { struct 178 explicit MethodCall(const std::string& name); argument
|
D | ast_cpp.cpp | 352 MethodCall::MethodCall(const std::string& method_name, in MethodCall() function in android::aidl::cpp::MethodCall 356 MethodCall::MethodCall(const std::string& method_name, in MethodCall() function in android::aidl::cpp::MethodCall
|