Searched defs:MethodCall (Results 1 – 3 of 3) sorted by relevance
/system/tools/aidl/ |
D | ast_java.h | 160 struct MethodCall : public Expression { struct 167 explicit MethodCall(const std::string& name); argument
|
D | ast_java.cpp | 165 MethodCall::MethodCall(const string& n) : name(n) {} in MethodCall() function in android::aidl::java::MethodCall 167 MethodCall::MethodCall(const string& n, int argc = 0, ...) : name(n) { in MethodCall() function in android::aidl::java::MethodCall 174 MethodCall::MethodCall(Expression* o, const string& n) : obj(o), name(n) {} in MethodCall() function in android::aidl::java::MethodCall 176 MethodCall::MethodCall(const Type* t, const string& n) : clazz(t), name(n) {} in MethodCall() function in android::aidl::java::MethodCall 178 MethodCall::MethodCall(Expression* o, const string& n, int argc = 0, ...) in MethodCall() function in android::aidl::java::MethodCall 186 MethodCall::MethodCall(const Type* t, const string& n, int argc = 0, ...) in MethodCall() function in android::aidl::java::MethodCall
|
D | ast_cpp.cpp | 332 MethodCall::MethodCall(const std::string& method_name, in MethodCall() function in android::aidl::cpp::MethodCall 336 MethodCall::MethodCall(const std::string& method_name, in MethodCall() function in android::aidl::cpp::MethodCall
|