Searched refs:specifyNamespaces (Results 1 – 25 of 26) sorted by relevance
12
/system/tools/hidl/ |
D | Method.cpp | 123 void Method::generateCppReturnType(Formatter &out, bool specifyNamespaces) const { in generateCppReturnType() 125 const std::string space = (specifyNamespaces ? "::android::hardware::" : ""); in generateCppReturnType() 132 << elidedReturn->type().getCppResultType( specifyNamespaces) in generateCppReturnType() 139 bool specifyNamespaces) const { in generateCppSignature() 140 generateCppReturnType(out, specifyNamespaces); in generateCppSignature() 148 emitCppArgSignature(out, specifyNamespaces); in generateCppSignature() 154 bool specifyNamespaces) { in emitCppArgResultSignature() argument 156 out << arg->type().getCppArgumentType(specifyNamespaces); in emitCppArgResultSignature() 170 void Method::emitCppArgSignature(Formatter &out, bool specifyNamespaces) const { in emitCppArgSignature() 171 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 | 81 void generateCppReturnType(Formatter &out, bool specifyNamespaces = true) const; 84 bool specifyNamespaces = true) const; 87 void emitCppArgSignature(Formatter &out, bool specifyNamespaces = true) const; 88 void emitCppResultSignature(Formatter &out, bool specifyNamespaces = true) const;
|
D | Type.cpp | 133 const std::string &name, StorageMode mode, bool specifyNamespaces) const { in decorateCppName() 134 return getCppType(mode, specifyNamespaces) + " " + name; in decorateCppName() 406 std::string Type::getCppStackType(bool specifyNamespaces) const { in getCppStackType() 407 return getCppType(StorageMode_Stack, specifyNamespaces); in getCppStackType() 410 std::string Type::getCppResultType(bool specifyNamespaces) const { in getCppResultType() 411 return getCppType(StorageMode_Result, specifyNamespaces); in getCppResultType() 414 std::string Type::getCppArgumentType(bool specifyNamespaces) const { in getCppArgumentType() 415 return getCppType(StorageMode_Argument, specifyNamespaces); in getCppArgumentType()
|
D | Type.h | 72 bool specifyNamespaces) const; 77 bool specifyNamespaces) const; 79 std::string getCppStackType(bool specifyNamespaces = true) const; 81 std::string getCppResultType(bool specifyNamespaces = true) const; 83 std::string getCppArgumentType(bool specifyNamespaces = true) const;
|
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 | RefType.cpp | 73 std::string RefType::getCppType(StorageMode /*mode*/, bool specifyNamespaces) const { in getCppType() 74 return mElementType->getCppStackType(specifyNamespaces) in getCppType()
|
D | PointerType.h | 36 bool specifyNamespaces) const override;
|
D | DeathRecipientType.h | 30 bool specifyNamespaces) const override;
|
D | HandleType.h | 34 bool specifyNamespaces) const override;
|
D | MemoryType.h | 32 bool specifyNamespaces) const override;
|
D | FmqType.h | 34 bool specifyNamespaces) const override;
|
D | RefType.h | 32 bool specifyNamespaces) const override;
|
D | EnumType.h | 48 bool specifyNamespaces) const override; 158 bool specifyNamespaces) const override;
|
D | StringType.h | 36 bool specifyNamespaces) const override;
|
D | ArrayType.cpp | 70 bool specifyNamespaces) const { in getCppType() 71 const std::string base = mElementType->getCppStackType(specifyNamespaces); in getCppType() 73 std::string space = specifyNamespaces ? "::android::hardware::" : ""; in getCppType()
|
D | ScalarType.h | 54 bool specifyNamespaces) const override;
|
D | VectorType.cpp | 85 bool specifyNamespaces) const { in getCppType() 87 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType() 89 + mElementType->getCppStackType( specifyNamespaces) in getCppType()
|
D | ArrayType.h | 47 bool specifyNamespaces) const override;
|
D | Interface.h | 80 bool specifyNamespaces) const override;
|
D | VectorType.h | 37 bool specifyNamespaces) const override;
|
D | CompoundType.h | 48 bool specifyNamespaces) const override;
|
D | Interface.cpp | 618 bool specifyNamespaces) const { in getCppType() 620 std::string(specifyNamespaces ? "::android::" : "") in getCppType()
|
12