Searched refs:BaseType (Results 1 – 12 of 12) sorted by relevance
/aosp12/art/libartbase/base/ |
H A D | transform_array_ref.h | 30 template <typename BaseType, typename Function> 63 using size_type = typename ArrayRef<BaseType>::size_type; 131 ArrayRef<BaseType> base() { in base() 134 ArrayRef<const BaseType> base() const { in base() 135 return ArrayRef<const BaseType>(data_.base_); in base() 144 ArrayRef<BaseType> base_; 162 template <typename BaseType, typename Function> 163 bool operator==(const TransformArrayRef<BaseType, Function>& lhs, 164 const TransformArrayRef<BaseType, Function>& rhs) { 168 template <typename BaseType, typename Function> [all …]
|
H A D | bit_struct.h | 192 return BaseType::Assign(*this, value); 222 using BaseType = BitStructField<T, kBitOffset, kBitWidth, StorageType>; 223 using BaseType::Get;
|
/aosp12/packages/modules/NetworkStack/common/networkstackclient/src/android/net/shared/ |
H A D | ParcelableUtil.java | 38 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()
|
/aosp12/frameworks/native/libs/vr/libvrflinger/ |
H A D | hwc_types.h | 107 using BaseType = EnumType; 110 using ValueType = typename UnderlyingType<BaseType>::Type; 124 Wrapper(BaseType value) : value(static_cast<ValueType>(value)) {} 133 operator BaseType() const { return static_cast<BaseType>(value); } 146 return HWC2::to_string(static_cast<BaseType>(value)); 151 bool operator!=(BaseType other_value) const { 152 return static_cast<BaseType>(value) != other_value; 156 bool operator==(BaseType other_value) const { 157 return static_cast<BaseType>(value) == other_value;
|
/aosp12/frameworks/compile/slang/ |
H A D | slang_rs_object_ref_count.cpp | 353 const clang::Type *BaseType = RefRSArr->getType().getTypePtr(); in ClearArrayRSObject() local 354 slangAssert(BaseType->isArrayType()); in ClearArrayRSObject() 356 int NumArrayElements = ArrayDim(BaseType); in ClearArrayRSObject() 358 BaseType = BaseType->getArrayElementTypeNoTypeQual(); in ClearArrayRSObject() 463 C.getPointerType(BaseType->getCanonicalTypeInternal()), in ClearArrayRSObject() 477 DataType DT = RSExportPrimitiveType::GetRSSpecificType(BaseType); in ClearArrayRSObject() 480 if (BaseType->isArrayType()) { in ClearArrayRSObject() 560 const clang::Type *BaseType = RefRSStruct->getType().getTypePtr(); in ClearStructRSObject() local 562 slangAssert(!BaseType->isArrayType()); in ClearStructRSObject() 565 slangAssert(RSExportPrimitiveType::GetRSSpecificType(BaseType) == in ClearStructRSObject() [all …]
|
/aosp12/frameworks/native/libs/vr/libpdx/private/pdx/ |
H A D | utility.h | 207 using BaseType = ByteBuffer; 208 using iterator = typename BaseType::iterator; 209 using const_iterator = typename BaseType::const_iterator; 210 using size_type = typename BaseType::size_type;
|
/aosp12/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
H A D | pointer_wrapper.h | 14 using BaseType = T;
|
/aosp12/frameworks/native/libs/vr/libpdx/ |
H A D | variant_tests.cpp | 16 struct BaseType { struct 18 BaseType(int value) : value(value) {} in BaseType() function 22 struct DerivedType : BaseType { 24 DerivedType(int value) : BaseType{value} {}; in DerivedType() 1001 std::unique_ptr<BaseType> u(std::make_unique<BaseType>(20)); in TEST()
|
/aosp12/system/bt/gd/dumpsys/internal/ |
H A D | filter_internal.cc | 191 ASSERT(field.type()->base_type() == reflection::BaseType::String); in FilterTypeString()
|
/aosp12/frameworks/native/cmds/lshal/ |
H A D | ListCommand.cpp | 839 using BaseType = std::underlying_type_t<T>; in GetAllValues() typedef 841 for (BaseType i = 0; i < static_cast<BaseType>(T::LAST); ++i) { in GetAllValues()
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
H A D | document.h | 121 typedef std::iterator<std::random_access_iterator_tag,ValueType> BaseType; typedef 132 typedef typename BaseType::pointer Pointer; 134 typedef typename BaseType::reference Reference; 136 typedef typename BaseType::difference_type DifferenceType;
|
/aosp12/art/compiler/optimizing/ |
H A D | nodes.h | 8520 std::is_base_of<BaseType, H##type>::value, 8524 using BaseType = H##type; \
|