Searched refs:specifyNamespaces (Results 1 – 24 of 24) sorted by relevance
/system/tools/hidl/ |
D | Method.cpp | 159 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 …]
|
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 | 90 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;
|
D | Type.h | 162 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;
|
D | Type.cpp | 388 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()
|
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 | MemoryType.cpp | 29 bool specifyNamespaces) const { in getCppType() 31 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType()
|
D | EnumType.h | 56 bool specifyNamespaces) const override; 65 std::string getBitfieldCppType(StorageMode mode, bool specifyNamespaces = true) const; 191 bool specifyNamespaces) const override;
|
D | PointerType.h | 36 bool specifyNamespaces) const override;
|
D | FmqType.h | 38 bool specifyNamespaces) const override;
|
D | StringType.h | 36 bool specifyNamespaces) const override;
|
D | HandleType.h | 34 bool specifyNamespaces) const override;
|
D | MemoryType.h | 32 bool specifyNamespaces) const override;
|
D | ArrayType.cpp | 96 bool specifyNamespaces) const { in getCppType() 97 const std::string base = mElementType->getCppStackType(specifyNamespaces); in getCppType() 99 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 | ScalarType.h | 54 bool specifyNamespaces) const override;
|
D | EnumType.cpp | 188 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()
|
D | ArrayType.h | 53 bool specifyNamespaces) const override;
|
D | VectorType.h | 43 bool specifyNamespaces) const override;
|
D | Interface.h | 95 bool specifyNamespaces) const override;
|
D | CompoundType.h | 57 bool specifyNamespaces) const override;
|
D | Interface.cpp | 690 bool specifyNamespaces) const { in getCppType() 692 std::string(specifyNamespaces ? "::android::" : "") in getCppType()
|