Home
last modified time | relevance | path

Searched refs:specifyNamespaces (Results 1 – 25 of 26) sorted by relevance

12

/system/tools/hidl/
DMethod.cpp123 void Method::generateCppReturnType(Formatter &out, bool specifyNamespaces) const { in generateCppReturnType()
125 const std::string space = (specifyNamespaces ? "::android::hardware::" : ""); in generateCppReturnType()
132 << elidedReturn->type().getCppResultType( specifyNamespaces) in generateCppReturnType()
139 bool specifyNamespaces) const { in generateCppSignature()
140 generateCppReturnType(out, specifyNamespaces); in generateCppSignature()
148 emitCppArgSignature(out, specifyNamespaces); in generateCppSignature()
154 bool specifyNamespaces) { in emitCppArgResultSignature() argument
156 out << arg->type().getCppArgumentType(specifyNamespaces); in emitCppArgResultSignature()
170 void Method::emitCppArgSignature(Formatter &out, bool specifyNamespaces) const { in emitCppArgSignature()
171 emitCppArgResultSignature(out, args(), specifyNamespaces); in emitCppArgSignature()
[all …]
DDeathRecipientType.cpp31 bool specifyNamespaces) const { in getCppType()
33 std::string(specifyNamespaces ? "::android::" : "") in getCppType()
35 + (specifyNamespaces ? "::android::hardware::" : "") in getCppType()
DMethod.h81 void generateCppReturnType(Formatter &out, bool specifyNamespaces = true) const;
84 bool specifyNamespaces = true) const;
87 void emitCppArgSignature(Formatter &out, bool specifyNamespaces = true) const;
88 void emitCppResultSignature(Formatter &out, bool specifyNamespaces = true) const;
DType.cpp133 const std::string &name, StorageMode mode, bool specifyNamespaces) const { in decorateCppName()
134 return getCppType(mode, specifyNamespaces) + " " + name; in decorateCppName()
406 std::string Type::getCppStackType(bool specifyNamespaces) const { in getCppStackType()
407 return getCppType(StorageMode_Stack, specifyNamespaces); in getCppStackType()
410 std::string Type::getCppResultType(bool specifyNamespaces) const { in getCppResultType()
411 return getCppType(StorageMode_Result, specifyNamespaces); in getCppResultType()
414 std::string Type::getCppArgumentType(bool specifyNamespaces) const { in getCppArgumentType()
415 return getCppType(StorageMode_Argument, specifyNamespaces); in getCppArgumentType()
DType.h72 bool specifyNamespaces) const;
77 bool specifyNamespaces) const;
79 std::string getCppStackType(bool specifyNamespaces = true) const;
81 std::string getCppResultType(bool specifyNamespaces = true) const;
83 std::string getCppArgumentType(bool specifyNamespaces = true) const;
DMemoryType.cpp29 bool specifyNamespaces) const { in getCppType()
31 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
DHandleType.cpp37 bool specifyNamespaces) const { in getCppType()
39 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
DStringType.cpp40 bool specifyNamespaces) const { in getCppType()
42 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
DRefType.cpp73 std::string RefType::getCppType(StorageMode /*mode*/, bool specifyNamespaces) const { in getCppType()
74 return mElementType->getCppStackType(specifyNamespaces) in getCppType()
DPointerType.h36 bool specifyNamespaces) const override;
DDeathRecipientType.h30 bool specifyNamespaces) const override;
DHandleType.h34 bool specifyNamespaces) const override;
DMemoryType.h32 bool specifyNamespaces) const override;
DFmqType.h34 bool specifyNamespaces) const override;
DRefType.h32 bool specifyNamespaces) const override;
DEnumType.h48 bool specifyNamespaces) const override;
158 bool specifyNamespaces) const override;
DStringType.h36 bool specifyNamespaces) const override;
DArrayType.cpp70 bool specifyNamespaces) const { in getCppType()
71 const std::string base = mElementType->getCppStackType(specifyNamespaces); in getCppType()
73 std::string space = specifyNamespaces ? "::android::hardware::" : ""; in getCppType()
DScalarType.h54 bool specifyNamespaces) const override;
DVectorType.cpp85 bool specifyNamespaces) const { in getCppType()
87 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
89 + mElementType->getCppStackType( specifyNamespaces) in getCppType()
DArrayType.h47 bool specifyNamespaces) const override;
DInterface.h80 bool specifyNamespaces) const override;
DVectorType.h37 bool specifyNamespaces) const override;
DCompoundType.h48 bool specifyNamespaces) const override;
DInterface.cpp618 bool specifyNamespaces) const { in getCppType()
620 std::string(specifyNamespaces ? "::android::" : "") in getCppType()

12