Home
last modified time | relevance | path

Searched refs:OptionValue (Results 1 – 4 of 4) sorted by relevance

/external/llvm/include/llvm/Support/
DCommandLine.h369 template <class DataType> struct OptionValue;
376 typedef OptionValue<DataType> WrapperType;
445 struct OptionValue final
447 OptionValue() = default;
449 OptionValue(const DataType &V) { this->setValue(V); }
451 template <class DT> OptionValue<DataType> &operator=(const DT &V) {
460 struct OptionValue<cl::boolOrDefault> final
464 OptionValue() {}
466 OptionValue(const cl::boolOrDefault &V) { this->setValue(V); }
467 OptionValue<cl::boolOrDefault> &operator=(const cl::boolOrDefault &V) {
[all …]
/external/webrtc/webrtc/p2p/base/
Drelayport.h35 typedef std::pair<rtc::Socket::Option, int> OptionValue; typedef
54 const std::vector<OptionValue>& options() const { return options_; } in options()
112 std::vector<OptionValue> options_;
Drelayport.cc372 options_.push_back(OptionValue(opt, value)); in SetOption()
377 std::vector<OptionValue>::iterator it; in GetOption()
/external/llvm/lib/Support/
DCommandLine.cpp69 void OptionValue<boolOrDefault>::anchor() {} in anchor()
70 void OptionValue<std::string>::anchor() {} in anchor()
1393 void parser<T>::printOptionDiff(const Option &O, T V, OptionValue<T> D, \
1422 OptionValue<std::string> D, in PRINT_OPT_DIFF()