Searched defs:BaseType (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/libs/vr/libpdx/
H A Dvariant_tests.cpp15 struct BaseType { struct in namespace:__anon1761
16 BaseType(int value) : value(value) {} function in struct:__anon1761::BaseType
20 struct DerivedType : BaseType {
21 DerivedType(int value) : BaseType{value} {};
973 std::unique_ptr<BaseType> u(std::make_unique<BaseType>(20));
/frameworks/native/libs/vr/libvrflinger/
H A Dhwc_types.h107 using BaseType = EnumType;
110 using ValueType = typename UnderlyingType<BaseType>::Type;
121 // Implicit conversion from BaseType.
122 Wrapper(BaseType value) : value(static_cast<ValueType>(value)) {}
128 // Implicit conversion to BaseType.
129 operator BaseType() const { return static_cast<BaseType>(value); }
139 // Converts to string using HWC2 stringification of BaseType.
141 return HWC2::to_string(static_cast<BaseType>(value));
146 bool operator!=(BaseType other_valu
[all...]
/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.cpp353 const clang::Type *BaseType = RefRSArr->getType().getTypePtr(); local
354 slangAssert(BaseType->isArrayType());
356 int NumArrayElements = ArrayDim(BaseType);
358 BaseType = BaseType->getArrayElementTypeNoTypeQual();
463 C.getPointerType(BaseType->getCanonicalTypeInternal()),
472 BaseType->getCanonicalTypeInternal(),
477 DataType DT = RSExportPrimitiveType::GetRSSpecificType(BaseType);
480 if (BaseType->isArrayType()) {
560 const clang::Type *BaseType local
[all...]

Completed in 1957 milliseconds