Searched refs:TypeDef (Results 1 – 9 of 9) sorted by relevance
/system/tools/hidl/ |
D | TypeDef.cpp | 24 TypeDef::TypeDef(const char* localName, const Location& location, Scope* parent, Type* type) in TypeDef() function in android::TypeDef 27 const ScalarType *TypeDef::resolveToScalarType() const { in resolveToScalarType() 32 Type *TypeDef::referencedType() const { in referencedType() 36 bool TypeDef::isInterface() const { in isInterface() 40 bool TypeDef::isEnum() const { in isEnum() 45 std::string TypeDef::typeName() const { in typeName() 49 bool TypeDef::isTypeDef() const { in isTypeDef() 53 bool TypeDef::needsEmbeddedReadWrite() const { in needsEmbeddedReadWrite() 58 bool TypeDef::resultNeedsDeref() const { in resultNeedsDeref() 63 status_t TypeDef::emitTypeDeclarations(Formatter &out) const { in emitTypeDeclarations()
|
D | TypeDef.h | 25 struct TypeDef : public NamedType { struct 26 TypeDef(const char* localName, const Location& location, Scope* parent, Type* type); 45 DISALLOW_COPY_AND_ASSIGN(TypeDef);
|
D | AST.cpp | 183 return addScopedTypeInternal(new TypeDef(localName, location, scope, type), errorMsg, scope); in addTypeDef() 280 type = static_cast<TypeDef *>(type)->referencedType(); in lookupTypeLocally() 396 static_cast<TypeDef *>(resolvedType)->referencedType(); in lookupTypeFromImports()
|
D | Android.bp | 88 "TypeDef.cpp",
|
/system/tools/hidl/c2hal/ |
D | TypeDef.cpp | 21 TypeDef::TypeDef(const std::string &name, Declaration* declaration) in TypeDef() function in android::TypeDef 27 TypeDef::~TypeDef() {} in ~TypeDef() 29 void TypeDef::generateSource(Formatter &out) const { in generateSource() 37 void TypeDef::processContents(AST &ast) { in processContents()
|
D | TypeDef.h | 28 struct TypeDef : Declaration { struct 29 TypeDef(const std::string &name, Declaration* declaration); 30 ~TypeDef(); 41 DISALLOW_COPY_AND_ASSIGN(TypeDef); argument
|
D | Android.bp | 36 "TypeDef.cpp",
|
D | c2hal_y.yy | 29 #include "TypeDef.h" 238 $$ = new TypeDef($2->getName(), $2);
|
D | c2hal_l.ll | 41 #include "TypeDef.h"
|