Searched refs:items (Results 1 - 25 of 291) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/
H A D20000209-2.c7 #define DEFINE_CATEGORY(category, items) \
8 const int _nl_value_type_##category[] = { NO_PAREN items }
/openbsd-current/lib/libmenu/
H A Dm_items.c38 * Connect and disconnect items to and from menus *
47 | Function : int set_menu_items(MENU *menu, ITEM **items)
53 | E_CONNECTED - one or more items are already connected
59 set_menu_items(MENU *menu, ITEM **items) argument
61 T((T_CALLED("set_menu_items(%p,%p)"), (void *)menu, (void *)items));
63 if (!menu || (items && !(*items)))
69 if (menu->items)
72 if (items)
74 if (!_nc_Connect_Items(menu, items))
[all...]
H A Dm_new.c47 | Function : MENU* _nc_new_menu(SCREEN*, ITEM **items)
50 | array items and returns a pointer to the new menu.
57 NCURSES_SP_NAME(new_menu) (NCURSES_SP_DCLx ITEM **items) argument
62 T((T_CALLED("new_menu(%p,%p)"), (void *)SP_PARM, (void *)items));
77 if (items && *items)
79 if (!_nc_Connect_Items(menu, items))
98 | Function : MENU *new_menu(ITEM **items)
101 | array items and returns a pointer to the new menu.
109 new_menu(ITEM **items) argument
[all...]
H A Dm_scale.c54 | E_NOT_CONNECTED - no items are connected to menu
67 if (menu->items && *(menu->items))
H A Dm_global.c50 16, /* Nr. of items high */
51 1, /* Nr. of items wide */
52 16, /* Nr. of formatted items high */
53 1, /* Nr. of formatted items wide */
54 16, /* Nr. of items high (actual) */
68 (ITEM **)0, /* List of items */
69 0, /* Total Nr. of items in menu */
108 | of the items connected to the menu
117 ITEM **items; local
119 assert(menu && menu->items);
147 ResetConnectionInfo(MENU *menu, ITEM **items) argument
303 ITEM **items; local
[all...]
H A Dm_item_top.c53 | E_NOT_CONNECTED - there are no items for the menu
64 if (menu->items == (ITEM **)0)
80 item = menu->items[(menu->opt & O_ROWMAJOR) ? (row * menu->cols) : row];
101 if (menu && menu->items && *(menu->items))
H A Dm_opts.c76 if (menu->items && menu->items[0])
79 menu->curitem = menu->items[0];
91 if (((item = menu->items) != (ITEM **)0))
/openbsd-current/gnu/usr.bin/perl/cpan/Scalar-List-Utils/t/
H A Dsample.t11 my @items = sample 3, 1 .. 10;
12 is( scalar @items, 3, 'returns correct count when plentiful' );
14 @items = sample 10, 1 .. 10;
15 is( scalar @items, 10, 'returns correct count when exact' );
17 @items = sample 20, 1 .. 10;
18 is( scalar @items, 10, 'returns correct count when short' );
22 my @items = sample 5, 1 .. 5;
23 is_deeply( [ sort { $a <=> $b } @items ], [ 1 .. 5 ],
58 is( $destroyed_count, 7, 'the 7 unselected items were destroyed' );
62 is( $destroyed_count, 10, 'all the items wer
[all...]
/openbsd-current/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-env/
H A Dprint_environment.py6 sorted_environment = sorted(os.environ.items())
/openbsd-current/gnu/usr.bin/perl/Porting/
H A Dsort_perldiag.pl7 my %items;
17 $items{$item_key} .= $_;
20 # no more items in this group
22 foreach my $item_key (sort keys %items) {
23 print $items{$item_key};
27 %items = ();
34 $items{$item_key} .= $_;
44 if (keys %items) {
47 foreach my $item_key (sort keys %items) {
48 print $items{
[all...]
H A Dperlgov-team-update20 my @items = map {; encode('utf-8', "<$_>") } $data->{$key}->@*;
22 open(my $fh, '-|', 'git', 'check-mailmap', @items)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp11667.C11 LIST() { nitems = 16; items = new T[nitems]; };
13 LIST(int u) { nitems = u; items = new T[nitems]; };
16 return items[i];
21 T* src = items;
32 if (items) delete[] items;
34 items = newlist;
39 T *items; member in class:LIST
/openbsd-current/sys/lib/libz/
H A Dzopenbsd.c26 zcalloc(void *notused, u_int items, u_int size) argument
28 return mallocarray(items, size, M_DEVBUF, M_NOWAIT);
H A Dzutil.c203 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items, unsigned size) { argument
205 ulg bsize = (ulg)items*size;
264 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) { argument
266 return _halloc((long)items, size);
283 extern voidp calloc(uInt items, uInt size);
287 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items, unsigned size) { argument
289 if (items == 0 || size == 0)
291 return reallocarray(NULL, items, size);
/openbsd-current/lib/libssl/
H A Dpqueue.c66 pitem *items; member in struct:_pqueue
109 if (pq->items == NULL) {
110 pq->items = item;
114 for (curr = NULL, next = pq->items; next != NULL;
124 pq->items = item;
142 return pq->items;
148 pitem *item = pq->items;
150 if (pq->items != NULL)
151 pq->items = pq->items
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A Dgenchars.pl161 if (items < 0 || items > 1) {
164 SP -= items;
168 if (items < 1)
198 /*if ((items % 2) != 0) {
201 SP -= items;
205 if ((items % 2) == 1)
206 file = IoIFP(sv_2io(ST(items-1)));
222 for(i=0;i+1<items;i+=2) {
385 if (items <
[all...]
/openbsd-current/gnu/llvm/lldb/examples/python/
H A Ddict_utils.py7 def __init__(self, items=[]):
8 """items can be a list of pair_lists or a dictionary"""
9 dict.__init__(self, items)
13 list_result = [item[0] for item in self.items() if item[1] == value]
20 list_result = [item[0] for item in self.items() if item[1] == value]
34 def __init__(self, initial_value=0, items=[]):
35 """items can be a list of pair_lists or a dictionary"""
36 LookupDictionary.__init__(self, items)
/openbsd-current/gnu/llvm/lldb/source/DataFormatters/
H A DTypeCategory.cpp137 void TypeCategoryImpl::Clear(FormatCategoryItems items) { argument
138 if (items & eFormatCategoryItemFormat)
141 if (items & eFormatCategoryItemSummary)
144 if (items & eFormatCategoryItemFilter)
147 if (items & eFormatCategoryItemSynth)
151 bool TypeCategoryImpl::Delete(ConstString name, FormatCategoryItems items) { argument
154 if (items & eFormatCategoryItemFormat)
157 if (items & eFormatCategoryItemSummary)
160 if (items & eFormatCategoryItemFilter)
163 if (items
169 GetCount(FormatCategoryItems items) argument
187 AnyMatches( const FormattersMatchCandidate &candidate_type, FormatCategoryItems items, bool only_enabled, const char **matching_category, FormatCategoryItems *matching_type) argument
237 AutoComplete(CompletionRequest &request, FormatCategoryItems items) argument
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D941014-3.c11 gx_font_stack_item items[1 + 5 ]; member in struct:gx_font_stack_s
70 while ( (pfont = penum->fstack.items[fdepth].font)->FontType == ft_composite )
/openbsd-current/gnu/usr.bin/perl/ext/Fcntl/
H A DFcntl.xs47 SP -= items;
49 if (items > 0)
71 if (items > 0)
84 PUSHu(items ? (SvUV(ST(0)) & S_IFMT) : S_IFMT);
/openbsd-current/lib/libz/
H A Dzutil.c200 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items, unsigned size) { argument
202 ulg bsize = (ulg)items*size;
261 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) { argument
263 return _halloc((long)items, size);
280 extern voidp calloc(uInt items, uInt size);
284 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items, unsigned size) { argument
286 if (items == 0 || size == 0)
288 return reallocarray(NULL, items, size);
/openbsd-current/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src/
H A Dzutil.c219 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items, unsigned size) argument
222 ulg bsize = (ulg)items*size;
282 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) argument
285 return _halloc((long)items, size);
303 extern voidp calloc OF((uInt items, uInt size));
309 unsigned items,
313 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
314 (voidpf)calloc(items, size);
307 zcalloc( voidpf opaque, unsigned items, unsigned size) argument
/openbsd-current/gnu/llvm/llvm/utils/Target/ARM/
H A Danalyze-match-table.py21 items = [s.strip() for s in b.split(",")]
25 insns.append((code,string,converter,items,features))
32 items = insn[3]
34 flags.update(items)
/openbsd-current/usr.bin/tmux/
H A Dtty-acs.c255 u_int items; local
259 items = nitems(tty_acs_reverse2);
262 items = nitems(tty_acs_reverse3);
265 entry = bsearch(s, table, items, sizeof table[0], tty_acs_reverse_cmp);
/openbsd-current/gnu/llvm/llvm/utils/lit/tests/Inputs/test-data-micro/
H A Ddummy_format.py27 for key,value_str in cfg.items('results'):
38 for key,micro_name in cfg.items('micro-tests'):
41 for key,value_str in cfg.items('micro-results'):

Completed in 304 milliseconds

1234567891011>>