Home
last modified time | relevance | path

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

12

/aosp12/system/tools/hidl/
H A 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()
H A DgenerateVts.cpp33 if (AST::isInterface()) { in emitVtsTypeDeclarations()
74 if (isInterface()) { in generateVts()
H A DgenerateCppImpl.cpp79 if (!AST::isInterface()) { in generateCppImplHeader()
136 if (!AST::isInterface()) { in generateCppImplSource()
H A 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()
H A DScope.cpp110 if (mTypes.size() == 1 && mTypes[0]->isInterface()) { in getInterface()
119 if (type->isInterface()) { in definesInterfaces()
249 if (type->isInterface() && !type->isJavaCompatible(visited)) { in deepIsJavaCompatible()
H A DTypeDef.h38 bool isInterface() const override;
H A DTypeDef.cpp42 bool TypeDef::isInterface() const { in isInterface() function in android::TypeDef
H A DgenerateJavaImpl.cpp23 if (!AST::isInterface()) { in generateJavaImpl()
H A DAST.cpp95 bool AST::isInterface() const { in isInterface() function in android::AST
737 if (!resolvedType->isInterface()) { in lookupTypeFromImports()
742 if (match != nullptr && match->isInterface()) { in lookupTypeFromImports()
748 if (!resolvedType->isInterface()) { in lookupTypeFromImports()
H A DgenerateCpp.cpp433 if (!arg->type().isInterface()) { in wrapPassthroughArg()
515 out << (arg->type().isInterface() ? "_hidl_wrapped_" : "") << arg->name(); in generatePassthroughMethod()
636 CHECK(AST::isInterface()); in generateStubHeader()
752 if (!AST::isInterface()) { in generateProxyHeader()
1086 if (arg->type().isInterface()) { in generateStaticProxyMethodSource()
1650 if (!AST::isInterface()) { in generatePassthroughHeader()
H A DFmqType.cpp169 return (!elementType->isInterface() && !elementType->needsEmbeddedReadWrite()); in isCompatibleElementType()
H A DInterface.cpp482 if (!isIBase() && !mSuperType->isInterface()) { in validate()
613 if (!mSuperType->isInterface()) { in superType()
639 bool Interface::isInterface() const { in isInterface() function in android::Interface
H A DInterface.h51 bool isInterface() const override;
/aosp12/art/test/031-class-attributes/
H A Dexpected-stdout.txt42 isInterface: false
68 isInterface: false
94 isInterface: false
120 isInterface: false
146 isInterface: false
172 isInterface: false
198 isInterface: false
224 isInterface: false
/aosp12/system/tools/hidl/lint/lints/
H A DnamingConventions.cpp49 if (namedType->isInterface()) definedName = definedName.substr(1); in namingConventions()
54 if (namedType->isInterface()) desiredName = "I" + desiredName; in namingConventions()
/aosp12/art/test/121-modifiers/src2/
H A DMain.java79 if (!clazz.isInterface()) { in check()
89 if (clazz.isInterface()) { in check()
/aosp12/system/tools/hidl/c2hal/
H A DCompositeDeclaration.cpp112 if (isInterface()) { in processContents()
154 bool CompositeDeclaration::isInterface() const { in isInterface() function in android::CompositeDeclaration
H A DCompositeDeclaration.h45 bool isInterface() const;
H A DAST.cpp144 && ((CompositeDeclaration *) (*it))->isInterface()) { in isolateInterfaces()
/aosp12/art/test/912-classes/src-art/art/
H A DTest912.java129 boolean isInterface = isInterface(c); in testClassType()
132 System.out.println(c.getName() + " interface=" + isInterface + " array=" + isArray + in testClassType()
377 private static native boolean isInterface(Class<?> c); in isInterface() method in Test912
/aosp12/art/test/674-hiddenapi/src-ex/
H A DChildClass.java228 if (klass.isInterface() && (!isStatic || !isPublic)) { in checkField()
337 if (klass.isInterface() && !isPublic) { in checkMethod()
409 if (!klass.isInterface() || isStatic) { in checkMethod()
H A DReflection.java125 m.invoke(klass.isInterface() ? null : klass.newInstance()); in canInvokeMethod()
/aosp12/system/tools/hidl/hidl2aidl/
H A DAidlNamedType.cpp121 } else if (namedType.isInterface()) { in emitAidl()
H A DAidlHelper.cpp123 if (type.isInterface()) { in emitFileHeader()
/aosp12/frameworks/base/tools/codegen/src/com/android/codegen/
H A DUtils.kt109 .filterNot { it.isInterface }

12