Home
last modified time | relevance | path

Searched defs:CommClause (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/
Dstmt.go204 type CommClause struct { struct
205 miniStmt
206 Comm Node // communication case
207 Body Nodes
439 func NewSelectStmt(pos src.XPos, cases []*CommClause) *SelectStmt {
Dnode_gen.go1739 func copyCommClauses(list []*CommClause) []*CommClause {
1747 func doCommClauses(list []*CommClause, do func(Node) bool) bool {
1755 func editCommClauses(list []*CommClause, edit func(Node) Node) {
/aosp_15_r20/prebuilts/go/linux-x86/src/go/ast/
Dast.go729 CommClause struct { struct
730 Case token.Pos // position of "case" or "default" keyword
731 Comm Stmt // send or receive statement; nil means default case
732 Colon token.Pos // position of ":"
733 Body []Stmt // statement list; or nil
782 func (s *CommClause) Pos() token.Pos { return s.Case }
839 func (s *CommClause) End() token.Pos {
868 func (*CommClause) stmtNode() {}
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
Dnodes.go451 CommClause struct { struct
452 Comm SimpleStmt // send or receive stmt; nil means default clause
453 Body []Stmt
454 Colon Pos
455 node
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/walk/
Dselect.go33 func walkSelectCases(cases []*ir.CommClause) []ir.Node {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/types2/
Dreturn.go177 func hasBreakCommList(list []*syntax.CommClause, label string, implicit bool) bool {
Dstmt.go138 func (check *Checker) multipleSelectDefaults(list []*syntax.CommClause) {