Searched refs:specifyNamespaces (Results 1 – 25 of 26) sorted by relevance
12
/system/tools/hidl/ |
D | Method.cpp | 171 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 …]
|
D | DeathRecipientType.cpp | 31 bool specifyNamespaces) const { in getCppType() 33 std::string(specifyNamespaces ? "::android::" : "") in getCppType() 35 + (specifyNamespaces ? "::android::hardware::" : "") in getCppType()
|
D | Method.h | 93 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;
|
D | Type.h | 159 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;
|
D | Type.cpp | 378 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()
|
D | MemoryType.cpp | 29 bool specifyNamespaces) const { in getCppType() 31 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
|
D | HandleType.cpp | 37 bool specifyNamespaces) const { in getCppType() 39 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
|
D | StringType.cpp | 40 bool specifyNamespaces) const { in getCppType() 42 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
|
D | DeathRecipientType.h | 30 bool specifyNamespaces) const override;
|
D | EnumType.h | 55 bool specifyNamespaces) const override; 64 std::string getBitfieldCppType(StorageMode mode, bool specifyNamespaces = true) const; 185 bool specifyNamespaces) const override;
|
D | RefType.cpp | 78 std::string RefType::getCppType(StorageMode /*mode*/, bool specifyNamespaces) const { in getCppType() 79 return mElementType->getCppStackType(specifyNamespaces) in getCppType()
|
D | MemoryType.h | 32 bool specifyNamespaces) const override;
|
D | PointerType.h | 36 bool specifyNamespaces) const override;
|
D | FmqType.h | 34 bool specifyNamespaces) const override;
|
D | RefType.h | 38 bool specifyNamespaces) const override;
|
D | HandleType.h | 34 bool specifyNamespaces) const override;
|
D | StringType.h | 36 bool specifyNamespaces) const override;
|
D | ScalarType.h | 54 bool specifyNamespaces) const override;
|
D | ArrayType.cpp | 93 bool specifyNamespaces) const { in getCppType() 94 const std::string base = mElementType->getCppStackType(specifyNamespaces); in getCppType() 96 std::string space = specifyNamespaces ? "::android::hardware::" : ""; in getCppType()
|
D | VectorType.cpp | 90 bool specifyNamespaces) const { in getCppType() 92 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType() 94 + mElementType->getCppStackType( specifyNamespaces) in getCppType()
|
D | EnumType.cpp | 187 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()
|
D | ArrayType.h | 53 bool specifyNamespaces) const override;
|
D | VectorType.h | 43 bool specifyNamespaces) const override;
|
D | Interface.h | 91 bool specifyNamespaces) const override;
|
D | CompoundType.h | 55 bool specifyNamespaces) const override;
|
12