Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for scoped_ptr (1.71 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        // pointer in the wrapping iterator's operator->().
        // value_ needs to be mutable to be accessed in Current().
        // Use of scoped_ptr helps manage cached value's lifetime,
        // which is bound by the lifespan of the iterator itself.
        mutable scoped_ptr<const T> value_;
      };  // class ValuesInIteratorRangeGenerator::Iterator
    
      // No implementation - assignment is unsupported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        // pointer in the wrapping iterator's operator->().
        // value_ needs to be mutable to be accessed in Current().
        // Use of scoped_ptr helps manage cached value's lifetime,
        // which is bound by the lifespan of the iterator itself.
        mutable scoped_ptr<const T> value_;
      };  // class ValuesInIteratorRangeGenerator::Iterator
    
      // No implementation - assignment is unsupported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // returns 'condition'.
    GTEST_API_ bool IsTrue(bool condition);
    
    // Defines scoped_ptr.
    
    // This implementation of scoped_ptr is PARTIAL - it only contains
    // enough stuff to satisfy Google Test's need.
    template <typename T>
    class scoped_ptr {
     public:
      typedef T element_type;
    
      explicit scoped_ptr(T* p = NULL) : ptr_(p) {}
      ~scoped_ptr() { reset(); }
    
      T& operator*() const { return *ptr_; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // returns 'condition'.
    GTEST_API_ bool IsTrue(bool condition);
    
    // Defines scoped_ptr.
    
    // This implementation of scoped_ptr is PARTIAL - it only contains
    // enough stuff to satisfy Google Test's need.
    template <typename T>
    class scoped_ptr {
     public:
      typedef T element_type;
    
      explicit scoped_ptr(T* p = NULL) : ptr_(p) {}
      ~scoped_ptr() { reset(); }
    
      T& operator*() const { return *ptr_; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

        // we need this using statement.
        using ::operator <<;
        *ss_ << value;
      }
    #endif  // GTEST_OS_SYMBIAN
    
      // We'll hold the text streamed to this object here.
      const internal::scoped_ptr< ::std::stringstream> ss_;
    
      // We declare (but don't implement) this to prevent the compiler
      // from implementing the assignment operator.
      void operator=(const Message&);
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

        // we need this using statement.
        using ::operator <<;
        *ss_ << value;
      }
    #endif  // GTEST_OS_SYMBIAN
    
      // We'll hold the text streamed to this object here.
      const internal::scoped_ptr< ::std::stringstream> ss_;
    
      // We declare (but don't implement) this to prevent the compiler
      // from implementing the assignment operator.
      void operator=(const Message&);
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

            __FILE__, __LINE__, &gtest_dt)) { \
          goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \
        } \
        if (gtest_dt != NULL) { \
          ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \
              gtest_dt_ptr(gtest_dt); \
          switch (gtest_dt->AssumeRole()) { \
            case ::testing::internal::DeathTest::OVERSEE_TEST: \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

            __FILE__, __LINE__, &gtest_dt)) { \
          goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \
        } \
        if (gtest_dt != NULL) { \
          ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \
              gtest_dt_ptr(gtest_dt); \
          switch (gtest_dt->AssumeRole()) { \
            case ::testing::internal::DeathTest::OVERSEE_TEST: \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Name of the parameter type, or NULL if this is not a typed or a
      // type-parameterized test.
      const internal::scoped_ptr<const ::std::string> type_param_;
      // Text representation of the value parameter, or NULL if this is not a
      // value-parameterized test.
      const internal::scoped_ptr<const ::std::string> value_param_;
      const internal::TypeId fixture_class_id_;   // ID of the test fixture class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Name of the parameter type, or NULL if this is not a typed or a
      // type-parameterized test.
      const internal::scoped_ptr<const ::std::string> type_param_;
      // Text representation of the value parameter, or NULL if this is not a
      // value-parameterized test.
      const internal::scoped_ptr<const ::std::string> value_param_;
      const internal::TypeId fixture_class_id_;   // ID of the test fixture class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top