Lines Matching refs:Values
75 // PrintOptionValues - Print option values.
76 // With -print-options print the difference between option values and defaults.
77 // With -print-all-options print all option values.
89 /// Literal options are used by some parsers to register special option values.
494 // Non-class option values.
562 // values - For custom data types, allow specifying a group of values together
563 // as the values that go into the mapping that the option handler uses. Note
564 // that the values list must always have a 0 at the end of the list to indicate
571 SmallVector<std::pair<const char *, std::pair<int, const char *>>, 4> Values;
578 Values.push_back(std::make_pair(EnumName, std::make_pair(Val, Desc)));
580 // Process the varargs portion of the values...
584 Values.push_back(std::make_pair(enumName, // Add value to value map
590 for (size_t i = 0, e = Values.size(); i != e; ++i)
591 O.getParser().addLiteralOption(Values[i].first, Values[i].second.first,
592 Values[i].second.second);
598 values(const char *Arg, DataType Val, const char *Desc, ...) {
610 // built-in, uses a mapping table to map specific options to values, which is
634 // indicate how many entries are in Values.
708 // mapping of recognized options to values of some sort. In addition to this,
721 SmallVector<OptionInfo, 8> Values;
728 unsigned getNumOptions() const override { return unsigned(Values.size()); }
729 const char *getOption(unsigned N) const override { return Values[N].Name; }
731 return Values[N].HelpStr;
736 return Values[N].V;
747 for (size_t i = 0, e = Values.size(); i != e; ++i)
748 if (Values[i].Name == ArgVal) {
749 V = Values[i].V.getValue();
760 assert(findOption(Name) == Values.size() && "Option already exists!");
762 Values.push_back(X);
770 assert(N != Values.size() && "Option not found!");
771 Values.erase(Values.begin() + N);
1487 // multi_val - Modifier to set the number of additional values.
1595 // Unimplemented: bits options don't currently store their default values.
1642 // Aliases do not need to print their values.