Searched refs:item (Results 1 - 25 of 35) sorted by relevance

12

/ast/src/cmd/html/
H A Ddownload.sh20 : download item hosttype ...
33 item to be downloaded and \atype\a ... names the supported architecture
38 item [ type ... ]
69 item=$1
76 print -r -- ".B ${item}"
80 print -r -- ".B ${item}"
85 print -r -- ".xx link=\"./${item}-${type}.tgz ${type}\""
H A Dhtml2rtf.c893 register int item; local
914 item = 0;
924 if (!item)
926 item = c;
943 if (item == '<' && !(quote & STRING))
945 item = 0;
1082 if (!item)
1084 item = c;
1090 if (item == '&')
1092 item
[all...]
H A Dmm2twiki.sh1236 : .TH item section foot_center foot_left head_center
/ast/src/lib/libdss/
H A Dcxmap.c54 register Cxitem_t* item; local
113 masks = part->item ? part->item->mask : 0;
114 for (item = part->item; item; item = item->next)
117 dtinsert(fp->str2num, item);
118 if (item
170 register Cxitem_t* item; local
303 Cxitem_t* item; local
[all...]
H A Ddssopt.c28 * format optget(3) description item on sp given plain text and item name
164 Cxitem_t* item; local
176 for (item = (Cxitem_t*)dtfirst(map->num2str); item; item = (Cxitem_t*)dtnext(map->num2str, item))
177 if (item->mask == item->value)
178 sfprintf(sp, "[+%s?0x%016llx]", item
[all...]
H A Dtag.c428 register int item; local
444 item = 0;
455 if (item == '&')
456 item = 0;
457 if (!item)
480 item = c;
494 if (item == '<' && !(quote & STRING))
496 item = 0;
631 if (item == '<')
636 if (!item)
[all...]
H A Dcx.h322 struct Cxitem_s /* map item */
324 Cxitem_t* next; /* next item */
325 const char* name; /* item name */
327 Cxunsigned_t value; /* item value */
352 Cxitem_t* item; /* item list */ member in struct:Cxpart_s
354 Cxtype_t* type; /* item value type */
/ast/src/lib/libast/comp/
H A Dhsearch.c64 ENTRY item; member in struct:_hash_s
77 free(((Hash_t*)obj)->item.key);
117 ENTRY* hsearch(ENTRY item, ACTION action) argument
119 ENTRY* hsearch(item, action)
120 ENTRY item;
129 if(!(o = (Hash_t*)dtmatch(Hashtab,item.key)) && action == ENTER &&
131 { o->item = item;
135 return o ? &(o->item) : NIL(ENTRY*);
/ast/src/lib/libast/port/
H A Dastlicense.c200 Item_t item[ITEMS]; member in struct:Notice_s
210 lookup(register const Item_t* item, const char* name, int size) argument
216 for (i = 0; item[i].data; i++)
217 if (c == item[i].data[0] && size == item[i].size && !strncmp(name, item[i].data, size))
296 expand(Notice_t* notice, register Buffer_t* b, const Item_t* item) argument
308 if (t = item->data)
310 q = item->quote;
311 e = t + item
520 Item_t item; local
[all...]
/ast/src/cmd/ksh93/bltins/
H A Dalarm.c55 * insert timeout item on current given list in sorted order
57 static void *time_add(struct tevent *item, void *list) argument
60 if(!tp || item->milli < tp->milli)
62 item->next = tp;
63 list = (void*)item;
67 while(tp->next && item->milli > tp->next->milli)
69 item->next = tp->next;
70 tp->next = item;
72 tp = item;
78 * delete timeout item fro
80 time_delete(register struct tevent *item, void *list) argument
[all...]
/ast/src/lib/libtk/library/demos/
H A Ditems.tcl4 # canvas item types.
16 label $w.msg -font $font -wraplength 5i -justify left -text "This window contains a canvas widget with examples of the various kinds of items supported by canvases. The following operations are supported:\n Button-1 drag:\tmoves item under pointer.\n Button-2 drag:\trepositions view.\n Button-3 drag:\tstrokes out area.\n Ctrl+f:\t\tprints items under area."
70 -cap butt -join miter -tags item
71 $c create line 4.67c 1c 4.67c 4c -arrow last -tags item
72 $c create line 6.33c 1c 6.33c 4c -arrow both -tags item
75 -width 3 -fill $red -tags item
78 -arrow both -arrowshape {15 15 7} -tags item
80 -cap round -join round -tags item
84 -fill $blue -tags item
86 -arrow both -width 3 -tags item
[all...]
H A Dctext.tcl4 # item that can be edited and reconfigured in various ways.
39 # First, create the text item and give it bindings so it can be edited.
57 set item [$w create rect [expr $x] [expr $y] [expr $x+30] [expr $y+30] \
59 $w bind $item <1> "$w itemconf text $option $value"
60 $w addtag config withtag $item
75 set item [$c create rect [expr $x+40] [expr $y+40] [expr $x+50] [expr $y+50] \
77 $c bind $item <1> "$c itemconf text -anchor center"
H A Dplot.tcl49 set item [$c create oval [expr $x-6] [expr $y-6] \
52 $c addtag point withtag $item
83 # current item.
H A Dtwind.tcl140 set item [$c create oval [expr $x-6] [expr $y-6] \
143 $c addtag point withtag $item
/ast/src/cmd/cs/vcs_src/
H A Difs_agent.c58 * Find a agent item from the AgentTable
65 struct agent_item *item; local
70 item = AgentTable;
71 while( item != NULL ) {
72 if( strcmp( name, item->name ) == 0 )
73 return item;
74 item = item->next;
416 struct mount_item *item; local
422 item
[all...]
/ast/src/cmd/INIT/
H A Dproto.c1569 Item_t item[(sizeof(key)/sizeof(key[0])-1)]; member in struct:Notice_s
1579 lookup __PARAM__((register const Item_t* item, const char* name, int size), (item, name, size)) __OTORP__(register const Item_t* item; const char* name; int size;){
1584 for (i = 0; item[i].data; i++)
1585 if (c == item[i].data[0] && size == item[i].size && !sstrncmp( name, item[i].data, size))
1654 expand __PARAM__((Notice_t* notice, register Buffer_t* b, const Item_t* item), (notice, b, item)) __OTORP_
1874 Item_t item; local
[all...]
H A Dmamake.c163 typedef struct Dict_item_s /* dictionary item */
173 Dict_item_t* root; /* root item */
179 struct Rule_s* rule; /* list item */
182 typedef struct Rule_s /* rule item */
298 report(int level, char* text, char* item, unsigned long stamp) argument
325 if (item)
326 fprintf(stderr, "%s: ", item);
473 * return the value for item name in dictionary dict
572 apply(Dict_t* dict, Dict_item_t* item, int (*func)(Dict_item_t*, void*), void* handle) argument
578 right = item
1724 verify(Dict_item_t* item, void* handle) argument
1782 scan(Dict_item_t* item, void* handle) argument
1967 descend(Dict_item_t* item, void* handle) argument
1981 active(Dict_item_t* item, void* handle) argument
[all...]
/ast/src/lib/libtksh/lib/tksh7.6/
H A DldAout.tcl215 foreach item $head {
216 lappend ldCommand $item
219 foreach item $tail {
220 lappend ldCommand $item
/ast/src/cmd/jcl/
H A Dcpy2dss.c143 int item; member in struct:Cpy_s
220 if (cpy->item)
222 cpy->item = 0;
280 cpy->item = 1;
/ast/src/cmd/ksh93/sh/
H A Dxec.c659 struct openlist *item,*next; local
660 for(item=olist;item;item=next)
662 next = item->next;
663 free((void*)item);
1335 struct openlist *item; local
1344 for(item=buffp->olist;item;item
1403 struct openlist *item; local
[all...]
H A Dparse.c63 static Shnode_t *item(Lex_t*,int);
97 * write out entities for each item in the list
556 * item
557 * item | term
577 else if((t=item(lexp,SH_NL|SH_EMPTY|(flag&SH_SEMI))) && (lexp->token=='|' || lexp->token==PIPESYM2))
579 else if((t=item(lexp,SH_NL|SH_EMPTY|(flag&SH_SEMI))) && lexp->token=='|')
894 t->funct.functtre = item(lexp,SH_NOIO);
1106 * item
1116 static Shnode_t *item(Lex_t *lexp,int flag) function
1180 (tok==ELIFSYM?(lexp->token=IFSYM, tt=item(lex
[all...]
/ast/src/lib/libtk/library/
H A Dxmfbox.tcl605 set item [string tolower [$w get $i]]
606 if {[string compare $string $item] >= 0} {
609 if {[string compare $string $item] <= 0} {
/ast/src/cmd/sortlib/sync/
H A Dss.c48 int item; \
212 ss->item++;
229 if (ss->item < 2)
257 ss->item = 0;
274 ss->item++;
281 ss->item++;
293 ss->item++;
305 ss->item++;
317 ss->item++;
353 ss->item
[all...]
/ast/src/cmd/ksh93/tests/
H A Dlocale.sh75 x=$'+2+ typeset item.text\
76 +3+ item.text=\303\274\
88 item=(typeset text)
89 item.text=$'\303\274'
90 print -- \"\${item.text}\"
91 eval \"arr[0]=\$item\"
/ast/src/cmd/re/
H A Dgrep.c128 typedef struct Item_s /* list item - sue me for waste */
326 Item_t* item = (Item_t*)handle; local
328 item->hits++;
336 sfprintf(sfstdout, "%s:", item->string);

Completed in 80 milliseconds

12