Home
last modified time | relevance | path

Searched refs:BaseType (Results 1 – 3 of 3) sorted by relevance

/packages/modules/NetworkStack/common/networkstackclient/src/android/net/shared/
DParcelableUtil.java38 public static <ParcelableType, BaseType> ParcelableType[] toParcelableArray( in toParcelableArray()
39 @NonNull Collection<BaseType> base, in toParcelableArray()
40 @NonNull Function<BaseType, ParcelableType> conv, in toParcelableArray() argument
44 for (BaseType b : base) { in toParcelableArray()
55 public static <ParcelableType, BaseType> ArrayList<BaseType> fromParcelableArray( in fromParcelableArray()
56 @NonNull ParcelableType[] parceled, @NonNull Function<ParcelableType, BaseType> conv) { in fromParcelableArray()
57 final ArrayList<BaseType> out = new ArrayList<>(parceled.length); in fromParcelableArray()
/packages/modules/Bluetooth/system/gd/dumpsys/internal/
Dfilter_internal.h125 inline std::string FlatbufferTypeText(const flatbuffers::BaseType& type) { in FlatbufferTypeText()
Dfilter_internal.cc239 field.type()->base_type() == reflection::BaseType::String, in FilterTypeString()