Home
last modified time | relevance | path

Searched refs:abc (Results 1 – 25 of 51) sorted by relevance

123

/titanic_50/usr/src/lib/libsqlite/test/
H A Dquote.test27 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 Dexpr.test163 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 Dbigrow.test47 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 Dmain.test78 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 Dindex.test355 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 Dselect6.test351 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 Dselect1.test111 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}}
H A Dtable.test338 CREATE TABLE [t4'abc] AS SELECT count(*) as cnt, max(b+c) FROM [t3'xyz];
339 SELECT * FROM [t4'abc];
344 SELECT sql FROM sqlite_master WHERE name='t4''abc'
346 } {{CREATE TABLE 't4''abc'(cnt,'max(b+c)')}}
357 SELECT * FROM [t4'abc];
H A Dinsert.test124 f4 text default 'abc-123',
137 } {1 -4.32 hi abc-123 xyzzy 111 -2.22 hi hi! {}}
161 } {22 -4.44 hi abc-123 wham}
/titanic_50/usr/src/lib/libshell/common/tests/
H A Dglob.sh109 touch a b c d abc abd abe bb bcd ca cb dd de Beware
216 test_case '<match>' "'[abc'" "'['*"
217 test_case '<nomatch>' "'[abc'" '[*'
218 test_case '<match>' '[abc' "'['*"
219 test_case '<nomatch>' '[abc' '[*'
227 test_case '<nomatch>' 'abc' '??**********?****?'
228 test_case '<nomatch>' 'abc' '??**********?****c'
229 test_case '<nomatch>' 'abc' '?************c****?****'
230 test_case '<nomatch>' 'abc' '*c*?**'
231 test_case '<nomatch>' 'abc' 'a*****c*?**'
[all …]
H A Dquoting2.sh47 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 Dquoting.sh46 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 Dbuiltins.sh171 if [[ $(abc: for i in foo bar;do print $i;break abc;done) != foo ]]
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
411 exp=abc
418 exp=abc
522 for i in y y y[8] t[abc] y.d a.b a
H A Dheredoc.sh82 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 Dcomvar.sh213 ( [[ ${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" )
H A Dfunctions.sh98 abc() print hi function
99 if [[ $(abc) != hi ]]
102 ( unset -f abc )
103 if [[ $(abc 2>/dev/null) != hi ]]
233 abc() function
348 zzz=abc
860 while getopts :abc OPTION "$@"
922 function abc function
930 [[ $(abc) == abc ]] || err_exit '.sh.fun.set not capturing function name'
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 Dsubstring.sh68 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 Dio.sh320 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'
H A Dbracket.sh237 [[ 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 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 <<!
265 foo=abc
H A Dappend.sh31 x=abc
/titanic_50/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);
/titanic_50/usr/src/cmd/dtrace/test/tst/common/pointers/
H A Derr.D_OP_SOU.badpointer.d38 int *abc; variable
42 abc->a = 1;
/titanic_50/usr/src/cmd/dtrace/test/tst/common/printf/
H A Dtst.ints.d.out44 67890abc

123