Home
last modified time | relevance | path

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

/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/
Dexpr.go653 type StarExpr struct { struct
654 miniExpr
655 X Node
665 func (n *StarExpr) Implicit() bool { return n.flags&miniExprImplicit != 0 }
666 func (n *StarExpr) SetImplicit(b bool) { n.flags.set(miniExprImplicit, b) }
/aosp_15_r20/prebuilts/go/linux-x86/src/go/ast/
Dast.go386 StarExpr struct { struct
387 Star token.Pos // position of "*"
388 X Expr // operand
498 func (x *StarExpr) Pos() token.Pos { return x.Star }
532 func (x *StarExpr) End() token.Pos { return x.X.End() }
563 func (*StarExpr) exprNode() {}
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/typecheck/
Dexpr.go874 func tcStar(n *ir.StarExpr, top int) ir.Node {