Home
last modified time | relevance | path

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

12

/system/tools/hidl/
DMethod.cpp171 void Method::generateCppReturnType(Formatter &out, bool specifyNamespaces) const { in generateCppReturnType()
173 const std::string space = (specifyNamespaces ? "::android::hardware::" : ""); in generateCppReturnType()
180 << elidedReturn->type().getCppResultType( specifyNamespaces) in generateCppReturnType()
187 bool specifyNamespaces) const { in generateCppSignature()
188 generateCppReturnType(out, specifyNamespaces); in generateCppSignature()
196 emitCppArgSignature(out, specifyNamespaces); in generateCppSignature()
202 bool specifyNamespaces) { in emitCppArgResultSignature() argument
204 out << arg->type().getCppArgumentType(specifyNamespaces); in emitCppArgResultSignature()
219 void Method::emitCppArgSignature(Formatter &out, bool specifyNamespaces) const { in emitCppArgSignature()
220 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.h93 void generateCppReturnType(Formatter &out, bool specifyNamespaces = true) const;
96 bool specifyNamespaces = true) const;
99 void emitCppArgSignature(Formatter &out, bool specifyNamespaces = true) const;
100 void emitCppResultSignature(Formatter &out, bool specifyNamespaces = true) const;
DType.h159 bool specifyNamespaces) const;
164 bool specifyNamespaces) const;
166 std::string getCppStackType(bool specifyNamespaces = true) const;
168 std::string getCppResultType(bool specifyNamespaces = true) const;
170 std::string getCppArgumentType(bool specifyNamespaces = true) const;
173 bool specifyNamespaces = true) const;
DType.cpp378 const std::string &name, StorageMode mode, bool specifyNamespaces) const { in decorateCppName()
379 return getCppType(mode, specifyNamespaces) + " " + name; in decorateCppName()
662 std::string Type::getCppStackType(bool specifyNamespaces) const { in getCppStackType()
663 return getCppType(StorageMode_Stack, specifyNamespaces); in getCppStackType()
666 std::string Type::getCppResultType(bool specifyNamespaces) const { in getCppResultType()
667 return getCppType(StorageMode_Result, specifyNamespaces); in getCppResultType()
670 std::string Type::getCppArgumentType(bool specifyNamespaces) const { in getCppArgumentType()
671 return getCppType(StorageMode_Argument, specifyNamespaces); in getCppArgumentType()
674 std::string Type::getCppTypeCast(const std::string& objName, bool specifyNamespaces) const { in getCppTypeCast()
675 return "(" + getCppStackType(specifyNamespaces) + ") " + objName; in getCppTypeCast()
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()
DDeathRecipientType.h30 bool specifyNamespaces) const override;
DEnumType.h55 bool specifyNamespaces) const override;
64 std::string getBitfieldCppType(StorageMode mode, bool specifyNamespaces = true) const;
185 bool specifyNamespaces) const override;
DRefType.cpp78 std::string RefType::getCppType(StorageMode /*mode*/, bool specifyNamespaces) const { in getCppType()
79 return mElementType->getCppStackType(specifyNamespaces) in getCppType()
DMemoryType.h32 bool specifyNamespaces) const override;
DPointerType.h36 bool specifyNamespaces) const override;
DFmqType.h34 bool specifyNamespaces) const override;
DRefType.h38 bool specifyNamespaces) const override;
DHandleType.h34 bool specifyNamespaces) const override;
DStringType.h36 bool specifyNamespaces) const override;
DScalarType.h54 bool specifyNamespaces) const override;
DArrayType.cpp93 bool specifyNamespaces) const { in getCppType()
94 const std::string base = mElementType->getCppStackType(specifyNamespaces); in getCppType()
96 std::string space = specifyNamespaces ? "::android::hardware::" : ""; in getCppType()
DVectorType.cpp90 bool specifyNamespaces) const { in getCppType()
92 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
94 + mElementType->getCppStackType( specifyNamespaces) in getCppType()
DEnumType.cpp187 std::string EnumType::getBitfieldCppType(StorageMode /* mode */, bool specifyNamespaces) const { in getBitfieldCppType()
188 const std::string space = specifyNamespaces ? "::android::hardware::" : ""; in getBitfieldCppType()
189 return space + "hidl_bitfield<" + (specifyNamespaces ? fullName() : localName()) + ">"; in getBitfieldCppType()
820 bool specifyNamespaces) const { in getCppType()
821 return getElementEnumType()->getBitfieldCppType(mode, specifyNamespaces); in getCppType()
DArrayType.h53 bool specifyNamespaces) const override;
DVectorType.h43 bool specifyNamespaces) const override;
DInterface.h91 bool specifyNamespaces) const override;
DCompoundType.h55 bool specifyNamespaces) const override;

12