Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for scoped_ptr (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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