Home
last modified time | relevance | path

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

12

/system/tools/hidl/
DMethod.cpp121 bool specifyNamespaces) const { in generateCppSignature()
126 std::string space = (specifyNamespaces ? "::android::hardware::" : ""); in generateCppSignature()
133 << elidedReturn->type().getCppResultType( specifyNamespaces) in generateCppSignature()
143 emitCppArgSignature(out, specifyNamespaces); in generateCppSignature()
158 bool specifyNamespaces) { in emitCppArgResultSignature() argument
160 out << arg->type().getCppArgumentType(specifyNamespaces); in emitCppArgResultSignature()
174 void Method::emitCppArgSignature(Formatter &out, bool specifyNamespaces) const { in emitCppArgSignature()
175 emitCppArgResultSignature(out, args(), specifyNamespaces); in emitCppArgSignature()
177 void Method::emitCppResultSignature(Formatter &out, bool specifyNamespaces) const { in emitCppResultSignature()
178 emitCppArgResultSignature(out, results(), specifyNamespaces); in emitCppResultSignature()
DDeathRecipientType.cpp31 bool specifyNamespaces) const { in getCppType()
33 std::string(specifyNamespaces ? "::android::" : "") in getCppType()
35 + (specifyNamespaces ? "::android::hardware::" : "") in getCppType()
DType.cpp137 const std::string &name, StorageMode mode, bool specifyNamespaces) const { in decorateCppName()
138 return getCppType(mode, specifyNamespaces) + " " + name; in decorateCppName()
410 std::string Type::getCppStackType(bool specifyNamespaces) const { in getCppStackType()
411 return getCppType(StorageMode_Stack, specifyNamespaces); in getCppStackType()
414 std::string Type::getCppResultType(bool specifyNamespaces) const { in getCppResultType()
415 return getCppType(StorageMode_Result, specifyNamespaces); in getCppResultType()
418 std::string Type::getCppArgumentType(bool specifyNamespaces) const { in getCppArgumentType()
419 return getCppType(StorageMode_Argument, specifyNamespaces); in getCppArgumentType()
DMethod.h83 bool specifyNamespaces = true) const;
85 void emitCppArgSignature(Formatter &out, bool specifyNamespaces) const;
86 void emitCppResultSignature(Formatter &out, bool specifyNamespaces) const;
DType.h71 bool specifyNamespaces) const;
76 bool specifyNamespaces) const;
90 std::string getCppStackType(bool specifyNamespaces = true) const;
92 std::string getCppResultType(bool specifyNamespaces = true) const;
94 std::string getCppArgumentType(bool specifyNamespaces = true) const;
DMemoryType.cpp33 bool specifyNamespaces) const { in getCppType()
35 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.h32 bool specifyNamespaces) const override;
DMemoryType.h32 bool specifyNamespaces) const override;
DHandleType.h34 bool specifyNamespaces) const override;
DFmqType.h34 bool specifyNamespaces) const override;
DRefType.h33 bool specifyNamespaces) const override;
DEnumType.h50 bool specifyNamespaces) const override;
162 bool specifyNamespaces) const override;
DStringType.h36 bool specifyNamespaces) const override;
DArrayType.cpp66 bool specifyNamespaces) const { in getCppType()
67 const std::string base = mElementType->getCppStackType(specifyNamespaces); in getCppType()
69 std::string space = specifyNamespaces ? "::android::hardware::" : ""; in getCppType()
DScalarType.h56 bool specifyNamespaces) const override;
DVectorType.cpp89 bool specifyNamespaces) const { in getCppType()
91 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
93 + mElementType->getCppStackType( specifyNamespaces) in getCppType()
DEnumType.cpp86 bool specifyNamespaces) const { in getCppType()
87 return specifyNamespaces ? fullName() : partialCppName(); in getCppType()
737 bool specifyNamespaces) const { in getCppType()
738 return resolveToScalarType()->getCppType(mode, specifyNamespaces); in getCppType()
DArrayType.h45 bool specifyNamespaces) const override;
DInterface.h80 bool specifyNamespaces) const override;
DInterface.cpp621 bool specifyNamespaces) const { in getCppType()
623 std::string(specifyNamespaces ? "::android::" : "") in getCppType()
625 + (specifyNamespaces ? fullName() : partialCppName()) in getCppType()
DVectorType.h39 bool specifyNamespaces) const override;

12