go/build.Context.match (method)

9 uses

	go/build (current package)
		build.go#L1533: 					if ctxt.match(tok, allTags) {
		build.go#L1652: 				if ctxt.match(c, nil) {
		build.go#L1846: func (ctxt *Context) match(name string, allTags map[string]bool) bool {
		build.go#L1855: 		ok1 := ctxt.match(name[:i], allTags)
		build.go#L1856: 		ok2 := ctxt.match(name[i+1:], allTags)
		build.go#L1863: 		return len(name) > 1 && !ctxt.match(name[1:], allTags)
		build.go#L1949: 		return ctxt.match(l[n-1], allTags) && ctxt.match(l[n-2], allTags)
		build.go#L1952: 		return ctxt.match(l[n-1], allTags)