Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for structfield2 (0.22 sec)

  1. src/cmd/cgo/internal/testerrors/ptr_test.go

    	},
    	{
    		// Test that converting multiple struct field
    		// addresses to unsafe.Pointer still just checks those
    		// fields. Issue #25941.
    		name:    "structfield2",
    		c:       `void f34(void* p, int r, void* s) {}`,
    		imports: []string{"unsafe"},
    		support: `type S34 struct { a [8]byte; p *int; b int64; }`,
    		body:    `s := &S34{p: new(int)}; C.f34(unsafe.Pointer(&s.a), 32, unsafe.Pointer(&s.b))`,
    		fail:    false,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. src/reflect/visiblefields_test.go

    package reflect_test
    
    import (
    	. "reflect"
    	"strings"
    	"testing"
    )
    
    type structField struct {
    	name  string
    	index []int
    }
    
    var fieldsTests = []struct {
    	testName string
    	val      any
    	expect   []structField
    }{{
    	testName: "SimpleStruct",
    	val: struct {
    		A int
    		B string
    		C bool
    	}{},
    	expect: []structField{{
    		name:  "A",
    		index: []int{0},
    	}, {
    		name:  "B",
    		index: []int{1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 08 13:44:41 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. schema/relationship.go

    		ownFieldsMap[joinFieldName] = ownField
    		fieldsMap[joinFieldName] = ownField
    		joinTableFields = append(joinTableFields, reflect.StructField{
    			Name:    joinFieldName,
    			PkgPath: ownField.StructField.PkgPath,
    			Type:    ownField.StructField.Type,
    			Tag: removeSettingFromTag(appendSettingFromTag(ownField.StructField.Tag, "primaryKey"),
    				"column", "autoincrement", "index", "unique", "uniqueindex"),
    		})
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/reflect/badlinkname.go

    //go:linkname badlinkname_rtype_Field reflect.(*rtype).Field
    func badlinkname_rtype_Field(*rtype, int) StructField
    
    //go:linkname badlinkname_rtype_FieldAlign reflect.(*rtype).FieldAlign
    func badlinkname_rtype_FieldAlign(*rtype) int
    
    //go:linkname badlinkname_rtype_FieldByIndex reflect.(*rtype).FieldByIndex
    func badlinkname_rtype_FieldByIndex(*rtype, []int) StructField
    
    //go:linkname badlinkname_rtype_FieldByName reflect.(*rtype).FieldByName
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. schema/field.go

    				}
    				// index is negative means is pointer
    				if field.FieldType.Kind() == reflect.Struct {
    					ef.StructField.Index = append([]int{fieldStruct.Index[0]}, ef.StructField.Index...)
    				} else {
    					ef.StructField.Index = append([]int{-fieldStruct.Index[0] - 1}, ef.StructField.Index...)
    				}
    
    				if prefix, ok := field.TagSettings["EMBEDDEDPREFIX"]; ok && ef.DBName != "" {
    					ef.DBName = prefix + ef.DBName
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. src/reflect/visiblefields.go

    func VisibleFields(t Type) []StructField {
    	if t == nil {
    		panic("reflect: VisibleFields(nil)")
    	}
    	if t.Kind() != Struct {
    		panic("reflect.VisibleFields of non-struct type")
    	}
    	w := &visibleFieldsWalker{
    		byName:   make(map[string]int),
    		visiting: make(map[Type]bool),
    		fields:   make([]StructField, 0, t.NumField()),
    		index:    make([]int, 0, 2),
    	}
    	w.walk(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue49110.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "reflect"
    
    func main() {
    	_ = reflect.StructOf([]reflect.StructField{
    		{Name: "_", PkgPath: "main", Type: reflect.TypeOf(int(0))},
    		{Name: "_", PkgPath: "main", Type: reflect.TypeOf(int(0))},
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 27 21:35:48 UTC 2021
    - 389 bytes
    - Viewed (0)
  8. src/go/internal/gccgoimporter/importer_test.go

    	{pkgpath: "v1reflect", name: "Type", want: "type Type interface{Align() int; AssignableTo(u Type) bool; Bits() int; ChanDir() ChanDir; Elem() Type; Field(i int) StructField; FieldAlign() int; FieldByIndex(index []int) StructField; FieldByName(name string) (StructField, bool); FieldByNameFunc(match func(string) bool) (StructField, bool); Implements(u Type) bool; In(i int) Type; IsVariadic() bool; Key() Type; Kind() Kind; Len() int; Method(int) Method; MethodByName(string) (Method, bool); Name()...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/testdata/deadcode/structof_funcof.go

    import "reflect"
    
    type S int
    
    func (s S) M() { println("S.M") }
    
    func (s S) N() { println("S.N") }
    
    type T float64
    
    func (t T) F(s S) {}
    
    func useStructOf() {
    	t := reflect.StructOf([]reflect.StructField{
    		{
    			Name: "X",
    			Type: reflect.TypeOf(int(0)),
    		},
    	})
    	println(t.Name())
    }
    
    func useFuncOf() {
    	t := reflect.FuncOf(
    		[]reflect.Type{reflect.TypeOf(int(0))},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:07:26 UTC 2023
    - 994 bytes
    - Viewed (0)
  10. src/reflect/type.go

    	panic("reflect: StructOf does not support methods of embedded interfaces")
    }
    
    // runtimeStructField takes a StructField value passed to StructOf and
    // returns both the corresponding internal representation, of type
    // structField, and the pkgpath value to use for this field.
    func runtimeStructField(field StructField) (structField, string) {
    	if field.Anonymous && field.PkgPath != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top