Searched refs:OptionValue (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | CommandLine.h | 451 template <class DataType> struct OptionValue; 458 typedef OptionValue<DataType> WrapperType; 527 struct OptionValue final 529 OptionValue() = default; 531 OptionValue(const DataType &V) { this->setValue(V); } 534 template <class DT> OptionValue<DataType> &operator=(const DT &V) { 543 struct OptionValue<cl::boolOrDefault> final 547 OptionValue() = default; 549 OptionValue(const cl::boolOrDefault &V) { this->setValue(V); } 551 OptionValue<cl::boolOrDefault> &operator=(const cl::boolOrDefault &V) { [all …]
|
/external/llvm/include/llvm/Support/ |
D | CommandLine.h | 432 template <class DataType> struct OptionValue; 439 typedef OptionValue<DataType> WrapperType; 508 struct OptionValue final 510 OptionValue() = default; 512 OptionValue(const DataType &V) { this->setValue(V); } 514 template <class DT> OptionValue<DataType> &operator=(const DT &V) { 523 struct OptionValue<cl::boolOrDefault> final 527 OptionValue() {} 529 OptionValue(const cl::boolOrDefault &V) { this->setValue(V); } 530 OptionValue<cl::boolOrDefault> &operator=(const cl::boolOrDefault &V) { [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | CommandLine.h | 331 template<class DataType> struct OptionValue; 338 typedef OptionValue<DataType> WrapperType; 390 struct OptionValue : OptionValueBase<DataType, is_class<DataType>::value> { 391 OptionValue() {} 393 OptionValue(const DataType& V) { 398 OptionValue<DataType> &operator=(const DT& V) { 407 struct OptionValue<cl::boolOrDefault> : OptionValueCopy<cl::boolOrDefault> { 410 OptionValue() {} 412 OptionValue(const cl::boolOrDefault& V) { 415 OptionValue<cl::boolOrDefault> &operator=(const cl::boolOrDefault& V) { [all …]
|
/external/webrtc/webrtc/p2p/base/ |
D | relayport.h | 35 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_;
|
D | relayport.cc | 372 options_.push_back(OptionValue(opt, value)); in SetOption() 377 std::vector<OptionValue>::iterator it; in GetOption()
|
/external/llvm/lib/Support/ |
D | CommandLine.cpp | 70 void OptionValue<boolOrDefault>::anchor() {} in anchor() 71 void OptionValue<std::string>::anchor() {} in anchor() 1617 void parser<T>::printOptionDiff(const Option &O, T V, OptionValue<T> D, \ 1646 const OptionValue<std::string> &D, in PRINT_OPT_DIFF()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | CommandLine.cpp | 84 void OptionValue<boolOrDefault>::anchor() {} in anchor() 85 void OptionValue<std::string>::anchor() {} in anchor() 1642 void parser<T>::printOptionDiff(const Option &O, T V, OptionValue<T> D, \ 1671 const OptionValue<std::string> &D, in PRINT_OPT_DIFF()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | CommandLine.cpp | 1143 printOptionDiff(const Option &O, T V, OptionValue<T> D, \ 1171 printOptionDiff(const Option &O, StringRef V, OptionValue<std::string> D, in PRINT_OPT_DIFF()
|