Searched refs:EnumValue (Results 1 – 7 of 7) sorted by relevance
/system/tools/hidl/ |
D | EnumType.h | 29 struct EnumValue; 37 const std::vector<EnumValue *> &values() const; 38 void addValue(EnumValue *value); 40 void forEachValueFromRoot(const std::function<void(EnumValue*)> f) const; 137 std::vector<EnumValue *> mValues; 143 struct EnumValue : public LocalIdentifier, DocCommentable { struct 144 EnumValue(const char* name, ConstantExpression* value, const Location& location); 150 void autofill(const EnumType* prevType, EnumValue* prevValue, const ScalarType* type); 164 DISALLOW_COPY_AND_ASSIGN(EnumValue); argument
|
D | EnumType.cpp | 38 const std::vector<EnumValue *> &EnumType::values() const { in values() 42 void EnumType::forEachValueFromRoot(const std::function<void(EnumValue*)> f) const { in forEachValueFromRoot() 46 for (EnumValue* v : type->values()) { in forEachValueFromRoot() 60 void EnumType::addValue(EnumValue* value) { in addValue() 67 EnumValue* prevValue = nullptr; in resolveInheritance() 204 for(EnumValue *v : type->values()) { in lookupIdentifier() 414 forEachValueFromRoot([&](EnumValue* value) { in emitPackageTypeHeaderDefinitions() 441 forEachValueFromRoot([&](EnumValue* value) { in emitPackageTypeHeaderDefinitions() 492 forEachValueFromRoot([&](EnumValue* value) { in emitJavaTypeDeclarations() 509 forEachValueFromRoot([&](EnumValue* value) { in emitJavaTypeDeclarations() [all …]
|
D | AST.h | 37 struct EnumValue; 71 EnumValue* lookupEnumValue(const FQName& fqName, std::string* errorMsg, Scope* scope);
|
D | AST.cpp | 495 EnumValue* enumValue = lookupEnumValue(fqName, &errorMsg, scope); in lookupLocalIdentifier() 504 EnumValue* AST::lookupEnumValue(const FQName& fqName, std::string* errorMsg, Scope* scope) { in lookupEnumValue() 522 EnumValue *v = static_cast<EnumValue *>(enumType->lookupIdentifier(enumValueName)); in lookupEnumValue()
|
D | hidl-gen_y.yy | 322 android::EnumValue *enumValue; 324 std::vector<android::EnumValue *> *enumValues; 1054 $$ = new EnumValue($1 /* name */, nullptr /* value */, convertYYLoc(@$)); 1058 $$ = new EnumValue($1 /* name */, $3 /* value */, convertYYLoc(@$));
|
/system/media/camera/docs/ |
D | camera_metadata_tag_info.mako | 109 find_values = lambda x: isinstance(x, metadata_model.EnumValue)
|
D | metadata_model.py | 976 class EnumValue(Node): class 1075 [ EnumValue(val, self, ids.get(val), val in deprecateds, val in optionals, val in hiddens, \
|