reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/CommandLine.h
  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) {
  441   Ty &Loc;
  443   LocationClass(Ty &L) : Loc(L) {}
  448 template <class Ty> LocationClass<Ty> location(Ty &L) {
  448 template <class Ty> LocationClass<Ty> location(Ty &L) {
  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) {
 1235   DataType *Location = nullptr; // Where to store the object...
 1236   OptionValue<DataType> Default;
 1247   bool setLocation(Option &O, DataType &L) {
 1255   template <class T> void setValue(const T &V, bool initial = false) {
 1262   DataType &getValue() {
 1266   const DataType &getValue() const {
 1271   operator DataType() const { return this->getValue(); }
 1273   const OptionValue<DataType> &getDefault() const { return Default; }
 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/polly/include/polly/CodeGen/LoopGenerators.h
   35 extern OMPGeneralSchedulingType PollyScheduling;
tools/polly/include/polly/CodeGen/LoopGeneratorsKMP.h
   50   OMPGeneralSchedulingType
   51   getSchedType(int ChunkSize, OMPGeneralSchedulingType Scheduling) const;
tools/polly/lib/CodeGen/LoopGenerators.cpp
   28 OMPGeneralSchedulingType polly::PollyScheduling;
   37 static cl::opt<OMPGeneralSchedulingType, true> XPollyScheduling(
   49     cl::init(OMPGeneralSchedulingType::Runtime), cl::Optional,
tools/polly/lib/CodeGen/LoopGeneratorsGOMP.cpp
   94   if (PollyScheduling != OMPGeneralSchedulingType::Runtime) {
tools/polly/lib/CodeGen/LoopGeneratorsKMP.cpp
  197   case OMPGeneralSchedulingType::Dynamic:
  198   case OMPGeneralSchedulingType::Guided:
  199   case OMPGeneralSchedulingType::Runtime:
  223   case OMPGeneralSchedulingType::StaticChunked:
  224   case OMPGeneralSchedulingType::StaticNonChunked:
  263   if (PollyScheduling == OMPGeneralSchedulingType::StaticChunked) {
  500 OMPGeneralSchedulingType ParallelLoopGeneratorKMP::getSchedType(
  501     int ChunkSize, OMPGeneralSchedulingType Scheduling) const {
  502   if (ChunkSize == 0 && Scheduling == OMPGeneralSchedulingType::StaticChunked)
  503     return OMPGeneralSchedulingType::StaticNonChunked;
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>