Searched refs:IDBase (Results 1 – 12 of 12) sorted by relevance
/third_party/flutter/skia/third_party/externals/wuffs/lang/check/ |
D | resolve.go | 36 typeExprGeneric1 = a.NewTypeExpr(0, t.IDBase, t.IDDagger1, nil, nil, nil) 37 typeExprGeneric2 = a.NewTypeExpr(0, t.IDBase, t.IDDagger2, nil, nil, nil) 38 typeExprIdeal = a.NewTypeExpr(0, t.IDBase, t.IDQIdeal, nil, nil, nil) 39 typeExprList = a.NewTypeExpr(0, t.IDBase, t.IDComma, nil, nil, nil) 40 typeExprNullptr = a.NewTypeExpr(0, t.IDBase, t.IDQNullptr, nil, nil, nil) 41 typeExprPlaceholder = a.NewTypeExpr(0, t.IDBase, t.IDQPlaceholder, nil, nil, nil) 42 typeExprTypeExpr = a.NewTypeExpr(0, t.IDBase, t.IDQTypeExpr, nil, nil, nil) 44 typeExprU8 = a.NewTypeExpr(0, t.IDBase, t.IDU8, nil, nil, nil) 45 typeExprU16 = a.NewTypeExpr(0, t.IDBase, t.IDU16, nil, nil, nil) 46 typeExprU32 = a.NewTypeExpr(0, t.IDBase, t.IDU32, nil, nil, nil) [all …]
|
D | type.go | 512 case t.QID{t.IDBase, t.IDDagger1}: 514 case t.QID{t.IDBase, t.IDDagger2}: 578 qqid[0] = t.IDBase 587 qqid[0] = t.IDBase 611 if lQID[0] == t.IDBase { 932 if qid[0] == t.IDBase && qid[1].IsNumType() { 949 if qid[0] == t.IDBase {
|
D | check.go | 115 c.statuses[t.QID{t.IDBase, id}] = nil 438 if n.Effect().Coroutine() && n.Receiver()[0] != t.IDBase {
|
D | bounds.go | 1460 if qid := typ.QID(); qid[0] == t.IDBase { 1469 if qid := typ.QID(); qid[0] == t.IDBase { 1577 if qid := typ.QID(); qid[0] == t.IDBase {
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/ |
D | ast.go | 280 if o.id1 == t.IDBase { 695 return n.id0 == 0 && n.id1 == t.IDBase && n.id2 == t.IDBool 699 return n.id0 == 0 && n.id1 == t.IDBase && n.id2 == t.IDQIdeal 703 return n.id0 == 0 && n.id1 == t.IDBase && (n.id2 == t.IDIOReader || n.id2 == t.IDIOWriter) 707 return n.id0 == 0 && n.id1 == t.IDBase && n.id2 == t.IDQNullptr 711 return n.id0 == 0 && n.id1 == t.IDBase && n.id2.IsNumType() 715 return n.id0 == 0 && n.id1 == t.IDBase && n.id2.IsNumTypeOrIdeal() 719 return n.id0 == 0 && n.id1 == t.IDBase && n.id2.IsNumType() && (n.lhs != nil || n.mhs != nil) 723 return n.id0 == 0 && n.id1 == t.IDBase && n.id2 == t.IDStatus 743 return n.id0 == 0 && n.id1 == t.IDBase && [all …]
|
/third_party/flutter/skia/third_party/externals/wuffs/internal/cgen/ |
D | expr.go | 352 if o.Decorator() == 0 && o.QID() == (t.QID{t.IDBase, t.IDU8}) && !o.IsRefined() { 363 if o.Decorator() == 0 && o.QID() == (t.QID{t.IDBase, t.IDU8}) && !o.IsRefined() { 394 if qid := innermost.QID(); qid[0] == t.IDBase { 445 if qid[0] == t.IDBase {
|
D | func.go | 227 if inner := typ.Inner(); (inner.Decorator() == 0) && (inner.QID() == t.QID{t.IDBase, t.IDU8}) { 231 } else if (typ.Decorator() == 0) && (typ.QID()[0] == t.IDBase) { 438 if qid := oTyp.QID(); qid[0] == t.IDBase {
|
D | cgen.go | 48 typeExprUtility = a.NewTypeExpr(0, t.IDBase, t.IDUtility, nil, nil, nil) 368 if err := g.addStatus(t.QID{t.IDBase, id}, msg, true); err != nil { 657 if qid[0] == t.IDBase { 1045 if qid[0] == t.IDBase {
|
D | builtin.go | 49 case (meth == t.IDSet) && (recvTyp.Inner().QID() == t.QID{t.IDBase, t.IDImageConfig}): 51 case (meth == t.IDUpdate) && (recvTyp.Inner().QID() == t.QID{t.IDBase, t.IDFrameConfig}): 85 if qid[0] != t.IDBase {
|
D | var.go | 241 if qid[0] != t.IDBase {
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/token/ |
D | list.go | 439 IDBase = ID(0x120) const 771 IDBase: "base",
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/parse/ |
D | parse.go | 354 (typ.QID()[0] == t.IDBase) && (!typ.IsNumType() || typ.IsRefined()) { 371 if pkg := typ.Innermost().QID()[0]; (pkg != 0) && (pkg != t.IDBase) {
|