Searched refs:mValues (Results 1 – 4 of 4) sorted by relevance
/system/tools/hidl/ |
D | Annotation.cpp | 72 : AnnotationParam(name), mValues(values) {} in StringAnnotationParam() 75 return *mValues; in getValues() 79 CHECK_EQ(mValues->size(), 1u) << mName << " requires one value but has multiple"; in getSingleValue() 80 return mValues->at(0); in getSingleValue() 85 : AnnotationParam(name), mValues(values) {} in ConstantExpressionAnnotationParam() 89 for (const auto* value : *mValues) { in getValues() 96 CHECK_EQ(mValues->size(), 1u) << mName << " requires one value but has multiple"; in getSingleValue() 97 return mValues->at(0)->value(); in getSingleValue() 103 ret.insert(ret.end(), mValues->begin(), mValues->end()); in getConstantExpressions()
|
D | Annotation.h | 62 std::vector<std::string>* const mValues; 75 std::vector<ConstantExpression*>* const mValues;
|
D | EnumType.cpp | 32 : Scope(localName, fullName, location, parent), mValues(), mStorageType(storageType) {} in EnumType() 39 return mValues; in values() 62 mValues.push_back(value); in addValue() 77 for (auto* value : mValues) { in resolveInheritance() 92 for (const auto* value : mValues) { in getConstantExpressions() 116 for (const auto* enumValue : type->mValues) { in validateUniqueNames() 122 for (const auto* value : mValues) { in validateUniqueNames() 289 elementCount += type->mValues.size(); in emitIteratorDeclaration() 298 for (const auto* enumValue : type->mValues) { in emitIteratorDeclaration()
|
D | EnumType.h | 137 std::vector<EnumValue *> mValues; member
|