Home
last modified time | relevance | path

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

/system/tools/hidl/
DMethod.cpp159 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()
[all …]
DDeathRecipientType.cpp31 bool specifyNamespaces) const { in getCppType()
33 std::string(specifyNamespaces ? "::android::" : "") in getCppType()
35 + (specifyNamespaces ? "::android::hardware::" : "") in getCppType()
DMethod.h90 void generateCppReturnType(Formatter &out, bool specifyNamespaces = true) const;
93 bool specifyNamespaces = true) const;
96 void emitCppArgSignature(Formatter &out, bool specifyNamespaces = true) const;
97 void emitCppResultSignature(Formatter &out, bool specifyNamespaces = true) const;
DType.h162 bool specifyNamespaces) const;
167 bool specifyNamespaces) const;
169 std::string getCppStackType(bool specifyNamespaces = true) const;
171 std::string getCppResultType(bool specifyNamespaces = true) const;
173 std::string getCppArgumentType(bool specifyNamespaces = true) const;
176 bool specifyNamespaces = true) const;
DType.cpp388 const std::string &name, StorageMode mode, bool specifyNamespaces) const { in decorateCppName()
389 return getCppType(mode, specifyNamespaces) + " " + name; in decorateCppName()
632 std::string Type::getCppStackType(bool specifyNamespaces) const { in getCppStackType()
633 return getCppType(StorageMode_Stack, specifyNamespaces); in getCppStackType()
636 std::string Type::getCppResultType(bool specifyNamespaces) const { in getCppResultType()
637 return getCppType(StorageMode_Result, specifyNamespaces); in getCppResultType()
640 std::string Type::getCppArgumentType(bool specifyNamespaces) const { in getCppArgumentType()
641 return getCppType(StorageMode_Argument, specifyNamespaces); in getCppArgumentType()
644 std::string Type::getCppTypeCast(const std::string& objName, bool specifyNamespaces) const { in getCppTypeCast()
645 return "(" + getCppStackType(specifyNamespaces) + ") " + objName; in getCppTypeCast()
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;
DMemoryType.cpp29 bool specifyNamespaces) const { in getCppType()
31 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
DEnumType.h56 bool specifyNamespaces) const override;
65 std::string getBitfieldCppType(StorageMode mode, bool specifyNamespaces = true) const;
191 bool specifyNamespaces) const override;
DPointerType.h36 bool specifyNamespaces) const override;
DFmqType.h38 bool specifyNamespaces) const override;
DStringType.h36 bool specifyNamespaces) const override;
DHandleType.h34 bool specifyNamespaces) const override;
DMemoryType.h32 bool specifyNamespaces) const override;
DArrayType.cpp96 bool specifyNamespaces) const { in getCppType()
97 const std::string base = mElementType->getCppStackType(specifyNamespaces); in getCppType()
99 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()
DScalarType.h54 bool specifyNamespaces) const override;
DEnumType.cpp188 std::string EnumType::getBitfieldCppType(StorageMode /* mode */, bool specifyNamespaces) const { in getBitfieldCppType()
189 const std::string space = specifyNamespaces ? "::android::hardware::" : ""; in getBitfieldCppType()
190 return space + "hidl_bitfield<" + (specifyNamespaces ? fullName() : definedName()) + ">"; in getBitfieldCppType()
859 bool specifyNamespaces) const { in getCppType()
860 return getElementEnumType()->getBitfieldCppType(mode, specifyNamespaces); in getCppType()
DArrayType.h53 bool specifyNamespaces) const override;
DVectorType.h43 bool specifyNamespaces) const override;
DInterface.h95 bool specifyNamespaces) const override;
DCompoundType.h57 bool specifyNamespaces) const override;
DInterface.cpp690 bool specifyNamespaces) const { in getCppType()
692 std::string(specifyNamespaces ? "::android::" : "") in getCppType()