Home
last modified time | relevance | path

Searched defs:constDecl (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/go/types/
Ddecl.go371 constDecl struct { struct
372 spec *ast.ValueSpec
373 iota int
374 typ ast.Expr
375 init []ast.Expr
376 inherited bool
384 func (d constDecl) node() ast.Node { return d.spec }
439 func (check *Checker) constDecl(obj *Const, typ, init ast.Expr, inherited bool) { func
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/
Ddecl.go364 func (check *Checker) constDecl(obj *Const, typ, init syntax.Expr, inherited bool) { func
Dresolver.go52 func (check *Checker) arity(pos syntax.Pos, names []*syntax.Name, inits []syntax.Expr, constDecl, i… argument
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
Dparser.go574 func (p *parser) constDecl(group *Group) Decl { func