Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for startScope (0.15 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    					needsParen = true
    				}
    			}
    		}
    		if needsParen {
    			ps.startScope('(')
    		}
    
    		ps.print(a)
    
    		if needsParen {
    			ps.endScope(')')
    		}
    
    		first = false
    	}
    }
    
    // startScope starts a scope. This is used to decide whether we need
    // to parenthesize an expression using > or >>.
    func (ps *printState) startScope(b byte) {
    	ps.scopes++
    	ps.writeByte(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_mips64le.go

    	Len    uint32
    	Name   [0]int8
    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Regs        [102]uint64
    	U_tsize     uint64
    	U_dsize     uint64
    	U_ssize     uint64
    	Start_code  uint64
    	Start_data  uint64
    	Start_stack uint64
    	Signal      int64
    	U_ar0       uint64
    	Magic       uint64
    	U_comm      [32]int8
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. src/syscall/ztypes_linux_mips64.go

    	Len    uint32
    	Name   [0]int8
    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Regs        [102]uint64
    	U_tsize     uint64
    	U_dsize     uint64
    	U_ssize     uint64
    	Start_code  uint64
    	Start_data  uint64
    	Start_stack uint64
    	Signal      int64
    	U_ar0       uint64
    	Magic       uint64
    	U_comm      [32]int8
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. src/syscall/ztypes_linux_mips.go

    	Cookie uint32
    	Len    uint32
    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Regs        [109]uint32
    	U_tsize     uint32
    	U_dsize     uint32
    	U_ssize     uint32
    	Start_code  uint32
    	Start_data  uint32
    	Start_stack uint32
    	Signal      int32
    	U_ar0       *byte
    	Magic       uint32
    	U_comm      [32]int8
    }
    
    type FdSet struct {
    	Bits [32]int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_mipsle.go

    	Cookie uint32
    	Len    uint32
    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Regs        [109]uint32
    	U_tsize     uint32
    	U_dsize     uint32
    	U_ssize     uint32
    	Start_code  uint32
    	Start_data  uint32
    	Start_stack uint32
    	Signal      int32
    	U_ar0       *byte
    	Magic       uint32
    	U_comm      [32]int8
    }
    
    type FdSet struct {
    	Bits [32]int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top