Home
last modified time | relevance | path

Searched refs:MethodImpl (Results 1 – 6 of 6) sorted by relevance

/system/tools/hidl/
DMethod.h52 using MethodImpl = std::map<MethodImplType, std::function<void(Formatter &)>>; variable
87 MethodImpl cppImpl,
88 MethodImpl javaImpl);
122 MethodImpl mCppImpl;
123 MethodImpl mJavaImpl;
DMethod.cpp47 MethodImpl cppImpl, in fillImplementation()
48 MethodImpl javaImpl) { in fillImplementation()
/system/tools/aidl/
Dast_cpp.cpp288 MethodImpl::MethodImpl(const string& return_type, in MethodImpl() function in android::aidl::cpp::MethodImpl
302 StatementBlock* MethodImpl::GetStatementBlock() { in GetStatementBlock()
306 void MethodImpl::Write(CodeWriter* to) const { in Write()
Dast_cpp.h229 class MethodImpl : public Declaration {
233 MethodImpl(const std::string& return_type,
238 virtual ~MethodImpl() = default;
Dgenerate_cpp.cpp256 unique_ptr<MethodImpl> ret{ in DefineClientTransaction()
257 new MethodImpl{kBinderStatusLiteral, bp_name, method.GetName(), in DefineClientTransaction()
694 unique_ptr<MethodImpl> on_transact{new MethodImpl{ in BuildServerSource()
808 unique_ptr<MethodImpl> getter(new MethodImpl("const " + cppType + "&", in BuildInterfaceSource()
1136 unique_ptr<MethodImpl> read{new MethodImpl{kAndroidStatusLiteral, parcel.GetName(), in BuildParcelSource()
1166 unique_ptr<MethodImpl> write{ in BuildParcelSource()
1167 new MethodImpl{kAndroidStatusLiteral, parcel.GetName(), "writeToParcel", in BuildParcelSource()
Dast_cpp_unittest.cpp252 MethodImpl m{"return_type", "ClassName", "MethodName", in TEST_F()