Home | History | Annotate | Download | only in unicode

Lines Matching refs:Scripts

52 var scriptlist = flag.String("scripts",
225 // Scripts.txt has form:
236 var scripts = make(map[string][]Script)
335 func all(scripts map[string][]Script) []string {
336 a := make([]string, 0, len(scripts))
337 for k := range scripts {
675 func parseScript(line string, scripts map[string][]Script) {
704 scripts[name] = append(scripts[name], Script{uint32(lo), uint32(hi), name})
727 func fullScriptTest(list []string, installed map[string]*unicode.RangeTable, scripts map[string][]Script) {
729 if _, ok := scripts[name]; !ok {
736 for _, script := range scripts[name] {
750 // PropList.txt has the same format as Scripts.txt so we can share its parser.
752 flag := "scripts"
754 file := "Scripts.txt"
755 table := scripts
756 installed := unicode.Scripts
777 // Find out which scripts to dump
799 println("// Scripts is the set of Unicode script tables.")
800 println("var Scripts = map[string] *RangeTable{")
1202 for name := range scripts {
1228 for _, s := range scripts[name] {