Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isWrapper (0.45 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    			return KindPrintf
    		} else {
    			return KindPrint
    		}
    	}
    
    	return r.funcs[fn]
    }
    
    // isWrapper is a fact indicating that a function is a print or printf wrapper.
    type isWrapper struct{ Kind Kind }
    
    func (f *isWrapper) AFact() {}
    
    func (f *isWrapper) String() string {
    	switch f.Kind {
    	case KindPrintf:
    		return "printfWrapper"
    	case KindPrint:
    		return "printWrapper"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    // to this instance (location, frame base, etc).
    func PutConcreteFunc(ctxt Context, s *FnState, isWrapper bool) error {
    	if logDwarf {
    		ctxt.Logf("PutConcreteFunc(%v)\n", s.Info)
    	}
    	abbrev := DW_ABRV_FUNCTION_CONCRETE
    	if isWrapper {
    		abbrev = DW_ABRV_WRAPPER_CONCRETE
    	}
    	Uleb128put(ctxt, s.Info, int64(abbrev))
    
    	// Abstract origin.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    package.
    
    An Analyzer that uses facts must declare their types:
    
    	var Analyzer = &analysis.Analyzer{
    		Name:      "printf",
    		FactTypes: []analysis.Fact{new(isWrapper)},
    		...
    	}
    
    	type isWrapper struct{} // => *types.Func f “is a printf wrapper”
    
    The driver program ensures that facts for a pass’s dependencies are
    generated before analyzing the package and is responsible for propagating
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    sci.eg science science-fiction.museum science.museum scienceandhistory.museum scienceandindustry.museum sciencecenter.museum sciencecenters.museum sciencehistory.museum sciences.museum sciencesnaturelles.museum scientist.aero scot scotland.museum scrapper-site.net scrapping.cc scrysec.com sd sd.cn sd.us sdn.gov.pl sdscloud.pl se se.eu.org se.gov.br se.leg.br se.net seaport.museum search seat sebastopol.ua sec.ps secaas.hk secret.jp secure security securitytactics.com seek seg.br seidat.net seihi.nagasaki.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top