Home | History | Annotate | Download | only in Support

Lines Matching refs:GenericOptionValue

449 struct GenericOptionValue {
450 virtual bool compare(const GenericOptionValue &V) const = 0;
453 GenericOptionValue() = default;
454 GenericOptionValue(const GenericOptionValue&) = default;
455 GenericOptionValue &operator=(const GenericOptionValue &) = default;
456 ~GenericOptionValue() = default;
467 struct OptionValueBase : public GenericOptionValue {
480 bool compare(const GenericOptionValue & /*V*/) const override {
489 template <class DataType> class OptionValueCopy : public GenericOptionValue {
515 bool compare(const GenericOptionValue &V) const override {
672 virtual const GenericOptionValue &getOptionValue(unsigned N) const = 0;
679 void printGenericOptionDiff(const Option &O, const GenericOptionValue &V,
680 const GenericOptionValue &Default,
762 const GenericOptionValue &getOptionValue(unsigned N) const override {