Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for udenti (0.24 sec)

  1. src/cmd/api/testdata/src/pkg/p1/p1.go

    // license that can be found in the LICENSE file.
    
    package p1
    
    import (
    	ptwo "p2"
    )
    
    const (
    	ConstChase2 = constChase // forward declaration to unexported ident
    	constChase  = AIsLowerA  // forward declaration to exported ident
    
    	// Deprecated: use B.
    	A         = 1
    	a         = 11
    	A64 int64 = 1
    
    	AIsLowerA = a // previously declared
    )
    
    const (
    	ConversionConst = MyInt(5)
    )
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/ast.go

    			c = c[2 : len(c)-2]
    		}
    		pieces = append(pieces, c)
    	}
    	return strings.Join(pieces, "")
    }
    
    func (f *File) validateIdents(x interface{}, context astContext) {
    	if x, ok := x.(*ast.Ident); ok {
    		if f.isMangledName(x.Name) {
    			error_(x.Pos(), "identifier %q may conflict with identifiers generated by cgo", x.Name)
    		}
    	}
    }
    
    // Save various references we are going to need later.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg go/types, method (*Func) Pos() token.Pos
    pkg go/types, method (*Func) Scope() *Scope
    pkg go/types, method (*Func) String() string
    pkg go/types, method (*Func) Type() Type
    pkg go/types, method (*Info) ObjectOf(*ast.Ident) Object
    pkg go/types, method (*Info) TypeOf(ast.Expr) Type
    pkg go/types, method (*Initializer) String() string
    pkg go/types, method (*Interface) Complete() *Interface
    pkg go/types, method (*Interface) Embedded(int) *Named
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  4. api/go1.3.txt

    pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]uint32
    pkg syscall (openbsd-amd64), type Kevent_t struct, Data int64
    pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint64
    pkg syscall (openbsd-amd64), type Mclpool struct, Grown int32
    pkg syscall (openbsd-amd64), type RtMetrics struct, Expire int64
    pkg syscall (openbsd-amd64), type RtMetrics struct, Pad uint32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Filter uint32
    pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Flags uint32
    pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Ident uint64
    pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Pad_cgo_0 [4]uint8
    pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Udata int64
    pkg syscall (netbsd-arm64-cgo), type Mclpool [0]uint8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/lex/input.go

    		value := "1"
    		i := strings.IndexRune(name, '=')
    		if i > 0 {
    			name, value = name[:i], name[i+1:]
    		}
    		tokens := Tokenize(name)
    		if len(tokens) != 1 || tokens[0].ScanToken != scanner.Ident {
    			fmt.Fprintf(os.Stderr, "asm: parsing -D: %q is not a valid identifier name\n", tokens[0])
    			flags.Usage()
    		}
    		macros[name] = &Macro{
    			name:   name,
    			args:   nil,
    			tokens: Tokenize(value),
    		}
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    	abi := obj.ABI0
    	isStatic := false
    	if p.peek() != '<' {
    		return isStatic, abi
    	}
    	p.next()
    	tok := p.peek()
    	if tok == '>' {
    		isStatic = true
    	} else if tok == scanner.Ident {
    		abistr := p.get(scanner.Ident).String()
    		if !p.allowABI {
    			if issueError {
    				p.errorf("ABI selector only permitted when compiling runtime, reference was to %q", name)
    			}
    		} else {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg go/token, const FUNC = 71
    pkg go/token, const GEQ = 46
    pkg go/token, const GO = 72
    pkg go/token, const GOTO = 73
    pkg go/token, const GTR = 41
    pkg go/token, const HighestPrec = 7
    pkg go/token, const IDENT = 4
    pkg go/token, const IF = 74
    pkg go/token, const ILLEGAL = 0
    pkg go/token, const IMAG = 7
    pkg go/token, const IMPORT = 75
    pkg go/token, const INC = 37
    pkg go/token, const INT = 5
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  9. src/cmd/asm/internal/lex/lex.go

    	return ROT <= r && r <= LSH // Order looks backwards because these are negative.
    }
    
    func (t ScanToken) String() string {
    	switch t {
    	case scanner.EOF:
    		return "EOF"
    	case scanner.Ident:
    		return "identifier"
    	case scanner.Int:
    		return "integer constant"
    	case scanner.Float:
    		return "float constant"
    	case scanner.Char:
    		return "rune constant"
    	case scanner.String:
    		return "string constant"
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), type Kevent_t struct, Filter int16
    pkg syscall (freebsd-386-cgo), type Kevent_t struct, Flags uint16
    pkg syscall (freebsd-386-cgo), type Kevent_t struct, Ident uint32
    pkg syscall (freebsd-386-cgo), type Kevent_t struct, Udata *uint8
    pkg syscall (freebsd-386-cgo), type Msghdr struct
    pkg syscall (freebsd-386-cgo), type Msghdr struct, Control *uint8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top