Lines Matching refs:scripts
59 var scriptlist = flag.String("scripts",
232 // Scripts.txt has form:
243 var scripts = make(map[string][]Script)
342 func all(scripts map[string][]Script) []string {
343 a := make([]string, 0, len(scripts))
344 for k := range scripts {
682 func parseScript(line string, scripts map[string][]Script) {
711 scripts[name] = append(scripts[name], Script{uint32(lo), uint32(hi), name})
734 func fullScriptTest(list []string, installed map[string]*unicode.RangeTable, scripts map[string][]Script) {
736 if _, ok := scripts[name]; !ok {
743 for _, script := range scripts[name] {
757 // PropList.txt has the same format as Scripts.txt so we can share its parser.
759 flag := "scripts"
761 file := "Scripts.txt"
762 table := scripts
763 installed := unicode.Scripts
784 // Find out which scripts to dump
806 println("// Scripts is the set of Unicode script tables.")
807 println("var Scripts = map[string] *RangeTable{")
1205 for name := range scripts {
1231 for _, s := range scripts[name] {