Home
last modified time | relevance | path

Searched refs:TypeExpr (Results 1 – 12 of 12) sorted by relevance

/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/
Dast.go149 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 …]
Deq.go86 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
Dstring.go187 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/
Dresolve.go82 type typeMap map[t.ID]*a.TypeExpr
165 func (c *Checker) resolveFunc(typ *a.TypeExpr) (*a.Func, error) { argument
Dtype.go239 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
Dbounds.go407 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
Dcheck.go417 func checkTypeExpr(q *checker, n *a.TypeExpr) error { argument
/third_party/flutter/skia/third_party/externals/wuffs/internal/cgen/
Dvar.go72 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
Dexpr.go220 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
Dfunc.go219 func (g *gen) writeOutParamZeroValue(b *buffer, typ *a.TypeExpr) error { argument
Dcgen.go672 func (g *gen) sizeof(typ *a.TypeExpr) (uint32, error) {
/third_party/flutter/skia/third_party/externals/wuffs/lang/parse/
Dparse.go180 out := (*a.TypeExpr)(nil)
377 func (p *parser) parseTypeExpr() (*a.TypeExpr, error) {