Home | History | Annotate | Download | only in Support

Lines Matching refs:GenericOptionValue

419 struct GenericOptionValue {
420 virtual bool compare(const GenericOptionValue &V) const = 0;
423 ~GenericOptionValue() = default;
424 GenericOptionValue() = default;
425 GenericOptionValue(const GenericOptionValue&) = default;
426 GenericOptionValue &operator=(const GenericOptionValue &) = default;
437 struct OptionValueBase : public GenericOptionValue {
450 bool compare(const GenericOptionValue & /*V*/) const override {
459 template <class DataType> class OptionValueCopy : public GenericOptionValue {
485 bool compare(const GenericOptionValue &V) const override {
647 virtual const GenericOptionValue &getOptionValue(unsigned N) const = 0;
654 void printGenericOptionDiff(const Option &O, const GenericOptionValue &V,
655 const GenericOptionValue &Default,
735 const GenericOptionValue &getOptionValue(unsigned N) const override {