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

/system/tools/hidl/
H A DEnumType.h29 struct EnumValue;
37 const std::vector<EnumValue *> &values() const;
38 void addValue(EnumValue *value);
40 void forEachValueFromRoot(const std::function<void(EnumValue*)> f) const;
134 std::vector<EnumValue *> mValues;
140 struct EnumValue : public LocalIdentifier, DocCommentable { struct in namespace:android
141 EnumValue(const char* name, ConstantExpression* value, const Location& location);
148 void autofill(const EnumType* prevType, EnumValue* prevValue, const ScalarType* type);
162 DISALLOW_COPY_AND_ASSIGN(EnumValue);
H A DEnumType.cpp38 const std::vector<EnumValue *> &EnumType::values() const {
42 void EnumType::forEachValueFromRoot(const std::function<void(EnumValue*)> f) const {
46 for (EnumValue* v : type->values()) {
52 void EnumType::addValue(EnumValue* value) {
59 EnumValue* prevValue = nullptr;
196 for(EnumValue *v : type->values()) {
417 forEachValueFromRoot([&](EnumValue* value) {
444 forEachValueFromRoot([&](EnumValue* value) {
504 forEachValueFromRoot([&](EnumValue* value) {
522 forEachValueFromRoot([&](EnumValue* valu
770 EnumValue::EnumValue(const char* name, ConstantExpression* value, const Location& location) function in class:android::EnumValue
[all...]
/system/media/camera/docs/
H A Dmetadata_model.py32 EnumValue: A class corresponding to a <value> element within an Enum
976 class EnumValue(Node): class in inherits:Node
1066 values: A sequence of EnumValue children.
1075 [ EnumValue(val, self, ids.get(val), val in deprecateds, val in optionals, val in hiddens, \

Completed in 56 milliseconds