Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ParamGeneratorInterface (0.3 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      scoped_ptr<ParamIteratorInterface<T> > impl_;
    };
    
    // ParamGeneratorInterface<T> is the binary interface to access generators
    // defined in other translation units.
    template <typename T>
    class ParamGeneratorInterface {
     public:
      typedef T ParamType;
    
      virtual ~ParamGeneratorInterface() {}
    
      // Generator interface definition
      virtual ParamIteratorInterface<T>* Begin() const = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      scoped_ptr<ParamIteratorInterface<T> > impl_;
    };
    
    // ParamGeneratorInterface<T> is the binary interface to access generators
    // defined in other translation units.
    template <typename T>
    class ParamGeneratorInterface {
     public:
      typedef T ParamType;
    
      virtual ~ParamGeneratorInterface() {}
    
      // Generator interface definition
      virtual ParamIteratorInterface<T>* Begin() const = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // by the argument generators.
    //
    $range i 2..maxtuple
    $for i [[
    $range j 1..i
    $range k 2..i
    
    template <$for j, [[typename T$j]]>
    class CartesianProductGenerator$i
        : public ParamGeneratorInterface< ::std::tr1::tuple<$for j, [[T$j]]> > {
     public:
      typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType;
    
      CartesianProductGenerator$i($for j, [[const ParamGenerator<T$j>& g$j]])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // by the argument generators.
    //
    $range i 2..maxtuple
    $for i [[
    $range j 1..i
    $range k 2..i
    
    template <$for j, [[typename T$j]]>
    class CartesianProductGenerator$i
        : public ParamGeneratorInterface< ::std::tr1::tuple<$for j, [[T$j]]> > {
     public:
      typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType;
    
      CartesianProductGenerator$i($for j, [[const ParamGenerator<T$j>& g$j]])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    //
    // Generates values from the Cartesian product of values produced
    // by the argument generators.
    //
    template <typename T1, typename T2>
    class CartesianProductGenerator2
        : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2> > {
     public:
      typedef ::std::tr1::tuple<T1, T2> ParamType;
    
      CartesianProductGenerator2(const ParamGenerator<T1>& g1,
          const ParamGenerator<T2>& g2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    //
    // Generates values from the Cartesian product of values produced
    // by the argument generators.
    //
    template <typename T1, typename T2>
    class CartesianProductGenerator2
        : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2> > {
     public:
      typedef ::std::tr1::tuple<T1, T2> ParamType;
    
      CartesianProductGenerator2(const ParamGenerator<T1>& g1,
          const ParamGenerator<T2>& g2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
Back to top