Home
last modified time | relevance | path

Searched defs:SendStmt (Results 1 – 25 of 53) sorted by relevance

123

/dports/lang/gomacro/gomacro-2.7-304-g2f4dc7c/fast/
H A Dchannel.go520 func (c *Comp) Send(node *ast.SendStmt) {
/dports/lang/gomacro/gomacro-2.7-304-g2f4dc7c/classic/
H A Dstatement.go205 func (env *Env) evalSend(node *ast.SendStmt) (r.Value, []r.Value) {
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/typecheck/
H A Dstmt.go458 func tcSend(n *ir.SendStmt) ir.Node {
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/ir/
H A Dstmt.go352 type SendStmt struct { struct
353 miniStmt
354 Chan Node
355 Value Node
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/go-toolsmith/astcopy/
H A Dastcopy.go523 func SendStmt(x *ast.SendStmt) *ast.SendStmt { argument
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/kunwardeep/paralleltest/tools/vendor/github.com/go-toolsmith/astcopy/
H A Dastcopy.go523 func SendStmt(x *ast.SendStmt) *ast.SendStmt { func
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/go-toolsmith/astcopy/
H A Dastcopy.go523 func SendStmt(x *ast.SendStmt) *ast.SendStmt { argument
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/golangci/dupl/syntax/golang/
H A Dgolang.go51 SendStmt const
/dports/devel/dupl/dupl-1.0.0-11-g28d787e/syntax/golang/
H A Dgolang.go51 SendStmt const
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/golangci/dupl/syntax/golang/
H A Dgolang.go51 SendStmt const
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/kunwardeep/paralleltest/tools/vendor/github.com/golangci/dupl/syntax/golang/
H A Dgolang.go51 SendStmt const
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/quasilyte/go-ruleguard/nodetag/
H A Dnodetag.go47 SendStmt const
/dports/security/vault/vault-1.8.2/vendor/honnef.co/go/tools/pattern/
H A Dpattern.go237 type SendStmt struct { struct
238 Chan Node
239 Value Node
356 func (stmt SendStmt) String() string { return stringify(stmt) }
461 func (SendStmt) isNode() {}
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/honnef.co/go/tools/pattern/
H A Dpattern.go237 type SendStmt struct { struct
238 Chan Node
239 Value Node
355 func (stmt SendStmt) String() string { return stringify(stmt) }
460 func (SendStmt) isNode() {}
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/honnef.co/go/tools/pattern/
H A Dpattern.go237 type SendStmt struct { struct
238 Chan Node
239 Value Node
355 func (stmt SendStmt) String() string { return stringify(stmt) }
460 func (SendStmt) isNode() {}
/dports/sysutils/nomad/nomad-1.1.0/vendor/honnef.co/go/tools/pattern/
H A Dpattern.go237 type SendStmt struct { struct
238 Chan Node
239 Value Node
356 func (stmt SendStmt) String() string { return stringify(stmt) }
461 func (SendStmt) isNode() {}
/dports/sysutils/terraform-docs/terraform-docs-0.16.0/vendor/honnef.co/go/tools/pattern/
H A Dpattern.go237 type SendStmt struct { struct
238 Chan Node
239 Value Node
355 func (stmt SendStmt) String() string { return stringify(stmt) }
460 func (SendStmt) isNode() {}
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/honnef.co/go/tools/pattern/
H A Dpattern.go237 type SendStmt struct { struct
238 Chan Node
239 Value Node
356 func (stmt SendStmt) String() string { return stringify(stmt) }
461 func (SendStmt) isNode() {}
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/kunwardeep/paralleltest/tools/vendor/honnef.co/go/tools/pattern/
H A Dpattern.go237 type SendStmt struct { struct
238 Chan Node
239 Value Node
356 func (stmt SendStmt) String() string { return stringify(stmt) }
461 func (SendStmt) isNode() {}
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/walk/
H A Dexpr.go800 func walkSend(n *ir.SendStmt, init *ir.Nodes) ir.Node {
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/noder/
H A Dtransform.go510 func transformSend(n *ir.SendStmt) {
/dports/lang/gcc6-aux/gcc-6-20180516/libgo/go/go/ast/
H A Dast.go587 SendStmt struct { struct
588 Chan Expr
589 Arrow token.Pos // position of "<-"
590 Value Expr
718 func (s *SendStmt) Pos() token.Pos { return s.Chan.Pos() }
745 func (s *SendStmt) End() token.Pos { return s.Value.End() }
797 func (*SendStmt) stmtNode() {}
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/go/ast/
H A Dast.go628 SendStmt struct { struct
629 Chan Expr
630 Arrow token.Pos // position of "<-"
631 Value Expr
759 func (s *SendStmt) Pos() token.Pos { return s.Chan.Pos() }
786 func (s *SendStmt) End() token.Pos { return s.Value.End() }
846 func (*SendStmt) stmtNode() {}
/dports/lang/gcc8/gcc-8.5.0/libgo/go/go/ast/
H A Dast.go587 SendStmt struct { struct
588 Chan Expr
589 Arrow token.Pos // position of "<-"
590 Value Expr
718 func (s *SendStmt) Pos() token.Pos { return s.Chan.Pos() }
745 func (s *SendStmt) End() token.Pos { return s.Value.End() }
797 func (*SendStmt) stmtNode() {}
/dports/lang/gcc48/gcc-4.8.5/libgo/go/go/ast/
H A Dast.go584 SendStmt struct { struct
585 Chan Expr
586 Arrow token.Pos // position of "<-"
587 Value Expr
715 func (s *SendStmt) Pos() token.Pos { return s.Chan.Pos() }
739 func (s *SendStmt) End() token.Pos { return s.Value.End() }
791 func (*SendStmt) stmtNode() {}

123