Lines Matching refs:two

150 cc[2]=(x=2 y=3 name=two colors+=([table]=white) items+=(pencil) z=6)
169 cc[two]=(x=2 y=3 name=two colors+=([table]=white) items+=(pencil) z=6)
172 [[ ${cc[two].y} == 3 ]] || err_exit '${cc[two].y} != 3'
173 (( cc[two].y == 3 )) || err_exit '(( cc[two].y != 3))'
174 [[ ${cc[two].colors[table]} == white ]] || err_exit '${cc[two].colors[table]} != white'
175 [[ ${cc[two].items[2]} == pencil ]] || err_exit '${cc[two].items[2]} != pencil'
176 (( cc[two].len == 7 )) || err_exit '(( cc[two].len != 7 ))'
177 [[ $(cc[two].len) == 7 ]] || err_exit '$(cc[two].len) != 7 ))'
178 [[ ${cc[two].len} == 7 ]] || err_exit '${cc[two].len} != 7 ))'
179 (( cc[two].count == 2 )) || err_exit 'cc[two].count != 2'
180 unset cc[two].x cc[two].y cc[two].z
181 (( cc[two].len == cc[one].len )) || err_exit 'cc[two].len != cc[one].len'
182 (( cc[two].count == 4 )) || err_exit 'cc[two].count != 4'
183 unset cc[two].name unset cc[two].colors cc[two].items
185 cc[two].count=0
189 [two]=(x=2 y=3 name=two colors+=([table]=white) z=6)
192 [[ ${cc[two].y} == 3 ]] || err_exit '${cc[two].y} != 3'
193 (( cc[two].y == 3 )) || err_exit '(( cc[two].y != 3))'
194 [[ ${cc[two].colors[table]} == white ]] || err_exit '${cc[two].colors[table]} != white'
195 (( cc[two].len == 7 )) || err_exit '(( cc[two].len != 7 ))'
196 [[ $(cc[two].len) == 7 ]] || err_exit '$(cc[two].len) != 7 ))'
197 [[ ${cc[two].len} == 7 ]] || err_exit '${cc[two].len} != 7 ))'
198 (( cc[two].count == 2 )) || err_exit 'cc[two].count != 2'
199 unset cc[two].x cc[two].y cc[two].z
200 (( cc[two].len == cc[one].len )) || err_exit 'cc[two].len != cc[one].len'
201 (( cc[two].count == 4 )) || err_exit 'cc[two].count != 4'
202 cc[three]=cc[two]
203 [[ ${cc[two]} == "${cc[three]}" ]] || err_exit "\${cc[two]}='${cc[two]}' != \${cc[three]}='${cc[thr…
204 [[ $cc[two] == "${cc[three]}" ]] || err_exit "\$cc[two]='${cc[two]}' != \${cc[three]}='${cc[three]}…
208 unset cc[two].name unset cc[two].colors
209 cc[two].count=0