/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/ |
D | ast.go | 149 mType *TypeExpr 193 func (n *Node) MType() *TypeExpr { return n.mType } 195 func (n *Node) SetMType(x *TypeExpr) { n.mType = x } 213 func (n *Node) AsTypeExpr() *TypeExpr { return (*TypeExpr)(n) } 334 func (n *Expr) MType() *TypeExpr { return n.mType } 346 func (n *Expr) SetMType(x *TypeExpr) { n.mType = x } argument 446 func (n *Var) XType() *TypeExpr { return n.lhs.AsTypeExpr() } 448 func NewVar(name t.ID, xType *TypeExpr) *Var { argument 465 func (n *Field) XType() *TypeExpr { return n.lhs.AsTypeExpr() } 467 func NewField(flags Flags, name t.ID, xType *TypeExpr) *Field { argument [all …]
|
D | eq.go | 86 func (n *TypeExpr) Eq(o *TypeExpr) bool { argument 92 func (n *TypeExpr) EqIgnoringRefinements(o *TypeExpr) bool { argument 96 func (n *TypeExpr) eq(o *TypeExpr, ignoreRefinements bool) bool { argument
|
D | string.go | 187 func (n *TypeExpr) Str(tm *t.Map) string { 197 func (n *TypeExpr) appendStr(buf []byte, tm *t.Map, depth uint32) []byte {
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/check/ |
D | resolve.go | 82 type typeMap map[t.ID]*a.TypeExpr 165 func (c *Checker) resolveFunc(typ *a.TypeExpr) (*a.Func, error) { argument
|
D | type.go | 239 func (q *checker) tcheckEq(lID t.ID, lhs *a.Expr, lTyp *a.TypeExpr, rhs *a.Expr, rTyp *a.TypeExpr) … argument 509 genericType1 := (*a.TypeExpr)(nil) 510 genericType2 := (*a.TypeExpr)(nil) 871 expr, typ := (*a.Expr)(nil), (*a.TypeExpr)(nil) 921 func (q *checker) tcheckTypeExpr(typ *a.TypeExpr, depth uint32) error { argument
|
D | bounds.go | 407 lTyp := (*a.TypeExpr)(nil) 496 func (q *checker) bcheckAssignment1(lhs *a.Expr, lTyp *a.TypeExpr, op t.ID, rhs *a.Expr) (bounds, e… argument 1288 func makeSliceLengthEqEq(x t.ID, xTyp *a.TypeExpr, n t.ID) *a.Expr { argument 1529 func (q *checker) bcheckTypeExpr(typ *a.TypeExpr) (bounds, error) { argument 1541 func (q *checker) bcheckTypeExpr1(typ *a.TypeExpr) (bounds, error) { argument
|
D | check.go | 417 func checkTypeExpr(q *checker, n *a.TypeExpr) error { argument
|
/third_party/flutter/skia/third_party/externals/wuffs/internal/cgen/ |
D | var.go | 72 func (g *gen) writeLoadDerivedVar(b *buffer, hack string, prefix string, name t.ID, typ *a.TypeExpr… argument 131 func (g *gen) writeSaveDerivedVar(b *buffer, hack string, prefix string, name t.ID, typ *a.TypeExpr… argument
|
D | expr.go | 220 func (g *gen) privateImplData(typ *a.TypeExpr, fieldName t.ID) string { argument 283 func (g *gen) writeExprAs(b *buffer, lhs *a.Expr, rhs *a.TypeExpr, depth uint32) error { argument 345 func (g *gen) writeCTypeName(b *buffer, n *a.TypeExpr, varNamePrefix string, varName string) error { argument
|
D | func.go | 219 func (g *gen) writeOutParamZeroValue(b *buffer, typ *a.TypeExpr) error { argument
|
D | cgen.go | 672 func (g *gen) sizeof(typ *a.TypeExpr) (uint32, error) {
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/parse/ |
D | parse.go | 180 out := (*a.TypeExpr)(nil) 377 func (p *parser) parseTypeExpr() (*a.TypeExpr, error) {
|