Searched refs:specifyNamespaces (Results 1 – 25 of 27) sorted by relevance
12
/system/tools/hidl/ |
D | Method.cpp | 121 bool specifyNamespaces) const { in generateCppSignature() 126 std::string space = (specifyNamespaces ? "::android::hardware::" : ""); in generateCppSignature() 133 << elidedReturn->type().getCppResultType( specifyNamespaces) in generateCppSignature() 143 emitCppArgSignature(out, specifyNamespaces); in generateCppSignature() 158 bool specifyNamespaces) { in emitCppArgResultSignature() argument 160 out << arg->type().getCppArgumentType(specifyNamespaces); in emitCppArgResultSignature() 174 void Method::emitCppArgSignature(Formatter &out, bool specifyNamespaces) const { in emitCppArgSignature() 175 emitCppArgResultSignature(out, args(), specifyNamespaces); in emitCppArgSignature() 177 void Method::emitCppResultSignature(Formatter &out, bool specifyNamespaces) const { in emitCppResultSignature() 178 emitCppArgResultSignature(out, results(), specifyNamespaces); in emitCppResultSignature()
|
D | DeathRecipientType.cpp | 31 bool specifyNamespaces) const { in getCppType() 33 std::string(specifyNamespaces ? "::android::" : "") in getCppType() 35 + (specifyNamespaces ? "::android::hardware::" : "") in getCppType()
|
D | Type.cpp | 137 const std::string &name, StorageMode mode, bool specifyNamespaces) const { in decorateCppName() 138 return getCppType(mode, specifyNamespaces) + " " + name; in decorateCppName() 410 std::string Type::getCppStackType(bool specifyNamespaces) const { in getCppStackType() 411 return getCppType(StorageMode_Stack, specifyNamespaces); in getCppStackType() 414 std::string Type::getCppResultType(bool specifyNamespaces) const { in getCppResultType() 415 return getCppType(StorageMode_Result, specifyNamespaces); in getCppResultType() 418 std::string Type::getCppArgumentType(bool specifyNamespaces) const { in getCppArgumentType() 419 return getCppType(StorageMode_Argument, specifyNamespaces); in getCppArgumentType()
|
D | Method.h | 83 bool specifyNamespaces = true) const; 85 void emitCppArgSignature(Formatter &out, bool specifyNamespaces) const; 86 void emitCppResultSignature(Formatter &out, bool specifyNamespaces) const;
|
D | Type.h | 71 bool specifyNamespaces) const; 76 bool specifyNamespaces) const; 90 std::string getCppStackType(bool specifyNamespaces = true) const; 92 std::string getCppResultType(bool specifyNamespaces = true) const; 94 std::string getCppArgumentType(bool specifyNamespaces = true) const;
|
D | MemoryType.cpp | 33 bool specifyNamespaces) const { in getCppType() 35 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 | 32 bool specifyNamespaces) const override;
|
D | MemoryType.h | 32 bool specifyNamespaces) const override;
|
D | HandleType.h | 34 bool specifyNamespaces) const override;
|
D | FmqType.h | 34 bool specifyNamespaces) const override;
|
D | RefType.h | 33 bool specifyNamespaces) const override;
|
D | EnumType.h | 50 bool specifyNamespaces) const override; 162 bool specifyNamespaces) const override;
|
D | StringType.h | 36 bool specifyNamespaces) const override;
|
D | ArrayType.cpp | 66 bool specifyNamespaces) const { in getCppType() 67 const std::string base = mElementType->getCppStackType(specifyNamespaces); in getCppType() 69 std::string space = specifyNamespaces ? "::android::hardware::" : ""; in getCppType()
|
D | ScalarType.h | 56 bool specifyNamespaces) const override;
|
D | VectorType.cpp | 89 bool specifyNamespaces) const { in getCppType() 91 std::string(specifyNamespaces ? "::android::hardware::" : "") in getCppType() 93 + mElementType->getCppStackType( specifyNamespaces) in getCppType()
|
D | EnumType.cpp | 86 bool specifyNamespaces) const { in getCppType() 87 return specifyNamespaces ? fullName() : partialCppName(); in getCppType() 737 bool specifyNamespaces) const { in getCppType() 738 return resolveToScalarType()->getCppType(mode, specifyNamespaces); in getCppType()
|
D | ArrayType.h | 45 bool specifyNamespaces) const override;
|
D | Interface.h | 80 bool specifyNamespaces) const override;
|
D | Interface.cpp | 621 bool specifyNamespaces) const { in getCppType() 623 std::string(specifyNamespaces ? "::android::" : "") in getCppType() 625 + (specifyNamespaces ? fullName() : partialCppName()) in getCppType()
|
D | VectorType.h | 39 bool specifyNamespaces) const override;
|
12