Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LookupFunc (0.09 sec)

  1. src/debug/gosym/pclntab_test.go

    	skipIfNotELF(t)
    
    	tab := getTable(t)
    	if tab.go12line != nil {
    		// aline's don't exist in the Go 1.2 table.
    		t.Skip("not relevant to Go 1.2 symbol table")
    	}
    
    	// Find the sym package
    	pkg := tab.LookupFunc("debug/gosym.TestLineFromAline").Obj
    	if pkg == nil {
    		t.Fatalf("nil pkg")
    	}
    
    	// Walk every absolute line and ensure that we hit every
    	// source line monotonically
    	lastline := make(map[string]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 17:17:44 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	flags qcInfo // quick check flags
    	index uint16
    }
    
    // functions dispatchable per form
    type lookupFunc func(b input, i int) Properties
    
    // formInfo holds Form-specific functions and tables.
    type formInfo struct {
    	form                     Form
    	composing, compatibility bool // form type
    	info                     lookupFunc
    	nextMain                 iterFunc
    }
    
    var formTable = []*formInfo{{
    	form:          NFC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	flags qcInfo // quick check flags
    	index uint16
    }
    
    // functions dispatchable per form
    type lookupFunc func(b input, i int) Properties
    
    // formInfo holds Form-specific functions and tables.
    type formInfo struct {
    	form                     Form
    	composing, compatibility bool // form type
    	info                     lookupFunc
    	nextMain                 iterFunc
    }
    
    var formTable = []*formInfo{{
    	form:          NFC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top