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

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
print.go 17 func (f *Func) String() string {
21 return buf.String()
sparsetreemap.go 179 func (m *SparseTreeMap) String() string {
181 return tree.String()
184 func (e *sparseTreeMapEntry) String() string {
  /prebuilts/go/darwin-x86/src/cmd/nm/
nm.go 24 sortOrder = flag.String("sort", "name", "")
41 func (nflag) Set(value string) error {
48 func (nflag) String() string {
83 func errorf(format string, args ...interface{}) {
88 func nm(file string) {
  /prebuilts/go/darwin-x86/src/cmd/vet/
copylock.go 113 func checkCopyLocksFunc(f *File, name string, recv *ast.FieldList, typ *ast.FuncType) {
177 // String pretty-prints a typePath.
178 func (path typePath) String() string {
186 fmt.Fprint(&buf, path[n-i-1].String())
188 return buf.String()
  /prebuilts/go/darwin-x86/src/go/types/
methodset.go 22 func (s *MethodSet) String() string {
33 return buf.String()
43 func (s *MethodSet) Lookup(pkg *Package, name string) *Selection {
202 type fieldSet map[string]*Var // a nil entry indicates a name collision
226 type methodSet map[string]*Selection // a nil entry indicates a name collision
package.go 14 path string
15 name string
25 func NewPackage(path, name string) *Package {
34 func (pkg *Package) Path() string { return pkg.path }
37 func (pkg *Package) Name() string { return pkg.name }
40 func (pkg *Package) SetName(name string) { pkg.name = name }
66 func (pkg *Package) String() string {
selection.go 108 func (s *Selection) String() string { return SelectionString(s, nil) }
110 // SelectionString returns the string form of s.
119 func SelectionString(s *Selection, qf Qualifier) string {
120 var k string
142 return buf.String()
  /prebuilts/go/darwin-x86/src/image/jpeg/
dct_test.go 183 func (b *block) String() string {
194 return s.String()
  /prebuilts/go/darwin-x86/src/math/big/
decimal.go 160 func (x *decimal) String() string {
185 return string(buf)
ftoa.go 5 // This file implements Float-to-string conversion functions.
17 // Text converts the floating-point number x to a string according
43 func (x *Float) Text(format byte, prec int) string {
48 return string(x.Append(make([]byte, 0, cap), format, prec))
51 // String formats x like x.Text('g', 10).
52 // (String must be called explicitly, Float.Format does not support %s verb.)
53 func (x *Float) String() string {
57 // Append appends to buf the string form of the floating-point number x,
305 // fmtB appends the string of x in the format mantissa "p" exponen
    [all...]
hilbert_test.go 125 func (a *matrix) String() string {
intconv.go 5 // This file implements int-to-string conversion functions.
19 // string copy if the number is negative.
21 // Text returns the string representation of x in the given base.
24 // prefix (such as "0x") is added to the string.
25 func (x *Int) Text(base int) string {
29 return string(x.abs.itoa(x.neg, base))
32 // Append appends the string representation of x, as generated by
41 func (x *Int) String() string {
46 func writeMultiple(s fmt.State, text string, count int)
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
triv.go 39 func (ctr *Counter) String() string {
54 body := buf.String()
72 if f.Value.String() != f.DefValue {
73 fmt.Fprintf(w, "%s = %s [default = %s]\n", f.Name, f.Value.String(), f.DefValue)
75 fmt.Fprintf(w, "%s = %s\n", f.Name, f.Value.String())
121 var webroot = flag.String("root", os.Getenv("HOME"), "web root directory")
  /prebuilts/go/darwin-x86/src/net/
pipe.go 32 func (pipeAddr) Network() string {
36 func (pipeAddr) String() string {
  /prebuilts/go/darwin-x86/src/os/
exec_posix.go 21 func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
84 func (p *ProcessState) String() string {
94 res = "signal: " + status.Signal().String()
96 res = "stop signal: " + status.StopSignal().String()
  /prebuilts/go/darwin-x86/src/sort/
example_wrapper_test.go 14 func (g Grams) String() string { return fmt.Sprintf("%dg", int(g)) }
17 Name string
  /prebuilts/go/darwin-x86/src/text/tabwriter/
tabwriter_test.go 35 func (b *buffer) String() string { return string(b.a) }
37 func write(t *testing.T, testname string, w *Writer, src string) {
47 func verify(t *testing.T, testname string, w *Writer, b *buffer, src, expected string) {
53 res := b.String()
59 func check(t *testing.T, testname string, minwidth, tabwidth, padding int, padchar byte, flags uint, src, expected string) {
    [all...]
  /prebuilts/go/linux-x86/doc/progs/
eff_bytesize.go 23 func (b ByteSize) String() string {
  /prebuilts/go/linux-x86/src/cmd/asm/internal/flags/
flags.go 18 OutputFile = flag.String("o", "", "output file; default foo.o for /a/b/c/foo.s as first argument")
20 TrimPath = flag.String("trimpath", "", "remove prefix from recorded source file paths")
37 type MultiFlag []string
39 func (m *MultiFlag) String() string {
46 func (m *MultiFlag) Set(val string) error {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/arm/
ssa.go 73 func (v shift) String() string {
483 var wantreg string
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
loopreschedchecks.go 32 func (r *rewrite) String() string {
33 s := "\n\tbefore=" + r.before.String() + ", after=" + r.after.String()
187 fmt.Printf("b=%s, rewrite=%s\n", b, r.String())
191 fmt.Printf("b=%s, rewrite=%s\n", b, r.String())
print.go 17 func (f *Func) String() string {
21 return buf.String()
sparsetreemap.go 179 func (m *SparseTreeMap) String() string {
181 return tree.String()
184 func (e *sparseTreeMapEntry) String() string {
  /prebuilts/go/linux-x86/src/cmd/nm/
nm.go 24 sortOrder = flag.String("sort", "name", "")
41 func (nflag) Set(value string) error {
48 func (nflag) String() string {
83 func errorf(format string, args ...interface{}) {
88 func nm(file string) {
  /prebuilts/go/linux-x86/src/cmd/vet/
copylock.go 113 func checkCopyLocksFunc(f *File, name string, recv *ast.FieldList, typ *ast.FuncType) {
177 // String pretty-prints a typePath.
178 func (path typePath) String() string {
186 fmt.Fprint(&buf, path[n-i-1].String())
188 return buf.String()

Completed in 614 milliseconds

1 2 3 4 5 67 8 91011>>