HomeSort by relevance Sort by last modified time
    Searched defs:String (Results 226 - 250 of 1088) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
flag.go 14 func Flagfn2(string, string, func(string, string)) { panic("flag") }
16 func Flagcount(name, usage string, val *int) {
20 func Flagint32(name, usage string, val *int32) {
24 func Flagint64(name, usage string, val *int64) {
28 func Flagstr(name, usage string, val *string) {
32 func Flagfn0(name, usage string, f func())
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
config.go 35 func (mode *BuildMode) Set(s string) error {
105 func (mode *BuildMode) String() string {
134 func (mode *LinkMode) Set(s string) error {
148 func (mode *LinkMode) String() string {
162 func mustLinkExternal(ctxt *Link) (res bool, reason string) {
  /prebuilts/go/darwin-x86/src/cmd/vet/all/
main.go 30 flagPlatforms = flag.String("p", "", "platform(s) to use e.g. linux/amd64,darwin/386")
35 var cmdGoPath string
79 pp = append(pp, parsePlatform(string(line)))
93 func parsePlatform(s string) platform {
101 type whitelist map[string]int
104 func (w whitelist) load(goos string, goarch string) {
119 filenames := []string{
166 os string
167 arch string
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/driver/
types.go 60 func (boolType) String() string { return "Bool" }
66 case string:
73 b, err := strconv.ParseBool(string(s))
122 case reflect.String:
123 i, err := strconv.Atoi(rv.String())
132 // String is a ValueConverter that converts its input to a string.
133 // If the value is already a string or []byte, it's unchanged.
134 // If the value is of another type, conversion to string is don
    [all...]
  /prebuilts/go/darwin-x86/src/fmt/
stringer_test.go 27 type TS string
29 func (v TI) String() string { return Sprintf("I: %d", int(v)) }
30 func (v TI8) String() string { return Sprintf("I8: %d", int8(v)) }
31 func (v TI16) String() string { return Sprintf("I16: %d", int16(v)) }
32 func (v TI32) String() string { return Sprintf("I32: %d", int32(v)) }
33 func (v TI64) String() string { return Sprintf("I64: %d", int64(v))
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
scope.go 21 Objects map[string]*Object
27 return &Scope{outer, make(map[string]*Object, n)}
34 func (s *Scope) Lookup(name string) *Object {
51 func (s *Scope) String() string {
61 return buf.String()
78 Name string // declared name
85 func NewObj(kind ObjKind, name string) *Object {
150 var objKindStrings = [...]string{
160 func (kind ObjKind) String() string { return objKindStrings[kind]
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
operand.go 31 var operandModeString = [...]string{
68 // Operand string formats
96 func operandString(x *operand, qf Qualifier) string {
99 var expr string
109 expr = x.val.String()
139 if s := x.val.String(); s != expr {
160 return buf.String()
163 func (x *operand) String() string {
168 func (x *operand) setConst(tok token.Token, lit string) {
    [all...]
scope.go 28 elems map[string]Object // lazily allocated
30 comment string // for debugging only
35 func NewScope(parent *Scope, pos, end token.Pos, comment string) *Scope {
51 func (s *Scope) Names() []string {
52 names := make([]string, len(s.elems))
70 func (s *Scope) Lookup(name string) Object {
84 func (s *Scope) LookupParent(name string, pos token.Pos) (*Scope, Object) {
104 s.elems = make(map[string]Object)
154 // WriteTo writes a string representation of the scope to w,
185 // String returns a string representation of the scope, for debugging
    [all...]
  /prebuilts/go/darwin-x86/src/io/
pipe_test.go 34 } else if n != 12 || string(buf[0:12]) != "hello, world" {
154 func (p pipeTest) String() string {
300 var result string
305 result = string(buf[0:n])
  /prebuilts/go/darwin-x86/src/net/http/
cookie.go 21 Name string
22 Value string
24 Path string // optional
25 Domain string // optional
27 RawExpires string // for reading cookies only
35 Raw string
36 Unparsed []string // Raw text of unparsed attribute-value pairs
133 if v := cookie.String(); v != "" {
138 // String returns the serialization of the cookie for use in a Cookie
141 // If c is nil or c.Name is invalid, the empty string is returned
    [all...]
http.go 31 name string
34 func (k *contextKey) String() string { return "net/http context value " + k.name }
36 // Given a string of the form "host", "host:port", or "[ipv6::address]:port",
37 // return true if the string includes a port.
38 func hasPort(s string) bool { return strings.LastIndex(s, ":") > strings.LastIndex(s, "]") }
42 func removeEmptyPort(host string) string {
53 func isASCII(s string) bool {
62 func hexEscapeNonASCII(s string) string
    [all...]
  /prebuilts/go/darwin-x86/src/net/
iprawsock.go 33 Zone string // IPv6 scoped addressing zone
37 func (a *IPAddr) Network() string { return "ip" }
39 func (a *IPAddr) String() string {
70 func ResolveIPAddr(net, addr string) (*IPAddr, error) {
197 func DialIP(netProto string, laddr, raddr *IPAddr) (*IPConn, error) {
209 func ListenIP(netProto string, laddr *IPAddr) (*IPConn, error) {
udpsock.go 25 Zone string // IPv6 scoped addressing zone
29 func (a *UDPAddr) Network() string { return "udp" }
31 func (a *UDPAddr) String() string {
65 func ResolveUDPAddr(net, addr string) (*UDPAddr, error) {
190 func DialUDP(net string, laddr, raddr *UDPAddr) (*UDPConn, error) {
213 func ListenUDP(net string, laddr *UDPAddr) (*UDPConn, error) {
240 func ListenMulticastUDP(network string, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) {
  /prebuilts/go/darwin-x86/src/os/
exec_plan9.go 22 func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
41 func (p *Process) writeProcFile(file string, data string) error {
55 if e := p.writeProcFile("note", sig.String()); e != nil {
132 func (p *ProcessState) String() string {
  /prebuilts/go/darwin-x86/src/strconv/
decimal.go 22 func (a *decimal) String() string {
58 return string(buf[0:w])
168 // when the string prefix is "625" through "999", and one fewer digit
169 // if the string prefix is "000" through "624".
175 cutoff string // minus one digit if original < a.
256 func prefixIsLessThan(b []byte, s string) bool {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
route_test.go 16 func (m *RouteMessage) String() string {
20 func (m *InterfaceMessage) String() string {
30 func (m *InterfaceAddrMessage) String() string {
40 func (m *InterfaceMulticastAddrMessage) String() string {
44 func (m *InterfaceAnnounceMessage) String() string {
    [all...]
  /prebuilts/go/darwin-x86/test/
fibo.go 175 func (x nat) String() string {
177 s := new(big.Int).SetBits(x).String()
225 want string
244 got := fibo(test.n, half, opt).String()
typeswitch.go 17 String
36 var m = make(map[string]int)
38 func assert(b bool, s string) {
53 case String:
78 case string:
79 assert(x == "hello" && i == String, "string")
86 case map[string]int:
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15528.go 22 func (x *RWS) String() string { return "rws" }
30 s string
41 {map[string]string{"here": "there"}, "map[string]string map[here:there]"},
52 func (i Int) String() string { return fmt.Sprintf("Int=%d", i) }
63 s string
    [all...]
  /prebuilts/go/darwin-x86/test/interface/
convert.go 12 String() string
15 String() string
20 type T string
22 func (t T) String() string {
23 return string(t)
29 type U string
31 func (u U) String() string
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
lex.go 37 func (t ScanToken) String() string {
49 case scanner.String:
50 return "string constant"
52 return "raw string constant"
75 func NewLexer(name string, ctxt *obj.Link) TokenReader {
101 // Text returns the original string representation of the token.
102 Text() string
104 File() string
110 SetPos(line int, file string)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
block.go 105 func (b *Block) String() string {
110 func (b *Block) LongString() string {
111 s := b.Kind.String()
121 s += " " + c.b.String()
198 func (b *Block) Logf(msg string, args ...interface{}) { b.Func.Logf(msg, args...) }
200 func (b *Block) Fatalf(msg string, args ...interface{}) { b.Func.Fatalf(msg, args...) }
sparsetree.go 28 func (s *SparseTreeNode) String() string {
73 // treestructure provides a string description of the dominator
76 func (t SparseTree) treestructure(b *Block) string {
79 func (t SparseTree) treestructure1(b *Block, i int) string {
80 s := "\n" + strings.Repeat("\t", i) + b.String() + "->["
85 s = s + e.b.String()
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/
rulegen.go 55 rule string
56 loc string // file name & line number
59 func (r Rule) String() string {
64 func (r Rule) parse() (match, cond, result string) {
87 blockrules := map[string][]Rule{}
88 oprules := map[string][]Rule{}
99 // Remove comments. Note that this isn't string safe, so
143 var ops []string
235 genMatch0(w, arch, s[1], "v", map[string]struct{}{}, false, rule.loc
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
flag.go 14 func Flagfn2(string, string, func(string, string)) { panic("flag") }
16 func Flagcount(name, usage string, val *int) {
20 func Flagint32(name, usage string, val *int32) {
24 func Flagint64(name, usage string, val *int64) {
28 func Flagstr(name, usage string, val *string) {
32 func Flagfn0(name, usage string, f func())
    [all...]

Completed in 1507 milliseconds

1 2 3 4 5 6 7 8 91011>>