Home
last modified time | relevance | path

Searched refs:isInterface (Results 1 – 25 of 25) sorted by relevance

/system/tools/hidl/
DgenerateCppAdapter.cpp38 const std::string klassName = AST::isInterface() ? getInterface()->getAdapterName() : "Atypes"; in generateCppAdapterHeader()
44 if (AST::isInterface()) { in generateCppAdapterHeader()
82 const std::string klassName = AST::isInterface() ? getInterface()->getAdapterName() : "Atypes"; in generateCppAdapterSource()
86 if (AST::isInterface()) { in generateCppAdapterSource()
126 if (!type->isInterface()) { in generateAdapterMethod()
DgenerateVts.cpp33 if (AST::isInterface()) { in emitVtsTypeDeclarations()
76 if (isInterface()) { in generateVts()
DgenerateCppImpl.cpp72 if (!AST::isInterface()) { in generateCppImplHeader()
135 if (!AST::isInterface()) { in generateCppImplSource()
DTypeDef.h36 bool isInterface() const override;
DTypeDef.cpp41 bool TypeDef::isInterface() const { in isInterface() function in android::TypeDef
DVectorType.cpp53 if (elementType->isInterface()) { in isCompatibleElementType()
64 return this->isCompatibleElementType(inner) && !inner->isInterface(); in isCompatibleElementType()
68 return this->isCompatibleElementType(inner) && !inner->isInterface(); in isCompatibleElementType()
78 return mElementType->isInterface(); in isVectorOfBinders()
DScope.cpp92 if (mTypes.size() == 1 && mTypes[0]->isInterface()) { in getInterface()
101 if (type->isInterface()) { in definesInterfaces()
DFmqType.cpp163 return (!elementType->isInterface() && !elementType->needsEmbeddedReadWrite()); in isCompatibleElementType()
DAST.cpp82 bool AST::isInterface() const { in isInterface() function in android::AST
695 if (!resolvedType->isInterface()) { in lookupTypeFromImports()
700 if (match != nullptr && match->isInterface()) { in lookupTypeFromImports()
706 if (!resolvedType->isInterface()) { in lookupTypeFromImports()
DInterface.h46 bool isInterface() const override;
DgenerateCpp.cpp437 if (!arg->type().isInterface()) { in wrapPassthroughArg()
523 out << (arg->type().isInterface() ? "_hidl_wrapped_" : "") << arg->name(); in generatePassthroughMethod()
644 CHECK(AST::isInterface()); in generateStubHeader()
752 if (!AST::isInterface()) { in generateProxyHeader()
1126 if (arg->type().isInterface()) { in generateStaticProxyMethodSource()
1700 if (!AST::isInterface()) { in generatePassthroughHeader()
DInterface.cpp529 if (!isIBase() && !mSuperType->isInterface()) { in validate()
639 if (!mSuperType->isInterface()) { in superType()
665 bool Interface::isInterface() const { in isInterface() function in android::Interface
DAST.h55 bool isInterface() const;
DType.h49 virtual bool isInterface() const;
Dhidl-gen_y.yy589 CHECK((*scope)->isInterface());
602 CHECK((*scope)->isInterface());
716 CHECK((*scope)->isInterface());
DgenerateJava.cpp133 if (!AST::isInterface()) { in generateJava()
DArrayType.cpp83 if (mElementType->isInterface()) { in validate()
DType.cpp39 bool Type::isInterface() const { in isInterface() function in android::Type
DCompoundType.cpp59 if (type.isInterface()) { in validate()
206 if (field->type().isInterface()) { in containsInterface()
DCoordinator.cpp298 if ((*ast)->isInterface()) { in parseOptional()
/system/tools/hidl/c2hal/
DCompositeDeclaration.cpp112 if (isInterface()) { in processContents()
154 bool CompositeDeclaration::isInterface() const { in isInterface() function in android::CompositeDeclaration
DCompositeDeclaration.h45 bool isInterface() const;
DAST.cpp144 && ((CompositeDeclaration *) (*it))->isInterface()) { in isolateInterfaces()
/system/tools/hidl/docs/src/parser/files/
DInterfaceFileParser.kt57 fun isInterface(tokens: List<Token>): Boolean { in isInterface() method
/system/tools/hidl/docs/src/
Dmain.kt76 if (InterfaceFileParser.isInterface(tokens)) { in parseAndGetWriter()