Lines Matching refs:specifyNamespaces
159 void Method::generateCppReturnType(Formatter &out, bool specifyNamespaces) const { in generateCppReturnType()
161 const std::string space = (specifyNamespaces ? "::android::hardware::" : ""); in generateCppReturnType()
168 << elidedReturn->type().getCppResultType( specifyNamespaces) in generateCppReturnType()
175 bool specifyNamespaces) const { in generateCppSignature()
176 generateCppReturnType(out, specifyNamespaces); in generateCppSignature()
184 emitCppArgSignature(out, specifyNamespaces); in generateCppSignature()
190 bool specifyNamespaces) { in emitCppArgResultSignature() argument
192 out << arg->type().getCppArgumentType(specifyNamespaces); in emitCppArgResultSignature()
207 void Method::emitCppArgSignature(Formatter &out, bool specifyNamespaces) const { in emitCppArgSignature()
208 emitCppArgResultSignature(out, args(), specifyNamespaces); in emitCppArgSignature()
220 void Method::emitCppResultSignature(Formatter &out, bool specifyNamespaces) const { in emitCppResultSignature()
221 emitCppArgResultSignature(out, results(), specifyNamespaces); in emitCppResultSignature()