• Home
  • Raw
  • Download

Lines Matching refs:Method

35 Method::Method(const std::string& name, std::vector<NamedReference<Type>*>* args,  in Method()  function in android::Method
45 void Method::fillImplementation( in fillImplementation()
61 std::string Method::name() const { in name()
65 const std::vector<NamedReference<Type>*>& Method::args() const { in args()
69 const std::vector<NamedReference<Type>*>& Method::results() const { in results()
73 const std::vector<Annotation *> &Method::annotations() const { in annotations()
77 std::vector<Reference<Type>*> Method::getReferences() { in getReferences()
78 const auto& constRet = static_cast<const Method*>(this)->getReferences(); in getReferences()
85 std::vector<const Reference<Type>*> Method::getReferences() const { in getReferences()
92 std::vector<Reference<Type>*> Method::getStrongReferences() { in getStrongReferences()
93 const auto& constRet = static_cast<const Method*>(this)->getStrongReferences(); in getStrongReferences()
100 std::vector<const Reference<Type>*> Method::getStrongReferences() const { in getStrongReferences()
110 void Method::cppImpl(MethodImplType type, Formatter &out) const { in cppImpl()
120 void Method::javaImpl(MethodImplType type, Formatter &out) const { in javaImpl()
130 bool Method::overridesCppImpl(MethodImplType type) const { in overridesCppImpl()
135 bool Method::overridesJavaImpl(MethodImplType type) const { in overridesJavaImpl()
140 Method* Method::copySignature() const { in copySignature()
141 Method* method = new Method(mName, mArgs, mResults, mOneway, mAnnotations, location()); in copySignature()
146 void Method::setSerialId(size_t serial) { in setSerialId()
151 size_t Method::getSerialId() const { in getSerialId()
155 bool Method::hasEmptyCppArgSignature() const { in hasEmptyCppArgSignature()
159 void Method::generateCppReturnType(Formatter &out, bool specifyNamespaces) const { in generateCppReturnType()
173 void Method::generateCppSignature(Formatter &out, in generateCppSignature()
207 void Method::emitCppArgSignature(Formatter &out, bool specifyNamespaces) const { in emitCppArgSignature()
220 void Method::emitCppResultSignature(Formatter &out, bool specifyNamespaces) const { in emitCppResultSignature()
223 void Method::emitJavaArgSignature(Formatter &out) const { in emitJavaArgSignature()
226 void Method::emitJavaResultSignature(Formatter &out) const { in emitJavaResultSignature()
230 void Method::emitJavaSignature(Formatter& out) const { in emitJavaSignature()
271 void Method::emitHidlDefinition(Formatter& out) const { in emitHidlDefinition()
300 bool Method::deepIsJavaCompatible(std::unordered_set<const Type*>* visited) const { in deepIsJavaCompatible()
314 const NamedReference<Type>* Method::canElideCallback() const { in canElideCallback()
329 const Location& Method::location() const { in location()