Searched refs:LIST (Results 1 - 25 of 62) sorted by relevance

123

/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dmodword.mk7 LIST= one two three macro
8 LIST+= four five six
28 @echo 'LIST:[]="${LIST:[]}" is an error'
29 @echo 'LIST:[0]="${LIST:[0]}"'
30 @echo 'LIST:[0x0]="${LIST:[0x0]}"'
31 @echo 'LIST:[000]="${LIST
[all...]
H A Dmodts.mk2 LIST= one two three macro
3 LIST+= four five six
24 @echo 'LIST="${LIST}"'
25 @echo 'LIST:ts,="${LIST:ts,}"'
26 @echo 'LIST:ts/:tu="${LIST:ts/:tu}"'
27 @echo 'LIST:ts::tu="${LIST
[all...]
H A Dmodorder.mk3 LIST= one two three four five six seven eight nine ten macro
4 LISTX= ${LIST:Ox}
5 LISTSX:= ${LIST:Ox}
11 @echo "LIST = ${LIST}"
12 @echo "LIST:O = ${LIST:O}"
17 @echo "LIST:Ox = `test '${LIST:Ox}' != '${LIST
[all...]
H A Dmodorder.exp0 LIST = one two three four five six seven eight nine ten
2 LIST:O = eight five four nine one seven six ten three two
3 LIST:Ox = Ok
4 LIST:O:Ox = Ok
7 make: Bad modifier `:OX' for LIST
9 make: Bad modifier `:OxXX' for LIST
H A Dforloop.mk5 LIST = one "two and three" four "five" macro
13 .for x in ${LIST}
38 .for a b in ${LIST} ${LIST:tu} ${XTRA_LIST}
H A Dmodmatch.mk29 LIST= One Two Three Four five six seven macro
32 @echo Upper=${LIST:M[A-Z]*}
33 @echo Lower=${LIST:M[^A-Z]*}
34 @echo nose=${LIST:M[^s]*[ex]}
H A Dmodword.exp1 make: Bad modifier `:[]' for LIST
2 LIST:[]="" is an error
3 LIST:[0]="one two three four five six"
4 LIST:[0x0]="one two three four five six"
5 LIST:[000]="one two three four five six"
6 LIST:[*]="one two three four five six"
7 LIST:[@]="one two three four five six"
8 LIST:[0]:C/ /,/="one,two three four five six"
9 LIST:[0]:C/ /,/g="one,two,three,four,five,six"
10 LIST
[all...]
H A Dmodts.exp0 LIST="one two three four five six"
2 LIST:ts,="one,two,three,four,five,six"
3 LIST:ts/:tu="ONE/TWO/THREE/FOUR/FIVE/SIX"
4 LIST:ts::tu="ONE:TWO:THREE:FOUR:FIVE:SIX"
5 LIST:ts:tu="ONETWOTHREEFOURFIVESIX"
6 LIST:tu:ts/="ONE/TWO/THREE/FOUR/FIVE/SIX"
7 LIST:ts:="one:two:three:four:five:six"
8 LIST:ts="onetwothreefourfivesix"
9 LIST:ts:S/two/2/="one2threefourfivesix"
10 LIST
[all...]
/freebsd-11-stable/contrib/netbsd-tests/net/npf/
H A Dt_npf.sh54 LIST=/tmp/t_npf.$$
55 trap "rm -f $LIST" EXIT
57 sh -ec 'npftest -L || printf "dummy\tnone\n"' > $LIST 2>/dev/null
62 done < $LIST
/freebsd-11-stable/usr.bin/mklocale/
H A Dlex.l92 return(LIST); }
94 return(LIST); }
96 return(LIST); }
98 return(LIST); }
100 return(LIST); }
102 return(LIST); }
104 return(LIST); }
106 return(LIST); }
108 return(LIST); }
110 return(LIST); }
[all...]
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dsnmpmod.h59 #define INSERT_OBJECT_OID_LINK_INDEX(PTR, LIST, LINK, INDEX) do { \
62 TAILQ_FOREACH(_lelem, (LIST), LINK) \
66 TAILQ_INSERT_TAIL((LIST), (PTR), LINK); \
71 #define INSERT_OBJECT_INT_LINK_INDEX(PTR, LIST, LINK, INDEX) do { \
74 TAILQ_FOREACH(_lelem, (LIST), LINK) \
78 TAILQ_INSERT_TAIL((LIST), (PTR), LINK); \
83 #define INSERT_OBJECT_FUNC_LINK(PTR, LIST, LINK, FUNC) do { \
86 TAILQ_FOREACH(_lelem, (LIST), LINK) \
90 TAILQ_INSERT_TAIL((LIST), (PTR), LINK); \
95 #define INSERT_OBJECT_FUNC_LINK_REV(PTR, LIST, HEA
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Darlex.l53 "LIST" { return LIST; }
68 "list" { return LIST; }
H A Darparse.y47 %token LIST
125 LIST
/freebsd-11-stable/contrib/elftoolchain/ar/
H A Dacplex.l63 LIST|list { return (LIST); }
/freebsd-11-stable/contrib/ntp/
H A Dflock-build10 LIST=$MYNAME
65 case "$LIST" in
66 '') LIST="pogo" ;;
69 for i in $LIST
75 echo flock-build running on $i? check LIST, skipping
/freebsd-11-stable/crypto/openssl/util/
H A Dopenssl-format-source66 LIST=`find "$i" -name '*.[ch]' -print`
72 LIST="$i"
75 for j in $LIST
/freebsd-11-stable/usr.bin/ar/
H A Dacplex.l63 LIST|list { return (LIST); }
/freebsd-11-stable/bin/pax/
H A Dpax.h55 #define LIST 0 /* List the file in an archive */ macro
60 #define DEFOP LIST /* if no flags default is to LIST */
/freebsd-11-stable/usr.bin/tee/
H A Dtee.c62 } LIST; typedef in typeref:struct:_list
63 static LIST *head;
71 LIST *p;
149 LIST *p;
166 if ((p = malloc(sizeof(LIST))) == NULL)
/freebsd-11-stable/contrib/dialog/
H A Dfselect.c82 } LIST; typedef in typeref:struct:__anon947
90 init_list(LIST * list, WINDOW *par, WINDOW *win, int mousex)
117 data_of(LIST * list)
126 free_list(LIST * list, int reinit)
141 add_to_list(LIST * list, char *text)
160 keep_visible(LIST * list)
174 find_choice(char *target, LIST * list)
217 display_list(LIST * list)
268 fix_arrows(LIST * list)
294 show_list(char *target, LIST * lis
[all...]
/freebsd-11-stable/usr.sbin/service/
H A Dservice.sh57 l) LIST=lopt ;;
71 [ -n "${LIST}" ] && args="${args} -l"
135 if [ -n "$LIST" ]; then
/freebsd-11-stable/usr.bin/paste/
H A Dpaste.c126 } LIST; typedef in typeref:struct:_list
131 LIST *lp;
136 LIST *head, *tmp;
140 if ((lp = malloc(sizeof(LIST))) == NULL)
/freebsd-11-stable/contrib/tcsh/
H A Dtw.h84 LIST, LIST_ALL, RECOGNIZE, RECOGNIZE_ALL, RECOGNIZE_SCROLL, enumerator in enum:__anon40
/freebsd-11-stable/contrib/ntp/sntp/libevent/build-aux/
H A Dar-lib227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
269 $AR -NOLOGO -LIST "$archive" || exit $?
/freebsd-11-stable/sbin/ggate/ggatel/
H A Dggatel.c52 static enum { UNSET, CREATE, DESTROY, LIST, RESCUE } action = UNSET; enumerator in enum:__anon4792
227 action = LIST;
321 case LIST:

Completed in 236 milliseconds

123