Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for paramTypes (0.2 sec)

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

      // remains alive and unchanged throughout the current test.
      static void SetParam(const ParamType* parameter) {
        parameter_ = parameter;
      }
    
      // Static value used for accessing parameter during a test lifetime.
      static const ParamType* parameter_;
    
      // TestClass must be a subclass of WithParamInterface<T> and Test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    ValuesIn(ForwardIterator begin, ForwardIterator end) {
      typedef typename ::testing::internal::IteratorTraits<ForwardIterator>
          ::value_type ParamType;
      return internal::ParamGenerator<ParamType>(
          new internal::ValuesInIteratorRangeGenerator<ParamType>(begin, end));
    }
    
    template <typename T, size_t N>
    internal::ParamGenerator<T> ValuesIn(const T (&array)[N]) {
      return ValuesIn(array, array + N);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // remains alive and unchanged throughout the current test.
      static void SetParam(const ParamType* parameter) {
        parameter_ = parameter;
      }
    
      // Static value used for accessing parameter during a test lifetime.
      static const ParamType* parameter_;
    
      // TestClass must be a subclass of WithParamInterface<T> and Test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    ValuesIn(ForwardIterator begin, ForwardIterator end) {
      typedef typename ::testing::internal::IteratorTraits<ForwardIterator>
          ::value_type ParamType;
      return internal::ParamGenerator<ParamType>(
          new internal::ValuesInIteratorRangeGenerator<ParamType>(begin, end));
    }
    
    template <typename T, size_t N>
    internal::ParamGenerator<T> ValuesIn(const T (&array)[N]) {
      return ValuesIn(array, array + N);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    // There is no guarantee about matching memory layout.
    func (c *typeConv) FuncType(dtype *dwarf.FuncType, pos token.Pos) *FuncType {
    	p := make([]*Type, len(dtype.ParamType))
    	gp := make([]*ast.Field, len(dtype.ParamType))
    	for i, f := range dtype.ParamType {
    		// gcc's DWARF generator outputs a single DotDotDotType parameter for
    		// function pointers that specify no parameters (e.g. void
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    		// maybe I should flesh out the fakeConn.Exec
    		// implementation so this properly fails.
    		// t.Errorf("expected error inserting nil name with Exec")
    	}
    
    	paramtype := reflect.TypeOf(spec.rows[0].nullParam)
    	bindVal := reflect.New(paramtype).Interface()
    
    	for i := 0; i < 5; i++ {
    		id := i + 1
    		if err := db.QueryRow("SELECT|t|nullf|id=?", id).Scan(bindVal); err != nil {
    			t.Errorf("id=%d Scan: %v", id, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Field.Class", Field, 5},
    		{"Field.Val", Field, 0},
    		{"FloatType", Type, 0},
    		{"FloatType.BasicType", Field, 0},
    		{"FuncType", Type, 0},
    		{"FuncType.CommonType", Field, 0},
    		{"FuncType.ParamType", Field, 0},
    		{"FuncType.ReturnType", Field, 0},
    		{"IntType", Type, 0},
    		{"IntType.BasicType", Field, 0},
    		{"LineEntry", Type, 5},
    		{"LineEntry.Address", Field, 5},
    		{"LineEntry.BasicBlock", Field, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg debug/dwarf, type FloatType struct
    pkg debug/dwarf, type FloatType struct, embedded BasicType
    pkg debug/dwarf, type FuncType struct
    pkg debug/dwarf, type FuncType struct, ParamType []Type
    pkg debug/dwarf, type FuncType struct, ReturnType Type
    pkg debug/dwarf, type FuncType struct, embedded CommonType
    pkg debug/dwarf, type IntType struct
    pkg debug/dwarf, type IntType struct, embedded BasicType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top