Home | History | Annotate | Download | only in unicode

Lines Matching refs:want

18 		want := false
21 want = true
23 want = true
25 if got != want {
26 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
34 want := Is(Letter, i)
35 if got != want {
36 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
44 want := Is(Upper, i)
45 if got != want {
46 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
54 want := Is(Lower, i)
55 if got != want {
56 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
64 want := Is(Number, i)
65 if got != want {
66 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
74 want := In(i, PrintRanges...)
76 want = true
78 if got != want {
79 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
87 want := In(i, GraphicRanges...)
88 if got != want {
89 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
97 want := Is(Punct, i)
98 if got != want {
99 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
107 want := Is(White_Space, i)
108 if got != want {
109 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
117 want := Is(Symbol, i)
118 if got != want {
119 t.Errorf("%U incorrect: got %t; want %t", i, got, want)