Home
last modified time | relevance | path

Searched refs:contained_type (Results 1 – 2 of 2) sorted by relevance

/system/tools/aidl/
Dtype_cpp.cpp531 const Type* contained_type = FindTypeByCanonicalName(type_name); in AddListType() local
532 if (!contained_type) { in AddListType()
537 if (contained_type->IsCppPrimitive()) { in AddListType()
544 if (contained_type->CanonicalName() == kStringCanonicalName || in AddListType()
545 contained_type->CanonicalName() == kUtf8InCppStringCanonicalName || in AddListType()
546 contained_type == IBinderType()) { in AddListType()
Dtype_java.cpp715 const Type* contained_type) in GenericListType() argument
716 : Type(types, "java.util", "List<" + contained_type->CanonicalName() + ">", in GenericListType()
718 m_contained_type(contained_type), in GenericListType()
719 m_creator(contained_type->CreatorName()) {} in GenericListType()
892 const Type* contained_type = FindTypeByCanonicalName(contained_type_name); in AddListType() local
893 if (!contained_type) { in AddListType()
896 Add(new GenericListType(this, contained_type)); in AddListType()