Searched refs:QQID (Results 1 – 9 of 9) sorted by relevance
/third_party/flutter/skia/third_party/externals/wuffs/lang/check/ |
D | check.go | 90 funcs: map[t.QQID]*a.Func{}, 91 localVars: map[t.QQID]typeMap{}, 169 funcs map[t.QQID]*a.Func 170 localVars map[t.QQID]typeMap 178 builtInSliceFuncs map[t.QQID]*a.Func 179 builtInTableFuncs map[t.QQID]*a.Func 431 Err: fmt.Errorf("%v in in-params for func %s", err, n.QQID().Str(c.tm)), 440 Err: fmt.Errorf("func %s has ? effect but non-empty return type", n.QQID().Str(c.tm)), 452 Err: fmt.Errorf("%v in out-param for func %s", err, n.QQID().Str(c.tm)), 464 qqid := n.QQID() [all …]
|
D | resolve.go | 114 func (c *Checker) parseBuiltInFuncs(ss []string, generic bool) (map[t.QQID]*a.Func, error) { 115 m := map[t.QQID]*a.Func(nil) 117 m = map[t.QQID]*a.Func{} 159 m[f.QQID()] = f 171 qqid := t.QQID{lQID[0], lQID[1], typ.FuncName()}
|
D | check_test.go | 130 qqid := t.QQID{0, tm.ByName("foo"), tm.ByName("bar")} 140 if got, want := fooBar.QQID().Str(tm), "foo.bar"; got != want { 245 foo := c.funcs[t.QQID{0, 0, tm.ByName("foo")}]
|
D | type.go | 506 n.Str(q.tm), ne, f.QQID().Str(q.tm), fe) 575 qqid := t.QQID{lQID[0], lQID[1], n.Ident()}
|
/third_party/flutter/skia/third_party/externals/wuffs/internal/cgen/ |
D | cgen.go | 339 privateDataFields map[t.QQID]struct{} 347 funks map[t.QQID]funk 393 g.privateDataFields = map[t.QQID]struct{}{} 400 g.privateDataFields[t.QQID{qid[0], qid[1], f.Name()}] = struct{}{} 405 g.funks = map[t.QQID]funk{} 792 k := g.funks[o.QQID()] 832 k := g.funks[o.QQID()] 924 qqid := f.QQID()
|
D | func.go | 155 k := g.funks[n.QQID()] 157 b.printf("// -------- func %s.%s\n\n", g.pkgName, n.QQID().Str(g.tm)) 215 g.funks[n.QQID()] = g.currFunk
|
D | expr.go | 226 if _, ok := g.privateDataFields[t.QQID{qid[0], qid[1], fieldName}]; ok {
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/token/ |
D | list.go | 161 type QQID [3]ID type 163 func (x QQID) IsZero() bool { return x == QQID{} } 166 func (x QQID) Str(m *Map) string {
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/ |
D | ast.go | 817 func (n *Func) QQID() t.QQID { return t.QQID{n.id1, n.id2, n.id0} } func
|