Home | History | Annotate | Download | only in Support

Lines Matching refs:GenericOptionValue

447 struct GenericOptionValue {
448 virtual bool compare(const GenericOptionValue &V) const = 0;
451 GenericOptionValue() = default;
452 GenericOptionValue(const GenericOptionValue&) = default;
453 GenericOptionValue &operator=(const GenericOptionValue &) = default;
454 ~GenericOptionValue() = default;
465 struct OptionValueBase : public GenericOptionValue {
478 bool compare(const GenericOptionValue & /*V*/) const override {
487 template <class DataType> class OptionValueCopy : public GenericOptionValue {
513 bool compare(const GenericOptionValue &V) const override {
670 virtual const GenericOptionValue &getOptionValue(unsigned N) const = 0;
677 void printGenericOptionDiff(const Option &O, const GenericOptionValue &V,
678 const GenericOptionValue &Default,
760 const GenericOptionValue &getOptionValue(unsigned N) const override {