Home
last modified time | relevance | path

Searched defs:SelectStmt (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/
Dstmt.go430 type SelectStmt struct { struct
431 miniStmt
432 Label *types.Sym
433 Cases []*CommClause
436 Compiled Nodes // compiled form, after walkSelect
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
Dnodes.go429 SelectStmt struct { struct
430 Body []*CommClause
431 Rbrace Pos
432 stmt
/aosp_15_r20/prebuilts/go/linux-x86/src/go/ast/
Dast.go737 SelectStmt struct { struct
738 Select token.Pos // position of "select" keyword
739 Body *BlockStmt // CommClauses only
783 func (s *SelectStmt) Pos() token.Pos { return s.Select }
845 func (s *SelectStmt) End() token.Pos { return s.Body.End() }
869 func (*SelectStmt) stmtNode() {}
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/walk/
Dselect.go15 func walkSelect(sel *ir.SelectStmt) {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/typecheck/
Dstmt.go443 func tcSelect(sel *ir.SelectStmt) {