HomeSort by relevance Sort by last modified time
    Searched full:badf (Results 1 - 25 of 39) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/cmd/vet/
copylock.go 52 f.Badf(x.Pos(), "assignment copies lock value to %v: %v", f.gofmt(as.Lhs[i]), path)
67 f.Badf(x.Pos(), "variable declaration copies lock value to %v: %v", valueSpec.Names[i].Name, path)
80 f.Badf(x.Pos(), "literal copies lock value from %v: %v", f.gofmt(x), path)
89 f.Badf(x.Pos(), "return copies lock value: %v", path)
104 f.Badf(x.Pos(), "call of %s copies lock value: %v", f.gofmt(ce.Fun), path)
117 f.Badf(expr.Pos(), "%s passes lock by value: %v", name, path)
125 f.Badf(expr.Pos(), "%s passes lock by value: %v", name, path)
171 f.Badf(e.Pos(), "range var %s copies lock: %v", f.gofmt(e), path)
print.go 231 f.Badf(call.Pos(), "no formatting directive in %s call", name)
268 f.Badf(call.Pos(), "wrong number of args for format in %s call: %d needed but %d args", name, expect, numArgs)
309 s.file.Badf(s.call.Pos(), "bad syntax for printf argument index: [%s]", s.format[start:end])
314 s.file.Badf(s.call.Pos(), "bad syntax for printf argument index: %s", err)
390 f.Badf(call.Pos(), "missing verb at end of format string in %s call", name)
483 f.Badf(call.Pos(), "unrecognized printf verb %q", state.verb)
488 f.Badf(call.Pos(), "unrecognized printf flag for verb %q: %q", state.verb, flag)
506 f.Badf(call.Pos(), "arg %s for * in printf format not of type int", f.gofmt(arg))
519 f.Badf(call.Pos(), "arg %s in printf call is a function value, not a function call", f.gofmt(arg))
527 f.Badf(call.Pos(), "arg %s for printf verb %%%c of wrong type: %s", f.gofmt(arg), state.verb, typeString
    [all...]
unused.go 79 f.Badf(call.Lparen, "result of (%s).%s call not used",
89 f.Badf(call.Lparen, "result of %v call not used", qname)
asmdecl.go 171 f.Badf(token.NoPos, "%s:%d: [%s] %s: RET without writing to %d-byte ret+%d(FP)", f.name, line, arch, fnName, v.size, v.off)
179 badf := func(format string, args ...interface{}) {
180 f.Badf(token.NoPos, "%s:%d: [%s] %s: %s", f.name, lineno, arch, fnName, fmt.Sprintf(format, args...))
243 badf("wrong argument size %d; expected $...-%d", size, fn.size)
254 badf("function %s missing Go declaration", fnName)
300 badf("%s should be %s+%d(FP)", m[1], v.name, off-localSize)
305 badf("use of %s points beyond argument frame", m[1])
308 badf("use of %s to access argument frame", m[1])
320 badf("use of unnamed argument %s; offset %d is %s+%d(FP)", m[1], off, v.name, v.off)
322 badf("use of unnamed argument %s", m[1]
    [all...]
assign.go 46 f.Badf(stmt.Pos(), "self-assignment of %s to %s", re, le)
structtag.go 43 f.Badf(field.Pos(), "unable to read struct tag %s", field.Tag.Value)
49 f.Badf(field.Pos(), "struct field tag %#q not compatible with reflect.StructTag.Get: %s", raw, err)
87 f.Badf(field.Pos(), "struct field %s repeats %s tag %q also at %s", name, key, val, f.loc(pos))
107 f.Badf(field.Pos(), "struct field %s has %s tag but is not exported", field.Names[0].Name, enc)
shadow.go 122 f.Badf(expr.Pos(), "invalid AST: short variable declaration of non-identifier")
144 f.Badf(expr.Pos(), "invalid AST: short variable declaration of non-identifier")
191 f.Badf(spec.Pos(), "invalid AST: var GenDecl not ValueSpec")
235 f.Badf(ident.Pos(), "internal error: no range for %q", ident.Name)
244 f.Badf(ident.Pos(), "declaration of %q shadows declaration at %s", obj.Name(), f.loc(shadowed.Pos()))
composite.go 63 f.Badf(cl.Pos(), "%s composite literal uses unkeyed fields", typeName)
nilfunc.go 60 f.Badf(e.Pos(), "comparison of function %v %v nil is always %v", obj.Name(), e.Op, e.Op == token.NEQ)
shift.go 86 f.Badf(node.Pos(), "%s %stoo small for shift of %d", ident, msg, amt)
bool.go 83 f.Badf(e.Pos(), "redundant %s: %s %s %s", op.name, efmt, op.tok, efmt)
130 f.Badf(e.Pos(), "suspect %s: %s %s %s", op.name, efmt, op.tok, prev)
cgo.go 48 f.Badf(arg.Pos(), "possibly passing Go type with embedded pointer to C")
57 f.Badf(arg.Pos(), "possibly passing Go type with embedded pointer to C")
  /prebuilts/go/linux-x86/src/cmd/vet/
copylock.go 52 f.Badf(x.Pos(), "assignment copies lock value to %v: %v", f.gofmt(as.Lhs[i]), path)
67 f.Badf(x.Pos(), "variable declaration copies lock value to %v: %v", valueSpec.Names[i].Name, path)
80 f.Badf(x.Pos(), "literal copies lock value from %v: %v", f.gofmt(x), path)
89 f.Badf(x.Pos(), "return copies lock value: %v", path)
104 f.Badf(x.Pos(), "call of %s copies lock value: %v", f.gofmt(ce.Fun), path)
117 f.Badf(expr.Pos(), "%s passes lock by value: %v", name, path)
125 f.Badf(expr.Pos(), "%s passes lock by value: %v", name, path)
171 f.Badf(e.Pos(), "range var %s copies lock: %v", f.gofmt(e), path)
print.go 231 f.Badf(call.Pos(), "no formatting directive in %s call", name)
268 f.Badf(call.Pos(), "wrong number of args for format in %s call: %d needed but %d args", name, expect, numArgs)
309 s.file.Badf(s.call.Pos(), "bad syntax for printf argument index: [%s]", s.format[start:end])
314 s.file.Badf(s.call.Pos(), "bad syntax for printf argument index: %s", err)
390 f.Badf(call.Pos(), "missing verb at end of format string in %s call", name)
483 f.Badf(call.Pos(), "unrecognized printf verb %q", state.verb)
488 f.Badf(call.Pos(), "unrecognized printf flag for verb %q: %q", state.verb, flag)
506 f.Badf(call.Pos(), "arg %s for * in printf format not of type int", f.gofmt(arg))
519 f.Badf(call.Pos(), "arg %s in printf call is a function value, not a function call", f.gofmt(arg))
527 f.Badf(call.Pos(), "arg %s for printf verb %%%c of wrong type: %s", f.gofmt(arg), state.verb, typeString
    [all...]
unused.go 79 f.Badf(call.Lparen, "result of (%s).%s call not used",
89 f.Badf(call.Lparen, "result of %v call not used", qname)
asmdecl.go 171 f.Badf(token.NoPos, "%s:%d: [%s] %s: RET without writing to %d-byte ret+%d(FP)", f.name, line, arch, fnName, v.size, v.off)
179 badf := func(format string, args ...interface{}) {
180 f.Badf(token.NoPos, "%s:%d: [%s] %s: %s", f.name, lineno, arch, fnName, fmt.Sprintf(format, args...))
243 badf("wrong argument size %d; expected $...-%d", size, fn.size)
254 badf("function %s missing Go declaration", fnName)
300 badf("%s should be %s+%d(FP)", m[1], v.name, off-localSize)
305 badf("use of %s points beyond argument frame", m[1])
308 badf("use of %s to access argument frame", m[1])
320 badf("use of unnamed argument %s; offset %d is %s+%d(FP)", m[1], off, v.name, v.off)
322 badf("use of unnamed argument %s", m[1]
    [all...]
assign.go 46 f.Badf(stmt.Pos(), "self-assignment of %s to %s", re, le)
structtag.go 43 f.Badf(field.Pos(), "unable to read struct tag %s", field.Tag.Value)
49 f.Badf(field.Pos(), "struct field tag %#q not compatible with reflect.StructTag.Get: %s", raw, err)
87 f.Badf(field.Pos(), "struct field %s repeats %s tag %q also at %s", name, key, val, f.loc(pos))
107 f.Badf(field.Pos(), "struct field %s has %s tag but is not exported", field.Names[0].Name, enc)
shadow.go 122 f.Badf(expr.Pos(), "invalid AST: short variable declaration of non-identifier")
144 f.Badf(expr.Pos(), "invalid AST: short variable declaration of non-identifier")
191 f.Badf(spec.Pos(), "invalid AST: var GenDecl not ValueSpec")
235 f.Badf(ident.Pos(), "internal error: no range for %q", ident.Name)
244 f.Badf(ident.Pos(), "declaration of %q shadows declaration at %s", obj.Name(), f.loc(shadowed.Pos()))
composite.go 63 f.Badf(cl.Pos(), "%s composite literal uses unkeyed fields", typeName)
nilfunc.go 60 f.Badf(e.Pos(), "comparison of function %v %v nil is always %v", obj.Name(), e.Op, e.Op == token.NEQ)
shift.go 86 f.Badf(node.Pos(), "%s %stoo small for shift of %d", ident, msg, amt)
bool.go 83 f.Badf(e.Pos(), "redundant %s: %s %s %s", op.name, efmt, op.tok, efmt)
130 f.Badf(e.Pos(), "suspect %s: %s %s %s", op.name, efmt, op.tok, prev)
cgo.go 48 f.Badf(arg.Pos(), "possibly passing Go type with embedded pointer to C")
57 f.Badf(arg.Pos(), "possibly passing Go type with embedded pointer to C")
  /external/mdnsresponder/mDNSShared/
PlatformCommon.c 119 if (hostname && GetConfigOption(buf, "hostname", f) && !MakeDomainNameFromDNSNameString(hostname, buf)) goto badf;
120 if (domain && GetConfigOption(buf, "zone", f) && !MakeDomainNameFromDNSNameString(domain, buf)) goto badf;
142 badf:

Completed in 1093 milliseconds

1 2