Home
last modified time | relevance | path

Searched defs:SelectCase (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/build/blueprint/parser/
H A Dast.go916 type SelectCase struct { struct
917 Patterns []SelectPattern
918 ColonPos scanner.Position
919 Value Expression
922 func (x *SelectCase) MarkReferencedVariables(scope *Scope) {
926 func (c *SelectCase) Copy() *SelectCase {
932 func (c *SelectCase) String() string {
936 func (c *SelectCase) Pos() scanner.Position { return c.Patterns[0].Pos() }
937 func (c *SelectCase) End() scanner.Position { return c.Value.End() }
/aosp_15_r20/prebuilts/go/linux-x86/src/reflect/
Dvalue.go3063 type SelectCase struct { struct
3064 Dir SelectDir // direction of case
3065 Chan Value // channel to use (for send or receive)
3066 Send Value // value to send (for send)
3077 func Select(cases []SelectCase) (chosen int, recv Value, recvOK bool) {
Dall_test.go2100 func runSelect(cases []SelectCase, info []caseInfo) (chosen int, recv Value, recvOK bool, panicErr …