Searched defs:CompLitExpr (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/walk/ |
D | complit.go | 192 func fixedlit(ctxt initContext, kind initKind, n *ir.CompLitExpr, var_ ir.Node, init *ir.Nodes) { 280 func isSmallSliceLit(n *ir.CompLitExpr) bool { 288 func slicelit(ctxt initContext, n *ir.CompLitExpr, var_ ir.Node, init *ir.Nodes) { 417 func maplit(n *ir.CompLitExpr, m ir.Node, init *ir.Nodes) {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/ |
D | expr.go | 231 type CompLitExpr struct { struct 232 miniExpr 233 List Nodes // initialized values 234 RType Node `mknode:"-"` // *runtime._type for OMAPLIT map types 235 Prealloc *Name 239 Len int64 252 func (n *CompLitExpr) Implicit() bool { return n.flags&miniExprImplicit != 0 } 253 func (n *CompLitExpr) SetImplicit(b bool) { n.flags.set(miniExprImplicit, b) } 255 func (n *CompLitExpr) SetOp(op Op) {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/typecheck/ |
D | expr.go | 163 func tcCompLit(n *ir.CompLitExpr) (res ir.Node) {
|