Home
last modified time | relevance | path

Searched refs:inner (Results 1 – 13 of 13) sorted by relevance

/system/tools/hidl/test/error_test/cpp_forward_decl_restriction/1.0/
Drequired_error1 C++ forward declaration doesn't support inner types
/system/tools/hidl/
DVectorType.cpp63 const Type* inner = static_cast<const TemplatedType*>(elementType)->getElementType(); in isCompatibleElementType() local
64 return this->isCompatibleElementType(inner) && !inner->isInterface(); in isCompatibleElementType()
67 const Type* inner = static_cast<const ArrayType*>(elementType)->getElementType(); in isCompatibleElementType() local
68 return this->isCompatibleElementType(inner) && !inner->isInterface(); in isCompatibleElementType()
/system/tools/hidl/c2hal/
DExpression.cpp83 ParenthesizedExpression(Expression* inner) in ParenthesizedExpression()
84 : mInner(inner) {} in ParenthesizedExpression()
265 Expression *Expression::parenthesize(Expression *inner) { in parenthesize() argument
266 return new ParenthesizedExpression(inner); in parenthesize()
DExpression.h69 static Expression *parenthesize(Expression *inner);
/system/media/camera/docs/
Dmetadata_helpers.py327 def inner(what): function
333 return inner
371 def inner(what): function
379 return inner
753 def inner(text): function
786 return inner
DACameraMetadata.mako25 ## We only support 1 level of inner namespace, i.e. android.a.b and android.a.b.c works, but not an…
DCameraMetadataEnums.mako63 ## We only support 1 level of inner namespace, i.e. android.a.b and android.a.b.c works, but not an…
DCameraMetadataKeys.mako82 ## We only support 1 level of inner namespace, i.e. android.a.b and android.a.b.c works, but not an…
/system/bt/gd/packet/
Dpacket_builder_unittest.cc229 …NestedBuilder(std::unique_ptr<BasePacketBuilder> inner, uint8_t level) : payload_(std::move(inner)… in NestedBuilder() argument
/system/bt/vendor_libs/test_vendor_lib/packets/test/
Dpacket_builder_test.cc226 …NestedBuilder(std::unique_ptr<BasePacketBuilder> inner, uint8_t level) : payload_(std::move(inner)… in NestedBuilder() argument
/system/bt/vendor_libs/test_vendor_lib/test/
Dpacket_builder_test.cc226 …NestedBuilder(std::unique_ptr<BasePacketBuilder> inner, uint8_t level) : payload_(std::move(inner)… in NestedBuilder() argument
/system/core/libsparse/
Doutput_file.cpp63 #define container_of(inner, outer_t, elem) ((outer_t*)((char*)(inner)-offsetof(outer_t, elem))) argument
/system/tools/aidl/
Dgenerate_cpp.cpp184 vector<unique_ptr<Declaration>> inner; in NestInNamespaces() local
185 inner.emplace_back(unique_ptr<Declaration>{new CppNamespace{*it, std::move(decls)}}); in NestInNamespaces()
187 decls = std::move(inner); in NestInNamespaces()