Searched refs:item (Results 226 - 250 of 1050) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/motif/
H A Dchoice.cpp188 int wxChoice::DoInsert(const wxString& item, unsigned int pos) argument
193 Widget w = XtVaCreateManagedWidget (GetLabelText(item),
211 char mnem = wxFindMnemonic (item);
223 wxXmString text( item );
229 m_stringList.Insert(pos, MYcopystring(item));
235 int wxChoice::DoAppend(const wxString& item) argument
237 return DoInsert(item, GetCount());
421 wxChoice *item = (wxChoice *) clientData; local
422 if (item)
424 if (item
[all...]
H A Dcombobox_native.cpp190 // delete the item and add it again.
209 int wxComboBox::DoAppend(const wxString& item) argument
211 wxXmString str( item.c_str() );
219 int wxComboBox::DoInsert(const wxString& item, unsigned int pos) argument
225 return DoAppend(item);
227 wxXmString str( item.c_str() );
369 wxComboBox *item = (wxComboBox *) clientData; variable
371 if( item->m_inSetSelection ) return;
382 item->GetId());
385 event.SetString( item
[all...]
H A Dradiobox.cpp44 // Radio box item
170 void wxRadioBox::SetString(unsigned int item, const wxString& label) argument
172 if (!IsValid(item))
175 Widget widget = (Widget)m_radioButtons[item];
180 m_radioButtonLabels[item] = label1;
295 // to the on state, it's the prog. resp. to call SetString(item,...)
382 wxRadioBox *item = (wxRadioBox *) clientData;
385 const wxWidgetArray& buttons = item->GetRadioButtons();
386 for (i = 0; i < item->GetCount(); i++)
389 item
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dlistctrl.tex94 \twocolitem{{\bf EVT\_LIST\_DELETE\_ITEM(id, func)}}{Delete an item.}
96 %\twocolitem{{\bf EVT\_LIST\_GET\_INFO(id, func)}}{Request information from the application, usually the item text.}
98 \twocolitem{{\bf EVT\_LIST\_ITEM\_SELECTED(id, func)}}{The item has been selected.}
99 \twocolitem{{\bf EVT\_LIST\_ITEM\_DESELECTED(id, func)}}{The item has been deselected.}
100 \twocolitem{{\bf EVT\_LIST\_ITEM\_ACTIVATED(id, func)}}{The item has been activated (ENTER or double click).}
101 \twocolitem{{\bf EVT\_LIST\_ITEM\_FOCUSED(id, func)}}{The currently focused item has changed.}
102 \twocolitem{{\bf EVT\_LIST\_ITEM\_MIDDLE\_CLICK(id, func)}}{The middle mouse button has been clicked on an item.}
103 \twocolitem{{\bf EVT\_LIST\_ITEM\_RIGHT\_CLICK(id, func)}}{The right mouse button has been clicked on an item.}
105 \twocolitem{{\bf EVT\_LIST\_INSERT\_ITEM(id, func)}}{An item has been inserted.}
229 \func{bool}{DeleteItem}{\param{long }{item}}
[all...]
H A Dgridbagsizer.tex38 \func{wxSizerItem*}{Add}{\param{wxGBSizerItem* }{item}}
40 The Add methods return a valid pointer if the item was successfully placed at the
52 \func{bool}{CheckForIntersection}{\param{wxGBSizerItem* }{item}, \param{wxGBSizerItem* }{excludeItem = NULL}}
57 item. Returns true if so, false if there would be no overlap. If an
59 example it may be the item we are checking the position of.
67 Find the sizer item for the given window or subsizer, returns NULL if
74 Return the sizer item located at the point given in pt, or NULL if
75 there is no item at that point. The (x,y) coordinates in pt correspond
83 Return the sizer item for the given grid cell, or NULL if there is no
84 item a
[all...]
H A Dttreectl.tex5 The tree control displays its items in a tree like structure. Each item has its
6 own (optional) icon and a label. An item may be either collapsed (meaning that
8 shown). Each item in the tree is identified by its {\it itemId} which is of
9 opaque data type {\it wxTreeItemId}. You can test whether an item is valid
16 In fact, an item may even have two images associated with it: the normal one
21 Tree items have several attributes: an item may be selected or not, visible or
26 and \helpref{IsExpanded}{wxtreectrlisexpanded}. Only one item at a time may be
34 GetId()} which returns the id of the item this data is associated with. This
35 data will be freed by the control itself when the associated item is deleted
46 beginning, only the root item i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/
H A Dd1_lib.c172 pitem *item = NULL; local
176 while ((item = pqueue_pop(s->d1->unprocessed_rcds.q)) != NULL) {
177 rdata = (DTLS1_RECORD_DATA *)item->data;
181 OPENSSL_free(item->data);
182 pitem_free(item);
185 while ((item = pqueue_pop(s->d1->processed_rcds.q)) != NULL) {
186 rdata = (DTLS1_RECORD_DATA *)item->data;
190 OPENSSL_free(item->data);
191 pitem_free(item);
194 while ((item
[all...]
H A Dd1_both.c616 pitem *item; local
621 item = pqueue_peek(s->d1->buffered_messages);
622 if (item == NULL)
625 frag = (hm_fragment *)item->data;
645 pitem_free(item);
678 pitem *item = NULL; local
690 /* Try to find item in queue */
694 item = pqueue_find(s->d1->buffered_messages, seq64be);
696 if (item == NULL) {
704 frag = (hm_fragment *)item
785 pitem *item = NULL; local
1115 pitem *item; local
1138 pitem *item; local
1209 pitem *item; local
1302 pitem *item; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dradiobox.cpp99 item
127 // Radio box item
339 void wxRadioBox::SetString(unsigned int item, const wxString& label) argument
341 wxCHECK_RET( IsValid(item), wxT("invalid radiobox index") );
343 m_radioWidth[item] =
344 m_radioHeight[item] = wxDefaultCoord;
346 ::SetWindowText((*m_radioButtons)[item], label.c_str());
366 wxString wxRadioBox::GetString(unsigned int item) const
368 wxCHECK_MSG( IsValid(item), wxEmptyString,
371 return wxGetWindowText((*m_radioButtons)[item]);
385 Enable(unsigned int item, bool enable) argument
404 Show(unsigned int item, bool show) argument
439 DoSetItemToolTip(unsigned int item, wxToolTip *tooltip) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/
H A Dnetconsole.c77 * @item: Links us into the configfs subsystem hierarchy.
97 struct config_item item; member in struct:netconsole_target
126 if (config_item_name(&nt->item))
127 config_item_get(&nt->item);
132 if (config_item_name(&nt->item))
133 config_item_put(&nt->item);
237 static struct netconsole_target *to_target(struct config_item *item) argument
239 return item ?
240 container_of(item, struct netconsole_target, item)
532 netconsole_target_release(struct config_item *item) argument
537 netconsole_target_attr_show(struct config_item *item, struct configfs_attribute *attr, char *buf) argument
552 netconsole_target_attr_store(struct config_item *item, struct configfs_attribute *attr, const char *buf, size_t count) argument
617 drop_netconsole_target(struct config_group *group, struct config_item *item) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/contrib/untgz/
H A Duntgz.c255 struct attr_item *item; local
257 item = (struct attr_item *)malloc(sizeof(struct attr_item));
258 if (item == NULL)
260 item->fname = strdup(fname);
261 item->mode = mode;
262 item->time = time;
263 item->next = *list;
264 *list = item;
272 struct attr_item *item, *prev; local
274 for (item
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/contrib/untgz/
H A Duntgz.c255 struct attr_item *item; local
257 item = (struct attr_item *)malloc(sizeof(struct attr_item));
258 if (item == NULL)
260 item->fname = strdup(fname);
261 item->mode = mode;
262 item->time = time;
263 item->next = *list;
264 *list = item;
272 struct attr_item *item, *prev; local
274 for (item
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/contrib/untgz/
H A Duntgz.c255 struct attr_item *item; local
257 item = (struct attr_item *)malloc(sizeof(struct attr_item));
258 if (item == NULL)
260 item->fname = strdup(fname);
261 item->mode = mode;
262 item->time = time;
263 item->next = *list;
264 *list = item;
272 struct attr_item *item, *prev; local
274 for (item
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/contrib/untgz/
H A Duntgz.c255 struct attr_item *item; local
257 item = (struct attr_item *)malloc(sizeof(struct attr_item));
258 if (item == NULL)
260 item->fname = strdup(fname);
261 item->mode = mode;
262 item->time = time;
263 item->next = *list;
264 *list = item;
272 struct attr_item *item, *prev; local
274 for (item
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/libsmbclient/
H A Dtestbrowse2.c51 smbitem *item, **array; local
115 smbitem *list = NULL, *item; local
123 if ((item = malloc(sizeof(smbitem) + strlen(dirent->name))) == NULL)
126 item->next = list;
127 item->type = dirent->smbc_type;
128 strcpy(item->name, dirent->name);
129 list = item;
147 smbitem *list, *item; local
188 item = list;
190 free(item);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/dhcp6/
H A Dserver6_conf.c123 struct scopelist *item; local
124 item = (struct scopelist *)malloc(sizeof(*item));
125 if (item == NULL) {
129 memset(item, 0, sizeof(*item));
130 item->scope = scope;
133 current->next->prev = item;
134 item->next = current->next;
135 current->next = item;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/dhcp6/
H A Dserver6_conf.c123 struct scopelist *item; local
124 item = (struct scopelist *)malloc(sizeof(*item));
125 if (item == NULL) {
129 memset(item, 0, sizeof(*item));
130 item->scope = scope;
133 current->next->prev = item;
134 item->next = current->next;
135 current->next = item;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/src/alisp/
H A Dalisp_snd.c24 struct alisp_object * (*func) (struct alisp_instance *instance, struct acall_table * item, struct alisp_object * args);
283 static struct alisp_object * FA_int_pp_strp_int(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
304 err = ((snd_int_pp_strp_int_t)item->xfunc)(&handle, name, mode);
306 return new_result1(instance, err, item->prefix, handle);
309 static struct alisp_object * FA_int_pp_p(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
316 if (item->xfunc == &snd_hctl_open_ctl)
328 err = ((snd_int_pp_p_t)item->xfunc)(&handle, handle);
329 return new_result1(instance, err, item->prefix, handle);
332 static struct alisp_object * FA_p_p(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
338 if (item
359 FA_int_p(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
373 FA_str_p(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
387 FA_int_intp(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
405 FA_int_str(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
423 FA_int_int_strp(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
443 FA_card_info(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
523 FA_hctl_find_elem(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
545 FA_hctl_elem_info(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
591 unsigned int items, item; local
625 FA_hctl_elem_read(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
689 FA_hctl_elem_write(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
756 FA_pcm_info(struct alisp_instance * instance, struct acall_table * item, struct alisp_object * args) argument
827 struct acall_table key, *item; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/
H A Dupnpsoap.c297 char *item, *saveptr = NULL; local
302 item = strtok_r(filter, ",", &saveptr);
303 while( item != NULL )
306 *(item-1) = ',';
307 if( strcmp(item, "@childCount") == 0 )
311 else if( strcmp(item, "dc:creator") == 0 )
315 else if( strcmp(item, "dc:date") == 0 )
319 else if( strcmp(item, "dc:description") == 0 )
323 else if( strcmp(item, "dlna") == 0 )
327 else if( strcmp(item, "
416 char *item, *saveptr; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/hid/
H A Dhid-core.c264 * Read data value from item.
267 static u32 item_udata(struct hid_item *item) argument
269 switch (item->size) {
270 case 1: return item->data.u8;
271 case 2: return item->data.u16;
272 case 4: return item->data.u32;
277 static s32 item_sdata(struct hid_item *item) argument
279 switch (item->size) {
280 case 1: return item->data.s8;
281 case 2: return item
291 hid_parser_global(struct hid_parser *parser, struct hid_item *item) argument
386 hid_parser_local(struct hid_parser *parser, struct hid_item *item) argument
478 hid_parser_main(struct hid_parser *parser, struct hid_item *item) argument
515 hid_parser_reserved(struct hid_parser *parser, struct hid_item *item) argument
565 fetch_item(__u8 *start, __u8 *end, struct hid_item *item) argument
642 struct hid_item item; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/ssl/
H A Dd1_both.c616 pitem *item; local
621 item = pqueue_peek(s->d1->buffered_messages);
622 if (item == NULL)
625 frag = (hm_fragment *)item->data;
645 pitem_free(item);
678 pitem *item = NULL; local
690 /* Try to find item in queue */
694 item = pqueue_find(s->d1->buffered_messages, seq64be);
696 if (item == NULL) {
704 frag = (hm_fragment *)item
785 pitem *item = NULL; local
1115 pitem *item; local
1138 pitem *item; local
1209 pitem *item; local
1302 pitem *item; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/carbon/
H A Dmenu.h64 wxInt32 MacHandleCommandProcess( wxMenuItem* item, int id, wxWindow* targetWindow = NULL );
65 wxInt32 MacHandleCommandUpdateStatus( wxMenuItem* item, int id, wxWindow* targetWindow = NULL);
68 virtual wxMenuItem* DoAppend(wxMenuItem *item);
69 virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item);
70 virtual wxMenuItem* DoRemove(wxMenuItem *item);
77 bool DoInsertOrAppend(wxMenuItem *item, size_t pos = (size_t)-1);
82 // if TRUE, insert a breal before appending the next item
85 // the position of the first item in the current radio group or -1
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/
H A Dlistbox.h34 // List box item
100 virtual int DoAppend(const wxString& item);
117 // allows to get the item and use SetXXX functions to set it's appearance
120 // get the index of the given item
121 int GetItemIndex(wxOwnerDrawn *item) const { return m_aItems.Index(item); }
139 void MacInsert( int n , const wxString& item) ;
140 void MacAppend( const wxString& item) ;
141 void MacSet( int n , const wxString& item ) ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/dbm/
H A Ddbm.c113 datum item; local
117 item.dptr = NULL;
118 item.dsize = 0;
119 return (item);
127 datum item; local
131 item.dptr = NULL;
132 item.dsize = 0;
133 return (item);
142 datum item; local
148 item
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/univ/
H A Dchecklst.h73 virtual bool IsChecked(unsigned int item) const;
74 virtual void Check(unsigned int item, bool check = true);
92 virtual int DoAppend(const wxString& item);

Completed in 305 milliseconds

1234567891011>>