Searched refs:items (Results 51 - 75 of 423) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/
H A DClassReader.java58 private int[] items; field in class:ClassReader
61 * The String objects corresponding to the CONSTANT_Utf8 items. This cache
64 * strategy could be extended to all constant pool items, but its benefit
65 * would not be so great for these items (because they are much less
66 * expensive to parse than CONSTANT_Utf8 items).
105 items = new int[readUnsignedShort(off + 8)];
106 int ll = items.length;
111 items[i] = index + 1;
155 int ll = items.length;
158 int index = items[
[all...]
H A DClassWriter.java134 * The type of CONSTANT_Class constant pool items.
139 * The type of CONSTANT_Fieldref constant pool items.
144 * The type of CONSTANT_Methodref constant pool items.
149 * The type of CONSTANT_InterfaceMethodref constant pool items.
154 * The type of CONSTANT_String constant pool items.
159 * The type of CONSTANT_Integer constant pool items.
164 * The type of CONSTANT_Float constant pool items.
169 * The type of CONSTANT_Long constant pool items.
174 * The type of CONSTANT_Double constant pool items.
179 * The type of CONSTANT_NameAndType constant pool items
211 Item[] items; field in class:ClassWriter
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/univ/
H A Dchecklst.cpp168 void wxCheckListBox::DoInsertItems(const wxArrayString& items, unsigned int pos) argument
170 wxListBox::DoInsertItems(items, pos);
172 unsigned int count = items.GetCount();
179 void wxCheckListBox::DoSetItems(const wxArrayString& items, void **clientData) argument
182 wxListBox::DoSetItems(items, clientData);
184 unsigned int count = items.GetCount();
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/selinux/ss/
H A Davtab.c334 u32 items, items2, val, vers = pol->policyvers; local
360 items = 0;
362 val = le32_to_cpu(buf32[items++]);
368 val = le32_to_cpu(buf32[items++]);
374 val = le32_to_cpu(buf32[items++]);
381 val = le32_to_cpu(buf32[items++]);
397 datum.data = le32_to_cpu(buf32[items++]);
404 if (items != items2) {
405 printk(KERN_ERR "SELinux: avtab: entry only had %d items, expected %d\n", items2, items);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/wince/
H A Dchecklst.cpp166 // check items
284 void wxCheckListBox::DoInsertItems(const wxArrayString& items, unsigned int pos) argument
289 for( unsigned int i = 0; i < items.GetCount(); i++ )
296 SetString( ret , items[i] );
322 void wxCheckListBox::DoSetItems(const wxArrayString& items, void **clientData) argument
324 ListView_SetItemCount( GetHwnd(), GetCount() + items.GetCount() );
326 for( unsigned int i = 0; i < items.GetCount(); i++ )
328 int pos = Append(items[i]);
366 // only for valid items (item == -1 for the virtual list
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-stmp3xxx/
H A Ddma.c247 unsigned items)
252 if (items == 0)
255 for (i = 0; i < items; i++) {
282 descriptors[items - 1].next_descr = &descriptors[0];
283 descriptors[items - 1].command->next = descriptors[0].handle;
285 chain->total_count = items;
290 chain->free_count = items;
245 stmp3xxx_dma_make_chain(int ch, struct stmp37xx_circ_dma_chain *chain, struct stmp3xxx_dma_descriptor descriptors[], unsigned items) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dctrlsub.tex15 several items, such as \helpref{wxListBox}{wxlistbox} and
19 It defines the methods for accessing the controls items and although each of
23 The items in a wxControlWithItems have (non-empty) string labels and,
31 destroyed). Finally note that in the same control all items must have client
64 Appends several items at once to the control. Notice that calling this method
65 may be much faster than appending the items one by one if you need to add a lot
66 of items.
84 Removes all items from the control.
86 {\it Clear()} also deletes the client data of the existing items if it is owned
98 items i
[all...]
H A Dlistbox.tex34 items on and off.}
36 select multiple items using the SHIFT key and the mouse or special key combinations.}
155 Fill an array of ints with the positions of the currently selected items.
176 and returns a tuple of the selected items.}
179 selected items as a list.}
183 \func{void}{InsertItems}{\param{int}{ nItems}, \param{const wxString}{ *items}, \param{unsigned int}{ pos}}
191 \docparam{nItems}{Number of items in the array {\it items}}
193 \docparam{items}{Labels of items t
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/
H A Dplaylist.c44 int items = 0, matches, ret; local
56 items++;
66 DPRINTF(E_DEBUG, L_SCANNER, "Playlist %s contains %d items\n", name, items);
75 name, matches, path, items);
83 name, path, items);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/include/
H A Dcontrol_external.h181 int (*get_enumerated_info)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items);
198 int (*read_enumerated)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items);
219 int (*write_enumerated)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items);
H A Duse-case.h183 * \param items Count of strings
186 int snd_use_case_free_list(const char *list[], int items);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk/
H A Dlistbox.h100 void GtkInsertItems(const wxArrayString& items,
112 virtual void DoInsertItems(const wxArrayString& items, unsigned int pos);
113 virtual void DoSetItems(const wxArrayString& items, void **clientData);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/cnid_dbd/
H A Ddb_param.c101 int items; local
126 while ((items = fscanf(fp, " %s %s", key, val)) != EOF) {
127 if (items != 2) {
/netgear-R7000-V1.0.7.12_1.2.5/src/router/config/
H A Ddialog.h166 struct dialog_list_item ** items);
169 struct dialog_list_item ** items, int flag);
175 struct dialog_list_item ** items);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/tre-0.8.0/lib/
H A Dtre-parse.c67 must have at least `len' items. Sets buf[0] to zero if the there
96 tre_ast_node_t ***items)
99 tre_ast_node_t **array = *items;
105 /* If the array is already 1024 items large, give up -- there's
111 new_items = xrealloc(array, sizeof(*items) * *max_i);
114 *items = array = new_items;
125 tre_expand_ctype(tre_mem_t mem, tre_ctype_t class, tre_ast_node_t ***items, argument
149 status = tre_new_item(mem, min, max, i, max_i, items);
154 status = tre_new_item(mem, min, max, i, max_i, items);
251 tre_ast_node_t ***items, in
95 tre_new_item(tre_mem_t mem, int min, int max, int *i, int *max_i, tre_ast_node_t ***items) argument
249 tre_parse_bracket_items(tre_parse_ctx_t *ctx, int negate, tre_ctype_t neg_classes[], int *num_neg_classes, tre_ast_node_t ***items, int *num_items, int *items_size) argument
423 tre_ast_node_t **items, *u, *n; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libexif-0.6.19/libexif/pentax/
H A Dmnote-pentax-entry.c74 } items[] = { variable in typeref:struct:__anon3999
347 for (i = 0; (items[i].tag && items[i].tag != entry->tag); i++);
348 if (!items[i].tag) {
355 for (j = 0; items[i].elem[j].string &&
356 (items[i].elem[j].index < vs); j++);
357 if (items[i].elem[j].index != vs) {
362 strncpy (val, _(items[i].elem[j].string), maxlen);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/widgets/
H A Dlistbox.cpp271 m_chkSort = CreateCheckBoxAndAddToSizer(sizerLeft, _T("&Sort items"));
375 wxArrayString items; local
381 items.Add(m_lbox->GetString(n));
405 m_lbox->Set(items);
484 wxArrayString items; local
485 items.Add(_T("First"));
486 items.Add(_T("another one"));
487 items.Add(_T("and the last (very very very very very very very very very very long) one"));
488 m_lbox->InsertItems(items, 0);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/cocoa/
H A Dlistbox.h91 virtual void DoInsertItems(const wxArrayString& items, unsigned int pos);
92 virtual void DoSetItems(const wxArrayString& items, void **clientData);
98 // deleting items
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/carbon/
H A Dlistbox.h122 virtual void DoInsertItems(const wxArrayString& items, unsigned int pos);
123 virtual void DoSetItems(const wxArrayString& items, void **clientData);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/motif/
H A Dlistbox.h84 virtual void DoInsertItems(const wxArrayString& items, unsigned int pos);
85 virtual void DoSetItems(const wxArrayString& items, void **clientData);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/wince/
H A Dchecklst.h3 // Purpose: wxCheckListBox class - a listbox with checkable items
55 // items may be checked
78 virtual void DoInsertItems(const wxArrayString& items, unsigned int pos);
82 virtual void DoSetItems(const wxArrayString& items, void **clientData);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ceph/crush/
H A Dmapper.c124 return bucket->items[s];
141 __u64 w = crush_hash32_4(bucket->h.hash,x, bucket->h.items[i],
146 i, x, r, bucket->h.items[i], bucket->item_weights[i],
152 return bucket->h.items[i];
213 return bucket->h.items[n >> 1];
228 draw = crush_hash32_3(bucket->h.hash, x, bucket->h.items[i], r);
236 return bucket->h.items[high];
257 return in->items[0];
278 * crush_choose - choose numrep distinct items of given type
282 * @numrep: the number of items t
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libexif-0.6.19/libexif/olympus/
H A Dmnote-olympus-entry.c86 } items[] = { variable in typeref:struct:__anon3996
429 for (i = 0; (items[i].tag && items[i].tag != entry->tag); i++)
431 if (!items[i].tag) {
435 CF (entry->format, items[i].fmt, v, maxlen);
437 for (j = 0; items[i].elem[j].string &&
438 (items[i].elem[j].index < vs); j++);
439 if (items[i].elem[j].index != vs) {
443 strncpy (v, _(items[i].elem[j].string), maxlen);
499 for (i = 0; (items[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-python/avahi/
H A D__init__.py111 for k,v in txt_dict.items():
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-python/avahi/
H A D__init__.py111 for k,v in txt_dict.items():

Completed in 168 milliseconds

1234567891011>>