Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 294 for idents (0.16 sec)

  1. src/go/printer/printer_test.go

    }
    
    type visitor chan *ast.Ident
    
    func (v visitor) Visit(n ast.Node) (w ast.Visitor) {
    	if ident, ok := n.(*ast.Ident); ok {
    		v <- ident
    	}
    	return v
    }
    
    // idents is an iterator that returns all idents in f via the result channel.
    func idents(f *ast.File) <-chan *ast.Ident {
    	v := make(visitor)
    	go func() {
    		ast.Walk(v, f)
    		close(v)
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/go/types/call.go

    	// can only appear in qualified identifiers which are mapped to
    	// selector expressions.
    	if ident, ok := e.X.(*ast.Ident); ok {
    		obj := check.lookup(ident.Name)
    		if pname, _ := obj.(*PkgName); pname != nil {
    			assert(pname.pkg == check.pkg)
    			check.recordUse(ident, pname)
    			pname.used = true
    			pkg := pname.imported
    
    			var exp Object
    			funcMode := value
    			if pkg.cgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. src/go/types/stmt.go

    			if lhs == nil {
    				continue
    			}
    
    			// determine lhs variable
    			var obj *Var
    			if ident, _ := lhs.(*identType); ident != nil {
    				// declare new variable
    				name := identName(ident)
    				obj = NewVar(ident.Pos(), check.pkg, name, nil)
    				check.recordDef(ident, obj)
    				// _ variables don't count as new variables
    				if name != "_" {
    					vars = append(vars, obj)
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                            BuildOperationRecord record = children.remove();
    
                            stringBuilder.setLength(0);
    
                            int indents = stack.size() - 1;
    
                            for (int i = 0; i < indents; ++i) {
                                stringBuilder.append("  ");
                            }
    
                            if (!record.children.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

                    return true;
                }
            }
            return false;
        }
    
        /**
         * Indents every line of {@code text} by {@code indent}. Empty lines
         * and lines that only contain whitespace are not indented.
         */
        public static String indent(String text, String indent) {
            StringBuilder builder = new StringBuilder();
            String[] lines = text.split("\n");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/go/types/generate_test.go

    				return false
    			}
    		}
    		return true
    	})
    }
    
    // asIdent returns x as *ast.Ident if it is an identifier with the given name.
    func asIdent(x ast.Node, name string) *ast.Ident {
    	if ident, _ := x.(*ast.Ident); ident != nil && ident.Name == name {
    		return ident
    	}
    	return nil
    }
    
    // isIdent reports whether x is an identifier with the given name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. src/go/types/resolver.go

    // and updates check.objMap. The object must not be a function or method.
    func (check *Checker) declarePkgObj(ident *ast.Ident, obj Object, d *declInfo) {
    	assert(ident.Name == obj.Name())
    
    	// spec: "A package-scope or file-scope identifier with name init
    	// may only be declared to be a function with this (func()) signature."
    	if ident.Name == "init" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. settings.gradle.kts

        private class NodeWriter(private val writer: PrintWriter, private val indent: String) {
            fun println() {
                writer.println()
            }
    
            fun node(node: String) {
                writer.print(indent)
                writer.println(node)
            }
    
            fun node(node: String, builder: NodeWriter.() -> Unit) {
                writer.print(indent)
                writer.println(node)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    			return false
    		}
    		if n.End() > pos {
    			return n.Pos() <= pos
    		}
    		ident, ok := n.(*ast.Ident)
    		if !ok || ident.Name == "_" {
    			return true
    		}
    		obj := info.Defs[ident]
    		if obj == nil || obj.Type() == nil {
    			return true
    		}
    		if _, ok := obj.(*types.TypeName); ok {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/debug/buildinfo/buildinfo.go

    	// a format-specific function to load segment and section headers.
    	ident := make([]byte, 16)
    	if n, err := r.ReadAt(ident, 0); n < len(ident) || err != nil {
    		return "", "", errUnrecognizedFormat
    	}
    
    	var x exe
    	switch {
    	case bytes.HasPrefix(ident, []byte("\x7FELF")):
    		f, err := elf.NewFile(r)
    		if err != nil {
    			return "", "", errUnrecognizedFormat
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top