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

<<21222324252627282930>>

  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
fmt.go 146 var goopnames = []string{
213 func (o Op) String() string {
217 func (o Op) GoString() string {
247 var classnames = []string{
437 case string:
464 var etnames = []string{
492 TSTRING: "STRING",
504 func (et EType) String() string {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
export_test.go 30 func (DummyFrontend) StringData(s string) interface{} {
65 func (DummyFrontend) Line(line int32) string {
70 func (DummyFrontend) Syslook(s string) interface{} {
74 func (d DummyFrontend) Logf(msg string, args ...interface{}) { d.t.Logf(msg, args...) }
77 func (d DummyFrontend) Fatalf(line int32, msg string, args ...interface{}) { d.t.Fatalf(msg, args...) }
78 func (d DummyFrontend) Warnl(line int32, msg string, args ...interface{}) { d.t.Logf(msg, args...) }
103 type DummySym string
105 func (s DummySym) String() string { return string(s)
    [all...]
regalloc.go 143 func (m regMask) String() string {
    [all...]
type.go 38 FieldName(i int) string // name of ith field of the struct
42 String() string
43 SimpleString() string // a coarser generic description of T, e.g. T's underlying type
49 Name string
74 func (t *CompilerType) String() string { return t.Name }
75 func (t *CompilerType) SimpleString() string { return t.Name }
81 func (t *CompilerType) FieldName(i int) string { panic("not implemented") }
107 func (t *TupleType) String() string { return t.first.String() + "," + t.second.String()
    [all...]
type_test.go 17 string bool
24 Name string
35 func (t *TypeImpl) IsString() bool { return t.string }
44 func (t *TypeImpl) String() string { return t.Name }
45 func (t *TypeImpl) SimpleString() string { return t.Name }
51 func (t *TypeImpl) FieldName(i int) string { panic("not implemented") }
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
printer.go 38 func String(n Node) string {
44 return buf.String()
63 //text string // comment text (possibly ""); valid if kind == comment
111 func (p *printer) writeString(s string) {
128 // TODO(gri) provide table of []byte values for all tokens to avoid repeated string conversion
130 func lineComment(text string) bool {
134 func (p *printer) addWhitespace(kind ctrlSymbol, text string) {
253 // _Name implies an immediately following string
255 var s string
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
vcs.go 26 name string
27 cmd string // name of binary to invoke command
29 createCmd []string // commands to download a fresh copy of a repository
30 downloadCmd []string // commands to download updates into an existing repository
34 tagSyncCmd []string // commands to sync to specific tag
35 tagSyncDefault []string // commands to sync to default tag
37 scheme []string
38 pingCmd string
40 remoteRepo func(v *vcsCmd, rootDir string) (remoteRepo string, err error
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
util.go 27 func envOr(key, value string) string {
57 func Getgoextlinkenabled() string {
61 func (p *Prog) Line() string {
65 var armCondCode = []string{
96 func CConv(s uint8) string {
116 func (p *Prog) String() string {
162 return buf.String()
184 func (ctxt *Link) Line(n int) string {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
link.go 43 Name string
44 Extname string
65 File string
66 Dynimplib string
67 Dynimpvers string
75 func (s *Symbol) String() string {
168 Path string
170 Deps []string
187 Libdir []string
    [all...]
main.go 58 flagBuildid = flag.String("buildid", "", "record `id` as Go toolchain build id")
60 flagOutfile = flag.String("o", "", "write output to `file`")
61 flagPluginPath = flag.String("pluginpath", "", "full path name for plugin")
64 flagInstallSuffix = flag.String("installsuffix", "", "set package directory `suffix`")
69 flagFieldTrack = flag.String("k", "", "set field tracking `symbol`")
70 flagLibGCC = flag.String("libgcc", "", "compiler support lib for internal linking; use \"none\" to disable")
71 flagTmpdir = flag.String("tmpdir", "", "use `directory` for temporary files")
73 flagExtld = flag.String("extld", "", "use `linker` when linking in external mode")
74 flagExtldflags = flag.String("extldflags", "", "pass `flags` to external linker")
75 flagExtar = flag.String("extar", "", "archive program for buildmode=c-archive"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
ext_test.go 42 text string
45 func (r ExtInst) String() string {
61 func (ext *ExtDis) Run(cmd ...string) (*bufio.Reader, error) {
96 syntax string,
100 allowedMismatch func(text string, size int, inst *Inst, dec ExtInst) bool,
129 errors = make([]string, 0, 100) // sampled errors, at most cap
189 func writeInst(generate func(func([]byte))) (file string, f *os.File, size int, err error) {
234 func disasm(syntax string, mode int, src []byte) (inst Inst, text string) {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
main.go 28 tags = flag.String("tags", "", "space-separated list of build tags to apply when parsing")
29 tagList = []string{} // exploded version of tags flag; set in main
38 var report = map[string]*triState{
47 var experimental = map[string]bool{}
71 func triStateFlag(name string, value triState, usage string) *triState {
86 func (ts *triState) Set(value string) error {
100 func (ts *triState) String() string {
117 func vet(name string) bool
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
print.go 28 func (errorTest1) Error(...interface{}) string {
58 var s string
164 Printf("d%", 2) // ERROR "missing verb at end of format string in Printf call"
226 Logf("%d", "hi") // ERROR "arg .hi. for printf verb %d of wrong type: string"
229 Errorf(1, "%d", "hi") // ERROR "arg .hi. for printf verb %d of wrong type: string"
231 // Multiple string arguments before variadic args
273 func (ss *someStruct) Log(f func(), s string) {}
292 func Printf(format string, args ...interface{}) {
302 func Logf(format string, args ...interface{}) {
312 func printf(format string, args ...interface{})
    [all...]
  /prebuilts/go/linux-x86/src/debug/macho/
macho.go 65 func (i Cpu) String() string { return stringName(uint32(i), cpuStrings, false) }
66 func (i Cpu) GoString() string { return stringName(uint32(i), cpuStrings, true) }
90 func (i LoadCmd) String() string { return stringName(uint32(i), cmdStrings, false) }
91 func (i LoadCmd) GoString() string { return stringName(uint32(i), cmdStrings, true) }
218 Name string
280 s string
283 func stringName(i uint32, names []intName, goSyntax bool) string {
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1.go 35 Msg string
38 func (e StructuralError) Error() string { return "asn1: structure error: " + e.Msg }
42 Msg string
45 func (e SyntaxError) Error() string { return "asn1: syntax error: " + e.Msg }
152 // BIT STRING
154 // BitString is the structure to use when you want an ASN.1 BIT STRING type. A
155 // bit string is padded up to the nearest byte in memory and the number of
191 // parseBitString parses an ASN.1 bit string from the given byte slice and returns it.
194 err = SyntaxError{"zero length BIT STRING"}
201 err = SyntaxError{"invalid padding bits in BIT STRING"}
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
debug.go 42 func (t tab) String() string {
121 func (deb *debugger) dump(format string, args ...interface{}) {
304 name = deb.string()
330 // string returns the string at the input point.
331 func (deb *debugger) string() string { func
339 return string(b)
395 field[i].Name = deb.string()
    [all...]
gobencdec_test.go 27 s string // not an exported field
36 type ValueGobber string // encodes with a value, decodes with a pointer.
40 type BinaryValueGobber string
44 type TextValueGobber string
88 g.s = string(data)
109 _, err := fmt.Sscanf(string(data), "VALUE=%d", (*int)(g))
118 _, err := fmt.Sscanf(string(data), "VALUE=%d", (*int)(g))
127 _, err := fmt.Sscanf(string(data), "VALUE=%d", (*int)(g))
136 _, err := fmt.Sscanf(string(data), "VALUE=%s", (*string)(v)
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
object.go 25 Name() string // package local object name
28 Id() string // object id (see Id below)
30 // String returns a human-readable string of the object.
31 String() string
46 sameId(pkg *Package, name string) bool
57 func Id(pkg *Package, name string) string {
85 name string
    [all...]
  /prebuilts/go/linux-x86/src/html/template/
context.go 28 func (c context) String() string {
45 func (c context) mangle(templateName string) string {
50 s := templateName + "$htmltemplate_" + c.state.String()
52 s += "_" + c.delim.String()
55 s += "_" + c.urlPart.String()
58 s += "_" + c.jsCtx.String()
61 s += "_" + c.attr.String()
64 s += "_" + c.element.String()
    [all...]
  /prebuilts/go/linux-x86/src/net/
ip.go 260 // String returns the string form of the IP address ip.
266 func (ip IP) String() string {
320 return string(b)
323 func hexString(b []byte) string {
328 return string(s)
331 // ipEmptyString is like ip.String except that it returns
332 // an empty string when ip is unset.
333 func ipEmptyString(ip IP) string {
    [all...]
  /prebuilts/go/linux-x86/src/net/mail/
message.go 38 func (d debugT) Printf(format string, args ...interface{}) {
69 var dateLayouts []string
74 dows := [...]string{"", "Mon, "} // day-of-week
75 days := [...]string{"2", "02"} // day = 1*2DIGIT
76 years := [...]string{"2006", "06"} // year = 4*DIGIT / 2*DIGIT
77 seconds := [...]string{":05", ""} // second
79 zones := [...]string{"-0700", "MST", "-0700 (MST)"} // zone = (("+" / "-") 4DIGIT) / "GMT" / ...
95 // ParseDate parses an RFC 5322 date string.
96 func ParseDate(date string) (time.Time, error) {
107 type Header map[string][]strin
    [all...]
  /prebuilts/go/linux-x86/src/net/url/
url.go 24 Op string
25 URL string
29 func (e *Error) Error() string { return e.Op + " " + e.URL + ": " + e.Err.Error() }
85 type EscapeError string
87 func (e EscapeError) Error() string {
88 return "invalid URL escape " + strconv.Quote(string(e))
91 type InvalidHostError string
93 func (e InvalidHostError) Error() string {
94 return "invalid character " + strconv.Quote(string(e)) + " in host name"
98 // appearing in a URL string, according to RFC 3986
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_plan9.go 18 // ErrorString implements Error's String method by returning itself.
19 type ErrorString string
21 func (e ErrorString) Error() string { return string(e) }
24 func NewError(s string) error { return ErrorString(s) }
34 // A Note is a string describing a process note.
36 type Note string
40 func (n Note) String() string {
41 return string(n
    [all...]
syscall_unix.go 103 func (e Errno) Error() string {
151 func (s Signal) String() string {
213 Name string
298 func SetsockoptString(fd, level, opt int, s string) (err error) {
  /prebuilts/go/linux-x86/src/testing/
benchmark.go 18 var matchBenchmarks = flag.String("test.bench", "", "run only benchmarks matching `regexp`")
31 Name string
323 func (r BenchmarkResult) String() string {
343 func (r BenchmarkResult) MemString() string {
349 func benchmarkName(name string, n int) string {
365 func RunBenchmarks(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark) {
369 func runBenchmarks(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark) bool {
441 results := r.String()
    [all...]

Completed in 1193 milliseconds

<<21222324252627282930>>