Lines Matching refs:Method
28 Method::Method(const char *name, in Method() function in android::Method
40 void Method::fillImplementation( in fillImplementation()
56 std::string Method::name() const { in name()
60 const std::vector<TypedVar *> &Method::args() const { in args()
64 const std::vector<TypedVar *> &Method::results() const { in results()
68 const std::vector<Annotation *> &Method::annotations() const { in annotations()
72 void Method::cppImpl(MethodImplType type, Formatter &out) const { in cppImpl()
82 void Method::javaImpl(MethodImplType type, Formatter &out) const { in javaImpl()
92 bool Method::isHiddenFromJava() const { in isHiddenFromJava()
96 bool Method::overridesCppImpl(MethodImplType type) const { in overridesCppImpl()
101 bool Method::overridesJavaImpl(MethodImplType type) const { in overridesJavaImpl()
106 Method *Method::copySignature() const { in copySignature()
107 return new Method(mName.c_str(), mArgs, mResults, mOneway, mAnnotations); in copySignature()
110 void Method::setSerialId(size_t serial) { in setSerialId()
115 size_t Method::getSerialId() const { in getSerialId()
119 void Method::generateCppSignature(Formatter &out, in generateCppSignature()
174 void Method::emitCppArgSignature(Formatter &out, bool specifyNamespaces) const { in emitCppArgSignature()
177 void Method::emitCppResultSignature(Formatter &out, bool specifyNamespaces) const { in emitCppResultSignature()
180 void Method::emitJavaArgSignature(Formatter &out) const { in emitJavaArgSignature()
183 void Method::emitJavaResultSignature(Formatter &out) const { in emitJavaResultSignature()
187 void Method::dumpAnnotations(Formatter &out) const { in dumpAnnotations()
202 bool Method::isJavaCompatible() const { in isJavaCompatible()
222 const TypedVar* Method::canElideCallback() const { in canElideCallback()