Searched defs:poser (Results 1 – 5 of 5) sorted by relevance
/prebuilts/go/linux-x86/src/errors/ |
D | wrap_test.go | 72 type poser struct { struct 73 msg string 74 f func(error) bool 79 func (p *poser) Error() string { return p.msg } 80 func (p *poser) Is(err error) bool { return p.f(err) } 81 func (p *poser) As(err any) bool {
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/ |
D | errors.go | 215 type poser interface { interface 219 func (check *Checker) error(at poser, code Code, msg string) { 225 func (check *Checker) errorf(at poser, code Code, format string, args ...any) { 231 func (check *Checker) softErrorf(at poser, code Code, format string, args ...any) { 238 func (check *Checker) versionErrorf(at poser, v goVersion, format string, args ...any) { 246 func atPos(at poser) syntax.Pos {
|
D | version.go | 55 func (check *Checker) allowVersion(at poser, v goVersion) bool { 71 func (check *Checker) verifyVersionf(at poser, v goVersion, format string, args ...interface{}) boo…
|
D | assignments.go | 351 func (check *Checker) returnError(at poser, lhs []*Var, rhs []*operand) { 509 func (check *Checker) shortVarDecl(pos poser, lhs, rhs []syntax.Expr) {
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/noder/ |
D | posmap.go | 22 type poser interface{ Pos() syntax.Pos } interface
|