Lines Matching refs:s4

6   character(kind=4,len=3) :: s4(3)  variable
9 s4 = s1
10 s4 = [ "abc", "def", "ghi" ]
13 if (any (cshift (s4, 0) /= s4)) call abort
15 if (any (cshift (s4, 3) /= s4)) call abort
17 if (any (cshift (s4, 6) /= s4)) call abort
19 if (any (cshift (s4, -3) /= s4)) call abort
21 if (any (cshift (s4, -6) /= s4)) call abort
28 if (any (cshift (s4, 1) /= [ s4(2:3), s4(1) ])) call abort
29 if (any (cshift (s4, -1) /= [ s4(3), s4(1:2) ])) call abort
30 if (any (cshift (s4, 4) /= [ s4(2:3), s4(1) ])) call abort
31 if (any (cshift (s4, -4) /= [ s4(3), s4(1:2) ])) call abort
38 if (any (cshift (s4, 2) /= [ s4(3), s4(1:2) ])) call abort
39 if (any (cshift (s4, -2) /= [ s4(2:3), s4(1) ])) call abort
40 if (any (cshift (s4, 5) /= [ s4(3), s4(1:2) ])) call abort
41 if (any (cshift (s4, -5) /= [ s4(2:3), s4(1) ])) call abort
45 if (any (eoshift (s4, 0) /= s4)) call abort
47 if (any (eoshift (s4, 3) /= 4_"")) call abort
49 if (any (eoshift (s4, 3, 4_" ") /= 4_"")) call abort
51 if (any (eoshift (s4, 3, 4_" x ") /= 4_" x")) call abort
53 if (any (eoshift (s4, -3) /= 4_"")) call abort
55 if (any (eoshift (s4, -3, 4_" ") /= 4_"")) call abort
57 if (any (eoshift (s4, -3, 4_" x ") /= 4_" x")) call abort
59 if (any (eoshift (s4, 4) /= 4_"")) call abort
61 if (any (eoshift (s4, 4, 4_" ") /= 4_"")) call abort
63 if (any (eoshift (s4, 4, 4_" x ") /= 4_" x")) call abort
65 if (any (eoshift (s4, -4) /= 4_"")) call abort
67 if (any (eoshift (s4, -4, 4_" ") /= 4_"")) call abort
69 if (any (eoshift (s4, -4, 4_" x ") /= 4_" x")) call abort
75 if (any (eoshift (s4, 1) /= [ s4(2:3), 4_" " ])) call abort
76 if (any (eoshift (s4, -1) /= [ 4_" ", s4(1:2) ])) call abort
77 if (any (eoshift (s4, 1, 4_" x ") /= [ s4(2:3), 4_" x " ])) call abort
78 if (any (eoshift (s4, -1, 4_" x ") /= [ 4_" x ", s4(1:2) ])) call abort
84 if (any (eoshift (s4, 2) /= [ s4(3), 4_" ", 4_" " ])) call abort
85 if (any (eoshift (s4, -2) /= [ 4_" ", 4_" ", s4(1) ])) call abort
86 if (any (eoshift (s4, 2, 4_" x ") /= [ s4(3), 4_" x ", 4_" x " ])) call abort
87 if (any (eoshift (s4, -2, 4_" x ") /= [ 4_" x ", 4_" x ", s4(1) ])) call abort