Home
last modified time | relevance | path

Searched refs:IOBind (Results 1 – 3 of 3) sorted by relevance

/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/
Dast.go205 func (n *Node) AsIOBind() *IOBind { return (*IOBind)(n) }
482 type IOBind Node type
484 func (n *IOBind) AsNode() *Node { return (*Node)(n) }
485 func (n *IOBind) Keyword() t.ID { return n.id0 }
486 func (n *IOBind) IO() *Expr { return n.lhs.AsExpr() }
487 func (n *IOBind) Arg1() *Expr { return n.mhs.AsExpr() }
488 func (n *IOBind) Body() []*Node { return n.list2 }
490 func NewIOBind(keyword t.ID, io *Expr, arg1 *Expr, body []*Node) *IOBind {
491 return &IOBind{
/third_party/flutter/skia/third_party/externals/wuffs/internal/cgen/
Dresume.go353 func (h *resumabilityHelper) doIOBind(r resumabilities, n *a.IOBind, depth uint32) error {
Dstatement.go246 func (g *gen) writeStatementIOBind(b *buffer, n *a.IOBind, depth uint32) error { argument