Home
last modified time | relevance | path

Searched defs:ChanType (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/internal/abi/
Dtype.go293 type ChanType struct { struct
294 Type
295 Elem *Type
296 Dir ChanDir
/aosp_15_r20/prebuilts/go/linux-x86/src/go/ast/
Dast.go470 ChanType struct { struct
471 Begin token.Pos // position of "chan" keyword or "<-" (whichever comes first)
472 Arrow token.Pos // position of "<-" (token.NoPos if there is no "<-")
473 Dir ChanDir // channel direction
474 Value Expr // value type
512 func (x *ChanType) Pos() token.Pos { return x.Begin }
546 func (x *ChanType) End() token.Pos { return x.Value.End() }
573 func (*ChanType) exprNode() {}
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
Dnodes.go308 ChanType struct { struct
309 Dir ChanDir // 0 means no direction
310 Elem Expr
311 expr
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/rttype/
Drttype.go27 var ChanType *types.Type var