Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 174 for decls (0.06 sec)

  1. src/go/doc/reader.go

    	for _, f := range pkg.Files {
    		for _, decl := range f.Decls {
    			if d, ok := decl.(*ast.FuncDecl); ok {
    				r.readFunc(d)
    			}
    		}
    	}
    }
    
    // ----------------------------------------------------------------------------
    // Types
    
    func customizeRecv(f *Func, recvTypeName string, embeddedIsPtr bool, level int) *Func {
    	if f == nil || f.Decl == nil || f.Decl.Recv == nil || len(f.Decl.Recv.List) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/BUILD

            "@tf_runtime//:OpBaseTdFiles",
        ],
    )
    
    gentbl_cc_library(
        name = "runtime_fallback_ops_inc_gen",
        tbl_outs = [
            (
                ["-gen-op-decls"],
                "runtime_fallback_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "runtime_fallback_ops.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	for _, f := range pass.Files {
    		if !strings.HasSuffix(pass.Fset.File(f.Pos()).Name(), "_test.go") {
    			continue
    		}
    		for _, decl := range f.Decls {
    			fn, ok := decl.(*ast.FuncDecl)
    			if !ok || fn.Recv != nil {
    				// Ignore non-functions or functions with receivers.
    				continue
    			}
    			switch {
    			case strings.HasPrefix(fn.Name.Name, "Example"):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    		a.apply(n, "Value", nil, n.Value)
    
    	case *ast.ChanType:
    		a.apply(n, "Value", nil, n.Value)
    
    	// Statements
    	case *ast.BadStmt:
    		// nothing to do
    
    	case *ast.DeclStmt:
    		a.apply(n, "Decl", nil, n.Decl)
    
    	case *ast.EmptyStmt:
    		// nothing to do
    
    	case *ast.LabeledStmt:
    		a.apply(n, "Label", nil, n.Label)
    		a.apply(n, "Stmt", nil, n.Stmt)
    
    	case *ast.ExprStmt:
    		a.apply(n, "X", nil, n.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/BUILD

        ],
    )
    
    gentbl_cc_library(
        name = "passes_inc_gen",
        compatible_with = get_compatible_with_portable(),
        tbl_outs = [
            (
                [
                    "-gen-pass-decls",
                    "-name=OdmlStablehlo",
                ],
                "transforms/passes.h.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "transforms/passes.td",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. src/go/build/read.go

    	if info.parseErr != nil {
    		return nil
    	}
    
    	hasEmbed := false
    	for _, decl := range info.parsed.Decls {
    		d, ok := decl.(*ast.GenDecl)
    		if !ok {
    			continue
    		}
    		for _, dspec := range d.Specs {
    			spec, ok := dspec.(*ast.ImportSpec)
    			if !ok {
    				continue
    			}
    			quoted := spec.Path.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/go/parser/resolver.go

    	pkgScope := ast.NewScope(nil)
    	r := &resolver{
    		handle:   handle,
    		declErr:  declErr,
    		topScope: pkgScope,
    		pkgScope: pkgScope,
    		depth:    1,
    	}
    
    	for _, decl := range file.Decls {
    		ast.Walk(r, decl)
    	}
    
    	r.closeScope()
    	assert(r.topScope == nil, "unbalanced scopes")
    	assert(r.labelScope == nil, "unbalanced label scopes")
    
    	// resolve global identifiers within the same file
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/abi.go

    			pprag := &typecheck.Target.CgoPragmas[i]
    			cgoExports[symName] = append(cgoExports[symName], pprag)
    		}
    	}
    
    	// Apply ABI defs and refs to Funcs and generate wrappers.
    	//
    	// This may generate new decls for the wrappers, but we
    	// specifically *don't* want to visit those, lest we create
    	// wrappers for wrappers.
    	for _, fn := range typecheck.Target.Funcs {
    		nam := fn.Nname
    		if ir.IsBlank(nam) {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	knownFunc := make(map[string]map[string]*asmFunc)
    
    	for _, f := range pass.Files {
    		for _, decl := range f.Decls {
    			if decl, ok := decl.(*ast.FuncDecl); ok && decl.Body == nil {
    				knownFunc[decl.Name.Name] = asmParseDecl(pass, decl)
    			}
    		}
    	}
    
    Files:
    	for _, fname := range sfiles {
    		content, tf, err := analysisutil.ReadFile(pass, fname)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	for _, x := range list {
    		u.node(x)
    	}
    }
    
    func (u *unusedInspector) node(node ast.Node) {
    	switch node := node.(type) {
    	case *ast.File:
    		defer u.scoped()()
    		for _, decl := range node.Decls {
    			u.node(decl)
    		}
    	case *ast.GenDecl:
    		for _, spec := range node.Specs {
    			u.node(spec)
    		}
    	case *ast.ImportSpec:
    		impPath, _ := strconv.Unquote(node.Path.Value)
    		name := path.Base(impPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top