| /titanic_54/usr/src/lib/libsqlite/test/ |
| H A D | quote.test | 27 execsql {CREATE TABLE '@abc' ( '#xyz' int, '!pqr' text );} 36 execsql {INSERT INTO '@abc' VALUES(5,'hello')} 42 execsql {SELECT * FROM '@abc'} 48 execsql {SELECT '@abc'.'!pqr', '@abc'.'#xyz'+5 FROM '@abc'} 54 SELECT '!pqr', '#xyz'+5 FROM '@abc' 59 SELECT "!pqr", "#xyz"+5 FROM '@abc' 64 execsql {SELECT '@abc'.'!pqr', '@abc'.'#xyz'+5 FROM '@abc'} 70 execsql {UPDATE '@abc' SET '#xyz'=11} 76 execsql {SELECT '@abc'.'!pqr', '@abc'.'#xyz'+5 FROM '@abc'} 85 execsql {DROP TABLE '@abc'}
|
| H A D | expr.test | 163 test_expr expr-3.1 {t1='abc', t2='xyz'} {t1<t2} 1 164 test_expr expr-3.2 {t1='xyz', t2='abc'} {t1<t2} 0 165 test_expr expr-3.3 {t1='abc', t2='abc'} {t1<t2} 0 166 test_expr expr-3.4 {t1='abc', t2='xyz'} {t1<=t2} 1 167 test_expr expr-3.5 {t1='xyz', t2='abc'} {t1<=t2} 0 168 test_expr expr-3.6 {t1='abc', t2='abc'} {t1<=t2} 1 169 test_expr expr-3.7 {t1='abc', t2='xyz'} {t1>t2} 0 170 test_expr expr-3.8 {t1='xyz', t2='abc'} {t1>t2} 1 171 test_expr expr-3.9 {t1='abc', t2='abc'} {t1>t2} 0 172 test_expr expr-3.10 {t1='abc', t2='xyz'} {t1>=t2} 0 [all …]
|
| H A D | bigrow.test | 47 set sql "INSERT INTO t1 VALUES('abc'," 51 } {abc xyz} 78 } {abc xyz} 83 } [list $::big1 abc xyz] 93 } {abc} 105 } {abc} 110 execsql "SELECT b FROM t1 WHERE a=='abc'" 117 } {abc}
|
| H A D | main.test | 78 CREATE TABLE abc(x,y); 83 CREATE TRIGGER xyz AFTER DELETE abc BEGIN UPDATE pqr; 88 CREATE TRIGGER xyz AFTER DELETE abc BEGIN UPDATE pqr; END; 93 CREATE TRIGGER xyz AFTER DELETE abc BEGIN
|
| H A D | index.test | 355 INSERT INTO t4 VALUES('abc',3); 362 } {0.0 0.00 abc -1.0 +1.0 0 00000} 377 } {0.0 0.00 abc +1.0 0 00000} 393 } {0.0 0.00 abc +1.0 0 00000} 440 INSERT INTO t6 VALUES('abc',123,4); 441 INSERT INTO t6 VALUES(123,'abc',5); 477 SELECT c FROM t6 WHERE a<'abc'; 482 SELECT c FROM t6 WHERE a<='abc';
|
| H A D | select6.test | 351 SELECT c,b,a,* FROM (SELECT 1 AS 'a', 2 AS 'b', 'abc' AS 'c') 353 } {abc 2 1 1 2 abc} 356 SELECT c,b,a,* FROM (SELECT 1 AS 'a', 2 AS 'b', 'abc' AS 'c' WHERE 0) 361 SELECT c,b,a,* FROM (SELECT 1 AS 'a', 2 AS 'b', 'abc' AS 'c' WHERE 1) 363 } {c abc b 2 a 1 a 1 b 2 c abc}
|
| H A D | select1.test | 111 INSERT INTO t3 VALUES('abc',NULL); 118 } {abc {} {} xyz 11 22 33 44} 194 } {abc} 346 execsql {INSERT INTO test2 VALUES('abc','xyz')} 414 } {0 {test1.f1+F2 33 t1 abc test1.f1+F2 77 t1 abc}} 419 } {0 {A.f1 11 t1 abc A.f1 33 t1 abc}}
|
| /titanic_54/usr/src/contrib/ast/src/cmd/ksh93/tests/ |
| H A D | glob.sh | 108 touch a b c d abc abd abe bb bcd ca cb dd de Beware 215 test_case '<match>' "'[abc'" "'['*" 216 test_case '<nomatch>' "'[abc'" '[*' 217 test_case '<match>' '[abc' "'['*" 218 test_case '<nomatch>' '[abc' '[*' 226 test_case '<nomatch>' 'abc' '??**********?****?' 227 test_case '<nomatch>' 'abc' '??**********?****c' 228 test_case '<nomatch>' 'abc' '?************c****?****' 229 test_case '<nomatch>' 'abc' '*c*?**' 230 test_case '<nomatch>' 'abc' 'a*****c*?**' [all …]
|
| H A D | quoting2.sh | 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*|" \')") != 'abc*|" \' ]] 62 if [[ "$(print -r - $(print -r - 'abc*|" \'))" != 'abc*|" \' ]] 65 if [[ $(print -r - "$(print -r - 'abc*|" \')") != 'abc*|" \' ]]
|
| H A D | namespace.sh | 34 foo=abc 36 typeset -A z=([abc]=qqq) 70 typeset -A z=([qqq]=abc) 79 [[ ${z[qqq]} == abc ]] || err_exit 'local array element not correct' 80 …[[ ${z[abc]} == '' ]] || err_exit 'global array element should not be visible when local element e… 98 [[ ${z[abc]} == qqq ]] || err_exit 'global associative array should not be affected by definiton i…
|
| H A D | quoting.sh | 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*|" \')) != 'abc*|" \' ]] 61 if [[ "$(print -r - $(print -r - 'abc*|" \'))" != 'abc*|" \' ]] 64 if [[ $(print -r - "$(print -r - 'abc*|" \')") != 'abc*|" \' ]]
|
| H A D | builtins.sh | 174 if [[ $(abc: for i in foo bar;do print $i;break abc;done) != foo ]] 292 if [[ $(printf '%..:c\n' abc) != a:b:c ]] 295 if [[ $(printf '%..*c\n' : abc) != a:b:c ]] 298 if [[ $(printf '%..:s\n' abc def ) != abc:def ]] 301 if [[ $(printf '%..*s\n' : abc def) != abc:def ]] 319 abc 425 exp=abc 432 exp=abc 536 for i in y y y[8] t[abc] y.d a.b a
|
| H A D | heredoc.sh | 82 abc 145 abc 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 D | comvar.sh | 213 ( [[ ${z.foo.bar:-abc} == abc ]] 2> /dev/null) || err_exit ':- not working with compound variables' 282 foo.bar=abc 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="alphabet" ) foo2=( abc="alphabet" ) 678 zz.[foo]=abc
|
| H A D | functions.sh | 101 abc() print hi function 102 if [[ $(abc) != hi ]] 105 ( unset -f abc ) 106 if [[ $(abc 2>/dev/null) != hi ]] 236 abc() function 351 zzz=abc 863 while getopts :abc OPTION "$@" 925 function abc function 933 [[ $(abc) == abc ]] || err_exit '.sh.fun.set not capturing function name' 1106 typeset bar=abc
|
| H A D | substring.sh | 68 if [[ ${string1%+(abc)} != "$base/abcabc" ]] 71 if [[ ${string1%%+(abc)} != "$base/" ]] 101 foo=abc 105 if [[ ${foo//[0-9]/bar} != abc ]] 119 if [[ ${foo//[0-9]/""} != abc ]] 170 if [[ ${xx//%28/abc\)} != 'abc)text%29' ]]
|
| H A D | io.sh | 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' 360 exp=abc
|
| H A D | bracket.sh | 243 [[ abc == ~(E)\babc\b ]] || err_exit '\b not preserved for ere when not in ()' 244 [[ abc == ~(iEi)\babc\b ]] || err_exit '\b not preserved for ~(iEi) when not in ()' 321 x=abc
|
| H A D | types.sh | 40 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 D | attributes.sh | 34 r=readonly u=Uppercase l=Lowercase i=22 i8=10 L=abc L5=def uL5=abcdef xi=20 90 x=$(foo=abc $SHELL <<! 266 foo=abc
|
| H A D | append.sh | 31 x=abc
|
| H A D | arrays.sh | 210 foovar1=abc 351 print foo${foo[abc]} 588 typeset -a foo=(abc=1 def=2)
|
| /titanic_54/usr/src/cmd/dtrace/test/tst/common/types/ |
| H A D | err.D_SYNTAX.badid.d | 39 int 0abc; 43 0abc = 5; 44 printf("0abc is %d", 0abc);
|
| /titanic_54/usr/src/cmd/dtrace/test/tst/common/pointers/ |
| H A D | err.D_OP_SOU.badpointer.d | 38 int *abc; variable 42 abc->a = 1;
|
| /titanic_54/usr/src/cmd/dtrace/test/tst/common/printf/ |
| H A D | tst.ints.d.out | 44 67890abc
|