/aosp12/system/tools/hidl/ |
H A D | generateCppAdapter.cpp | 38 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 D | generateVts.cpp | 33 if (AST::isInterface()) { in emitVtsTypeDeclarations() 74 if (isInterface()) { in generateVts()
|
H A D | generateCppImpl.cpp | 79 if (!AST::isInterface()) { in generateCppImplHeader() 136 if (!AST::isInterface()) { in generateCppImplSource()
|
H A D | VectorType.cpp | 53 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 D | Scope.cpp | 110 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 D | TypeDef.h | 38 bool isInterface() const override;
|
H A D | TypeDef.cpp | 42 bool TypeDef::isInterface() const { in isInterface() function in android::TypeDef
|
H A D | generateJavaImpl.cpp | 23 if (!AST::isInterface()) { in generateJavaImpl()
|
H A D | AST.cpp | 95 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 D | generateCpp.cpp | 433 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 D | FmqType.cpp | 169 return (!elementType->isInterface() && !elementType->needsEmbeddedReadWrite()); in isCompatibleElementType()
|
H A D | Interface.cpp | 482 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 D | Interface.h | 51 bool isInterface() const override;
|
/aosp12/art/test/031-class-attributes/ |
H A D | expected-stdout.txt | 42 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 D | namingConventions.cpp | 49 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 D | Main.java | 79 if (!clazz.isInterface()) { in check() 89 if (clazz.isInterface()) { in check()
|
/aosp12/system/tools/hidl/c2hal/ |
H A D | CompositeDeclaration.cpp | 112 if (isInterface()) { in processContents() 154 bool CompositeDeclaration::isInterface() const { in isInterface() function in android::CompositeDeclaration
|
H A D | CompositeDeclaration.h | 45 bool isInterface() const;
|
H A D | AST.cpp | 144 && ((CompositeDeclaration *) (*it))->isInterface()) { in isolateInterfaces()
|
/aosp12/art/test/912-classes/src-art/art/ |
H A D | Test912.java | 129 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 D | ChildClass.java | 228 if (klass.isInterface() && (!isStatic || !isPublic)) { in checkField() 337 if (klass.isInterface() && !isPublic) { in checkMethod() 409 if (!klass.isInterface() || isStatic) { in checkMethod()
|
H A D | Reflection.java | 125 m.invoke(klass.isInterface() ? null : klass.newInstance()); in canInvokeMethod()
|
/aosp12/system/tools/hidl/hidl2aidl/ |
H A D | AidlNamedType.cpp | 121 } else if (namedType.isInterface()) { in emitAidl()
|
H A D | AidlHelper.cpp | 123 if (type.isInterface()) { in emitFileHeader()
|
/aosp12/frameworks/base/tools/codegen/src/com/android/codegen/ |
H A D | Utils.kt | 109 .filterNot { it.isInterface }
|