Lines Matching full:two
6 WORDS= one two three four five six
9 .if ${WORDS:ts } != "one two three four five six"
14 .if ${WORDS:ts,} != "one,two,three,four,five,six"
19 .if ${WORDS:ts/:tu} != "ONE/TWO/THREE/FOUR/FIVE/SIX"
25 .if ${WORDS:ts::tu} != "ONE:TWO:THREE:FOUR:FIVE:SIX"
51 .if ${WORDS:tu:ts/} != "ONE/TWO/THREE/FOUR/FIVE/SIX"
58 .if ${WORDS:ts:} != "one:two:three:four:five:six"
68 .if ${WORDS:ts:S/two/2/} != "one2threefourfivesix"
73 .if ${WORDS:S/two/2/:ts} != "one2threefourfivesix"
79 .if ${WORDS:ts/:S/two/2/} != "one/2/three/four/five/six"
85 # 'two', which makes the modifier ':S' a no-op.
86 .if ${WORDS:ts/:S/^two/2/} != "one/two/three/four/five/six"
130 .if ${WORDS:[1..3]:ts\n} != "one${.newline}two${.newline}three"
135 .if ${WORDS:[1..3]:ts\t} != "one two three"
140 .if ${WORDS:[1..3]:ts\012:tu} != "ONE${.newline}TWO${.newline}THREE"
145 .if ${WORDS:[1..2]:ts\000000000000000000000000012:tu} != "ONE${.newline}TWO"
161 .if ${WORDS:[1..3]:ts\xa:tu} != "ONE${.newline}TWO${.newline}THREE"