Home
last modified time | relevance | path

Searched defs:GenDecl (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/go/ast/
Dast.go972 GenDecl struct { struct
973 Doc *CommentGroup // associated documentation; or nil
974 TokPos token.Pos // position of Tok
975 Tok token.Token // IMPORT, CONST, TYPE, or VAR
976 Lparen token.Pos // position of '(', if any
977 Specs []Spec
978 Rparen token.Pos // position of ')', if any
994 func (d *GenDecl) Pos() token.Pos { return d.TokPos }
998 func (d *GenDecl) End() token.Pos {
1014 func (*GenDecl) declNode() {}
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/gofmt/
Dsimplify.go156 func isEmpty(f *ast.File, g *ast.GenDecl) bool {
/aosp_15_r20/prebuilts/go/linux-x86/src/go/doc/
Dfilter.go24 func matchDecl(d *ast.GenDecl, f Filter) bool {
Dreader.go832 func sortingName(d *ast.GenDecl) string {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/
Dcopylock.go88 func checkCopyLocksGenDecl(pass *analysis.Pass, gd *ast.GenDecl) {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/tools/go/ast/astutil/
Dimports.go427 func declImports(gen *ast.GenDecl, path string) bool {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/fix/
Dfix.go318 func declImports(gen *ast.GenDecl, path string) bool {
/aosp_15_r20/prebuilts/go/linux-x86/src/go/printer/
Dnodes.go1737 func (p *printer) genDecl(d *ast.GenDecl) {