Home
last modified time | relevance | path

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

/system/media/camera/docs/
DHidlMetadata.mako135 <% prevValue = None %>\
139 % if prevValue is None:
142 /** ${entry.name} enumeration values added since v${prevValue.hal_major_version}.${prevValue.hal_mi…
146 …case} :${' uint32_t' if prevValue is None else '\n @%d.%d::CameraMetadataEnum%s' % (prevVal…
155 <% prevValue = val %>\
/system/tools/hidl/
DEnumType.cpp67 EnumValue* prevValue = nullptr; in resolveInheritance() local
72 prevValue = type->values().back(); in resolveInheritance()
78 value->autofill(prevType, prevValue, mStorageType->resolveToScalarType()); in resolveInheritance()
80 prevValue = value; in resolveInheritance()
765 void EnumValue::autofill(const EnumType* prevType, EnumValue* prevValue, const ScalarType* type) { in autofill() argument
769 CHECK((prevType == nullptr) == (prevValue == nullptr)); in autofill()
772 if (prevValue == nullptr) { in autofill()
775 std::string description = prevType->fullName() + "." + prevValue->name() + " implicitly"; in autofill()
777 Reference<LocalIdentifier>(prevValue, mLocation), description); in autofill()
DEnumType.h150 void autofill(const EnumType* prevType, EnumValue* prevValue, const ScalarType* type);