Searched refs:abc (Results 1 - 23 of 23) sorted by relevance

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/types/
H A Derr.D_SYNTAX.badid.d39 int 0abc;
43 0abc = 5;
44 printf("0abc is %d", 0abc);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/pointers/
H A Derr.D_OP_SOU.badpointer.d38 int *abc;
42 abc->a = 1;
/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dquoting2.sh41 if [[ \a\b\c\*\|\"\ \\ != 'abc*|" \' ]]
47 if [[ $(print -r - 'abc*|" \') != 'abc*|" \' ]]
50 if [[ $(print -r - "abc*|\" \\") != 'abc*|" \' ]]
53 if [[ "$(print -r - 'abc*|" \')" != 'abc*|" \' ]]
56 if [[ "$(print -r - "abc*|\" \\")" != 'abc*|" \' ]]
59 if [[ $(print -r - "$(print -r - 'abc*|" \')") !
[all...]
H A Dheredoc.sh82 abc
144 #abc
145 abc
146 EOF) != $'#abc\nabc' ]]
170 x=abc
176 if [[ $($SHELL "$f") != abc ]]
251 abc
253 [[ $got == abc ]] || err_exit 'line continuation at start of buffer not working'
H A Dbuiltins.sh171 if [[ $(abc: for i in foo bar;do print $i;break abc;done) != foo ]]
274 if [[ $(printf '%H\n' $'<>"& \'\tabc') != '&lt;&gt;&quot;&amp;&nbsp;&apos;&#9;abc' ]]
280 if [[ $(printf '%..:c\n' abc) != a:b:c ]]
283 if [[ $(printf '%..*c\n' : abc) != a:b:c ]]
286 if [[ $(printf '%..:s\n' abc def ) != abc:def ]]
289 if [[ $(printf '%..*s\n' : abc def) != abc:def ]]
307 abc
[all...]
H A Dcomvar.sh213 ( [[ ${z.foo.bar:-abc} == abc ]] 2> /dev/null) || err_exit ':- not working with compound variables'
282 foo.bar=abc
283 [[ $foo == $'(\n\tbar=abc\n)' ]] || err_exit 'typeset -C not working for foo'
321 x=( float x=0 y=1; z=([foo]=abc [bar]=def))
336 z=(foo=abc)
338 [[ $y == *foo=abc* ]] || err_exit 'z not appended to y'
342 x=( foo=(z=abc d=ghi) bar=abc; typeset -A r=([x]=3 [y]=4))
484 typeset -C -A foo1=( abc
[all...]
H A Dquoting.sh40 if [[ \a\b\c\*\|\"\ \\ != 'abc*|" \' ]]
46 if [[ $(print -r - 'abc*|" \') != 'abc*|" \' ]]
49 if [[ $(print -r - "abc*|\" \\") != 'abc*|" \' ]]
52 if [[ "$(print -r - 'abc*|" \')" != 'abc*|" \' ]]
55 if [[ "$(print -r - "abc*|\" \\")" != 'abc*|" \' ]]
58 if [[ $(print -r - $(print -r - 'abc*|" \')) !
[all...]
H A Dsubstring.sh68 if [[ ${string1%+(abc)} != "$base/abcabc" ]]
69 then err_exit "string1%+(abc)"
71 if [[ ${string1%%+(abc)} != "$base/" ]]
72 then err_exit "string1%%+(abc)"
101 foo=abc
102 if [[ ${foo#a[b*} != abc ]]
103 then err_exit "abc#a[b*} != abc"
105 if [[ ${foo//[0-9]/bar} != abc ]]
108 foo='(abc)'
[all...]
H A Dappend.sh31 x=abc
34 then err_exit 'abc+def != abcdef'
H A Dfunctions.sh98 abc() print hi function
99 if [[ $(abc) != hi ]]
100 then err_exit 'abc() print hi not working'
102 ( unset -f abc )
103 if [[ $(abc 2>/dev/null) != hi ]]
104 then err_exit 'abc() print hi not working after subshell unset'
233 abc() function
235 then err_exit 'abc() without a function body is not a syntax error'
348 zzz=abc
860 while getopts :abc OPTIO
922 function abc function
[all...]
H A Dbracket.sh235 $SHELL -c '[[ abc =~ a(b)c ]]' 2> /dev/null || err_exit '[[ abc =~ a(b)c ]] fails'
236 $SHELL -xc '[[ abc =~ \babc\b ]]' 2> /dev/null || err_exit '[[ abc =~ \babc\b ]] fails'
237 [[ abc == ~(E)\babc\b ]] || err_exit '\b not preserved for ere when not in ()'
238 [[ abc == ~(iEi)\babc\b ]] || err_exit '\b not preserved for ~(iEi) when not in ()'
315 x=abc
H A Dio.sh115 print "echo abc" > close1
118 if [[ $x != "abc" ]]
251 command exec 3<# *abc*
320 abc
329 [[ $a == abc ]] || err_exit 'read -N3 here-document not working'
334 [[ $a == abc ]] || err_exit 'read -n3 here-document not working'
336 [[ $a == abc ]] || err_exit 'read -N3 from pipe not working'
354 [[ $a == abc ]] || err_exit 'read -N3 from fifo not working'
386 'abc' 'd' 'ab cd' 'ab cd' \
H A Dtypes.sh40 typeset -A aa=([one]=abc [two]=def)
41 typeset -a ia=(abc def)
78 z=abc
86 x=( typeset -a arr=([2]=abc [4]=(x=1 y=def));zz=abc)
H A Dattributes.sh34 r=readonly u=Uppercase l=Lowercase i=22 i8=10 L=abc L5=def uL5=abcdef xi=20
90 x=$(foo=abc $SHELL <<!
233 [[ $x == "abc" ]] || err_exit '-LZ3 not working for value abcd'
234 [[ $x == "abc" ]] || err_exit '-LZ3 not working for value 00abcd'
265 foo=abc
H A Darrays.sh210 foovar1=abc
351 print foo${foo[abc]}
354 [[ $($SHELL -c "typeset -A foo;foo[abc]=abc;$tmp/script") == foo ]] 2> /dev/null || err_exit 'associative arrays not being cleared correctly before scripts'
H A Dglob.sh109 touch a b c d abc abd abe bb bcd ca cb dd de Beware
112 test_glob '<a> <abc> <abd> <abe> <X*>' a* X*
113 test_glob '<a> <abc> <abd> <abe>' \a*
119 test_glob '<a> <abc> <abd> <abe>' a* X*
147 test_glob '<abc> <abd> <abe> <bb> <cb>' [a-c]b*
167 test_glob '<abc>' a[b]c
168 test_glob '<abc>' a["b"]c
169 test_glob '<abc>' a[\b]c
170 test_glob '<abc>' a?c
171 test_case '<match>' 'abc' '
[all...]
H A Dsubshell.sh81 foo=( qqq=abc rrr=def)
H A Dbasic.sh105 if (command > foo\\abc) 2> /dev/null
107 if [[ $1 != 'foo\abc' ]]
108 then err_exit 'foo* does not match foo\abc'
H A Dpath.sh243 typeset foo=$(PATH=/xyz:/abc :)
H A Dvariables.sh49 set abc def
54 #set abc def
/illumos-gate/usr/src/test/util-tests/tests/iconv/
H A Diconv_test.sh93 test_conv ascii ucs-2le abc 'a\0b\0c\0\n\0\c'
94 test_conv ucs-2le ascii 'a\0b\0c\0\n\0\c' abc
/illumos-gate/usr/src/cmd/troff/
H A Dn4.c337 return abc(i, f) + j;
403 abc(i, f) function
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dutil.c943 ** abc[*]xyz Matches "abc*xyz" only

Completed in 139 milliseconds