|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/Support/CommandLine.h 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) {
include/llvm/Support/YAMLTraits.h 313 using Signature_enumeration = void (*)(class IO&, T&);
322 (sizeof(test<ScalarEnumerationTraits<T>>(nullptr)) == 1);
329 using Signature_bitset = void (*)(class IO&, T&);
337 static bool const value = (sizeof(test<ScalarBitSetTraits<T>>(nullptr)) == 1);
344 using Signature_input = StringRef (*)(StringRef, void*, T&);
345 using Signature_output = void (*)(const T&, void*, raw_ostream&);
357 (sizeof(test<ScalarTraits<T>>(nullptr, nullptr, nullptr)) == 1);
364 using Signature_input = StringRef (*)(StringRef, void *, T &);
365 using Signature_output = void (*)(const T &, void *, raw_ostream &);
375 (sizeof(test<BlockScalarTraits<T>>(nullptr, nullptr)) == 1);
380 using Signature_input = StringRef (*)(StringRef, StringRef, void *, T &);
381 using Signature_output = void (*)(const T &, void *, raw_ostream &,
383 using Signature_mustQuote = QuotingType (*)(const T &, StringRef);
393 (sizeof(test<TaggedScalarTraits<T>>(nullptr, nullptr, nullptr)) == 1);
412 using Signature_mapping = void (*)(class IO &, T &);
419 static bool const value = (sizeof(test<MappingTraits<T>>(nullptr)) == 1);
438 using Signature_validate = StringRef (*)(class IO &, T &);
445 static bool const value = (sizeof(test<MappingTraits<T>>(nullptr)) == 1);
452 using Signature_size = size_t (*)(class IO&, T&);
460 static bool const value = (sizeof(test<SequenceTraits<T>>(nullptr)) == 1);
467 using Signature_input = void (*)(IO &io, StringRef key, T &v);
476 (sizeof(test<CustomMappingTraits<T>>(nullptr)) == 1);
516 using Signature_size = size_t (*)(class IO &, T &);
524 static bool const value = (sizeof(test<DocumentListTraits<T>>(nullptr))==1);
528 using Signature_getKind = NodeKind (*)(const T &);
535 static bool const value = (sizeof(test<PolymorphicTraits<T>>(nullptr)) == 1);
793 void enumCase(T &Val, const char* Str, const T ConstVal) {
793 void enumCase(T &Val, const char* Str, const T ConstVal) {
801 void enumCase(T &Val, const char* Str, const uint32_t ConstVal) {
849 template <typename T> void mapRequired(const char *Key, T &Val) {
941 void processKey(const char *Key, T &Val, bool Required, Context &Ctx) {
968 typename std::enable_if<has_ScalarEnumerationTraits<T>::value, void>::type
969 yamlize(IO &io, T &Val, bool, EmptyContext &Ctx) {
971 ScalarEnumerationTraits<T>::enumeration(io, Val);
tools/llvm-exegesis/lib/Analysis.cpp 352 const InstructionBenchmark::ModeE Mode = Clustering.getPoints()[0].Mode;
tools/llvm-exegesis/lib/BenchmarkResult.cpp 236 exegesis::InstructionBenchmark::ModeE &Value) {
tools/llvm-exegesis/lib/BenchmarkResult.h 61 ModeE Mode;
tools/llvm-exegesis/lib/BenchmarkRunner.cpp 29 InstructionBenchmark::ModeE Mode)
tools/llvm-exegesis/lib/BenchmarkRunner.h 37 InstructionBenchmark::ModeE Mode);
73 const InstructionBenchmark::ModeE Mode;
tools/llvm-exegesis/lib/Clustering.cpp 362 InstructionBenchmark::ModeE Mode) const {
tools/llvm-exegesis/lib/Clustering.h 159 bool validate(InstructionBenchmark::ModeE Mode) const;
tools/llvm-exegesis/lib/Latency.cpp 173 InstructionBenchmark::ModeE Mode)
tools/llvm-exegesis/lib/Latency.h 38 InstructionBenchmark::ModeE Mode);
tools/llvm-exegesis/lib/SchedClassResolution.cpp 258 InstructionBenchmark::ModeE Mode, const MCSubtargetInfo &STI,
tools/llvm-exegesis/lib/SchedClassResolution.h 48 getAsPoint(InstructionBenchmark::ModeE Mode, const MCSubtargetInfo &STI,
tools/llvm-exegesis/lib/Target.cpp 40 InstructionBenchmark::ModeE Mode, const LLVMState &State,
55 ExegesisTarget::createBenchmarkRunner(InstructionBenchmark::ModeE Mode,
80 const LLVMState &State, InstructionBenchmark::ModeE Mode) const {
tools/llvm-exegesis/lib/Target.h 120 createSnippetGenerator(InstructionBenchmark::ModeE Mode,
125 createBenchmarkRunner(InstructionBenchmark::ModeE Mode,
152 const LLVMState &State, InstructionBenchmark::ModeE Mode) const;
tools/llvm-exegesis/llvm-exegesis.cpp 71 static cl::opt<exegesis::InstructionBenchmark::ModeE> BenchmarkMode(
usr/include/c++/7.4.0/bits/move.h 72 constexpr _Tp&&
83 constexpr _Tp&&
usr/include/c++/7.4.0/bits/unique_ptr.h 824 make_unique(_Args&&... __args)
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;
1633 { typedef _Tp type; };
1659 { typedef _Tp&& type; };
1664 : public __add_rvalue_reference_helper<_Tp>
utils/unittest/googletest/include/gtest/gtest-printers.h 223 void DefaultPrintNonContainerTo(const T& value, ::std::ostream* os) {
276 static ::std::string Format(const ToPrint& value) {
351 const T1& value, const T2& /* other_operand */) {
351 const T1& value, const T2& /* other_operand */) {
352 return FormatForComparison<T1, T2>::Format(value);
352 return FormatForComparison<T1, T2>::Format(value);
366 void UniversalPrint(const T& value, ::std::ostream* os);
373 const C& container, ::std::ostream* os) {
439 const T& value, ::std::ostream* os) {
455 void PrintTo(const T& value, ::std::ostream* os) {
478 DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
699 static void Print(const T& value, ::std::ostream* os) {
784 static void Print(const T& value, ::std::ostream* os) {
856 typedef T T1;
983 internal::UniversalTersePrinter<T>::Print(value, &ss);
utils/unittest/googletest/include/gtest/gtest.h 1377 const T1& lhs, const T2& rhs) {
1377 const T1& lhs, const T2& rhs) {
1389 const T1& lhs,
1390 const T2& rhs) {
1419 const T1& lhs,
1420 const T2& rhs) {
utils/unittest/googletest/include/gtest/internal/custom/raw-ostream.h 35 auto printable(const T &V) -> decltype(StreamSwitch<T>::printable(V)) {
35 auto printable(const T &V) -> decltype(StreamSwitch<T>::printable(V)) {
37 return StreamSwitch<T>::printable(V);
54 const T& V;
55 friend std::ostream &operator<<(std::ostream &S, const RawStreamProxy<T> &V) {
69 static const RawStreamProxy<T> printable(const T &V) { return {V}; }
69 static const RawStreamProxy<T> printable(const T &V) { return {V}; }
utils/unittest/googletest/include/gtest/internal/gtest-internal.h 94 ::std::string PrintToString(const T& value);