reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
426 const Ty &Init; 427 initializer(const Ty &Val) : Init(Val) {} 432 template <class Ty> initializer<Ty> init(const Ty &Val) { 432 template <class Ty> initializer<Ty> init(const Ty &Val) { 516 DataType Value; 529 const DataType &getValue() const { 534 void setValue(const DataType &V) { 539 bool compare(const DataType &V) const { return Valid && (Value != V); } 542 const OptionValueCopy<DataType> &VC = 552 struct OptionValueBase<DataType, false> : OptionValueCopy<DataType> { 553 using WrapperType = DataType; 565 : OptionValueBase<DataType, std::is_class<DataType>::value> { 565 : OptionValueBase<DataType, std::is_class<DataType>::value> { 568 OptionValue(const DataType &V) { this->setValue(V); } 571 template <class DT> OptionValue<DataType> &operator=(const DT &V) { 571 template <class DT> OptionValue<DataType> &operator=(const DT &V) { 768 OptionInfo(StringRef name, DataType v, StringRef helpStr) 771 OptionValue<DataType> V; 778 using parser_data_type = DataType; 793 bool parse(Option &O, StringRef ArgName, StringRef Arg, DataType &V) { 873 using parser_data_type = DataType; 874 using OptVal = OptionValue<DataType>; 1125 void printOptionDiff(const Option &O, const generic_parser_base &P, const DT &V, 1126 const OptionValue<DT> &Default, size_t GlobalWidth) { 1127 OptionValue<DT> OV = V; 1155 const ValDT &V, const OptionValue<ValDT> &Default, size_t GlobalWidth) { 1155 const ValDT &V, const OptionValue<ValDT> &Default, size_t GlobalWidth) { 1303 DataType Value; 1304 OptionValue<DataType> Default; 1310 template <class T> void setValue(const T &V, bool initial = false) { 1315 DataType &getValue() { return Value; } 1316 DataType getValue() const { return Value; } 1318 const OptionValue<DataType> &getDefault() const { return Default; } 1320 operator DataType() const { return getValue(); } 1323 DataType operator->() const { return Value; } 1332 public opt_storage<DataType, ExternalStorage, 1333 std::is_class<DataType>::value> { 1374 const OptionValue<DataType> &V = this->getDefault(); 1383 void setDefault() override { setDefaultImpl<DataType>(); } 1396 void setInitialValue(const DataType &V) { this->setValue(V, true); } 1400 template <class T> DataType &operator=(const T &Val) {tools/llvm-xray/xray-graph-diff.cpp
112 static cl::opt<GraphRenderer::StatType> GraphDiffEdgeLabel( 115 cl::init(GraphRenderer::StatType::NONE), 136 static cl::opt<GraphRenderer::StatType> GraphDiffEdgeColor( 139 cl::init(GraphRenderer::StatType::NONE), 160 static cl::opt<GraphRenderer::StatType> GraphDiffVertexLabel( 164 cl::init(GraphRenderer::StatType::NONE), 185 static cl::opt<GraphRenderer::StatType> GraphDiffVertexColor( 189 cl::init(GraphRenderer::StatType::NONE),tools/llvm-xray/xray-graph-diff.h
31 using StatType = GraphRenderer::StatType;
tools/llvm-xray/xray-graph.cpp61 static cl::opt<GraphRenderer::StatType> 65 cl::init(GraphRenderer::StatType::NONE), 86 static cl::opt<GraphRenderer::StatType> GraphVertexLabel( 90 cl::init(GraphRenderer::StatType::NONE), 111 static cl::opt<GraphRenderer::StatType> GraphEdgeColorType( 115 cl::init(GraphRenderer::StatType::NONE), 136 static cl::opt<GraphRenderer::StatType> GraphVertexColorType( 140 cl::init(GraphRenderer::StatType::NONE), 334 GraphRenderer::TimeStat::getString(GraphRenderer::StatType T) const { 341 case GraphRenderer::StatType::NONE: 343 case GraphRenderer::StatType::COUNT: 349 static_cast<int>(GraphRenderer::StatType::MIN)]; 357 double GraphRenderer::TimeStat::getDouble(StatType T) const { 363 case GraphRenderer::StatType::NONE: 366 case GraphRenderer::StatType::COUNT: 372 static_cast<int>(GraphRenderer::StatType::MIN)]; 384 void GraphRenderer::exportGraphAsDOT(raw_ostream &OS, StatType ET, StatType EC, 384 void GraphRenderer::exportGraphAsDOT(raw_ostream &OS, StatType ET, StatType EC, 385 StatType VT, StatType VC) { 385 StatType VT, StatType VC) { 388 if (VT != StatType::NONE) 395 if (EC != StatType::NONE) 407 OS << "F" << V.first << " [label=\"" << (VT != StatType::NONE ? "{" : "") 410 if (VT != StatType::NONE) 414 if (VC != StatType::NONE)tools/llvm-xray/xray-graph.h
51 std::string getString(StatType T) const; 52 double getDouble(StatType T) const; 156 void exportGraphAsDOT(raw_ostream &OS, StatType EdgeLabel = StatType::NONE, 156 void exportGraphAsDOT(raw_ostream &OS, StatType EdgeLabel = StatType::NONE, 157 StatType EdgeColor = StatType::NONE, 157 StatType EdgeColor = StatType::NONE, 158 StatType VertexLabel = StatType::NONE, 158 StatType VertexLabel = StatType::NONE, 159 StatType VertexColor = StatType::NONE); 159 StatType VertexColor = StatType::NONE);usr/include/c++/7.4.0/type_traits
215 : public __is_void_helper<typename remove_cv<_Tp>::type>::type 581 : public __or_<is_lvalue_reference<_Tp>, 582 is_rvalue_reference<_Tp>>::type 601 : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>, 601 : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>, 602 is_void<_Tp>>>::type 638 : public __or_<is_object<_Tp>, is_reference<_Tp>>::type 638 : public __or_<is_object<_Tp>, is_reference<_Tp>>::type 762 typename add_rvalue_reference<_Tp>::type declval() noexcept; 1268 typedef decltype(__test<_Tp, _Up>(0)) type; 1274 : public __is_assignable_helper<_Tp, _Up>::type 1554 { typedef _Tp type; }; 1563 { typedef _Tp type; }; 1574 remove_const<typename remove_volatile<_Tp>::type>::type type; 1659 { typedef _Tp&& type; }; 1664 : public __add_rvalue_reference_helper<_Tp>