Searched refs:iterator (Results 76 - 100 of 311) 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/persist/
H A DEntityCursor.java106 * <p>The {@link #iterator} method can be used to return a standard Java {@code
113 * {@code Iterator<Employee>} i = cursor.iterator();
135 * <p>The iterator uses the cursor directly, so any changes to the cursor
136 * position impact the iterator and vice versa. The iterator advances the
540 * Returns an iterator over the key range, starting with the value
546 * @return the iterator.
548 Iterator<V> iterator(); method in interface:EntityCursor
551 * Returns an iterator over the key range, starting with the value
556 * using the iterator, o
560 Iterator<V> iterator(LockMode lockMode); method in interface:EntityCursor
[all...]
H A DBasicCursor.java163 public Iterator<V> iterator() { method in class:BasicCursor
164 return iterator(null);
167 public Iterator<V> iterator(LockMode lockMode) { method in class:BasicCursor
/netgear-R7000-V1.0.7.12_1.2.5/src/router/bridge-1.x/libbridge/
H A Dlibbridge.h83 extern int br_foreach_bridge(int (*iterator)(const char *brname, void *),
86 int (*iterator)(const char *brname, const char *port,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DGapList.cpp75 iterator it = m_gaplist.lower_bound(gapstart > 0 ? gapstart - 1 : 0);
77 iterator it2 = it++;
141 iterator it = m_gaplist.lower_bound(partstart);
143 iterator it2 = it++;
169 iterator it3(it2);
179 iterator it3(it2);
H A DUploadQueue.cpp80 CClientRefList::iterator it = m_waitinglist.begin();
82 CClientRefList::iterator it2 = it++;
108 CClientRefList::iterator it1 = it2;
129 CClientRefList::iterator it2 = it++;
265 CClientRefList::iterator it = m_uploadinglist.begin();
358 CClientRefList::iterator it = m_waitinglist.begin();
399 CClientList::SourceList::iterator it = found.begin();
527 CClientRefList::iterator it = std::find(m_uploadinglist.begin(),
563 for (CClientRefList::iterator it = m_uploadinglist.begin(); it != m_uploadinglist.end(); ++it) {
622 CClientRefList::iterator i
[all...]
H A DGenericClientListCtrl.h230 typedef std::pair< ListItems::iterator, ListItems::iterator > ListIteratorPair;
254 void RawRemoveSource( ListItems::iterator& it );
H A DSharedFileList.cpp97 KnownFileArray::iterator it = std::find(m_aFiles.begin(), m_aFiles.end(), pFile);
155 CKeyWordList::iterator m_posNextKeyword;
158 CPublishKeyword* FindKeyword(const wxString& rstrKeyword, CKeyWordList::iterator* ppos = NULL);
188 CPublishKeyword* CPublishKeywordList::FindKeyword(const wxString& rstrKeyword, CKeyWordList::iterator* ppos)
190 CKeyWordList::iterator it = m_lstKeywords.begin();
228 CKeyWordList::iterator pos;
262 CKeyWordList::iterator it = m_lstKeywords.begin();
271 CKeyWordList::iterator it = m_lstKeywords.begin();
357 for (std::list<CPath>::iterator it = sharedPaths.begin(); it != sharedPaths.end(); ++it) {
364 for (TaskList::iterator i
[all...]
H A DDownloadListCtrl.h211 typedef std::pair< ListItems::iterator, ListItems::iterator > ListIteratorPair;
H A DUploadQueue.h71 void RemoveFromWaitingQueue(CClientRefList::iterator pos);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dstring.h305 typedef value_type *iterator; typedef in class:wxStringBase
477 iterator begin();
480 iterator end();
509 iterator insert(iterator it, wxChar ch)
511 void insert(iterator it, const_iterator first, const_iterator last)
513 void insert(iterator it, size_type n, wxChar ch)
518 iterator erase(iterator first, iterator las
[all...]
H A Ddynarray.h200 typedef value_type* iterator; \
210 iterator erase(iterator first, iterator last) \
216 iterator erase(iterator it) { return erase(it, it + 1); } \
217 void insert(iterator it, size_type n, const value_type& v) \
219 iterator insert(iterator it, const value_type& v = value_type()) \
225 void insert(iterator i
[all...]
H A Dclntdata.h38 wxShadowObjectMethods::iterator it = m_methods.find( name );
47 wxShadowObjectMethods::iterator it = m_methods.find( name );
59 wxShadowObjectFields::iterator it = m_fields.find( name );
68 wxShadowObjectFields::iterator it = m_fields.find( name );
76 wxShadowObjectFields::iterator it = m_fields.find( name );
H A Dhashmap.h178 /* forward iterator */ \
213 CLASSEXP iterator : public Iterator \
216 iterator() : Iterator() {} \
217 iterator( Node* node, Self* ht ) : Iterator( node, ht ) {} \
218 iterator& operator++() { PlusPlus(); return *this; } \
219 iterator operator++(int) { iterator it=*this;PlusPlus();return it; } \
228 const_iterator(iterator i) : Iterator(i) {} \
295 iterator end() { return iterator(
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dhashmap.tex36 MyHash2::iterator it;
133 \twocolitem{wxHashMap::iterator}{Used to enumerate all the elements in a hash
144 An iterator is similar to a pointer, and so you can use the usual pointer
172 \func{iterator}{begin}{}
174 Returns an iterator pointing at the first element of the hash map.
200 \func{iterator}{end}{}
202 Returns an iterator pointing at the one-after-the-last element of the hash map.
212 \func{void}{erase}{\param{iterator}{ it}}
216 Erases the element pointed to by the iterator. After the deletion
217 the iterator i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/common/
H A DFormat.cpp180 template<> void CFormat::ProcessArgument(FormatList::iterator, const wxString&);
222 for (FormatList::iterator it = m_formats.begin(); it != m_formats.end();) {
380 template<> void CFormat::ProcessArgument(FormatList::iterator, unsigned long long);
384 void CFormat::ProcessArgument(FormatList::iterator it, double value)
408 void CFormat::ProcessArgument(FormatList::iterator it, wxChar value)
443 void CFormat::ProcessArgument(FormatList::iterator it, signed long long value)
480 void CFormat::ProcessArgument(FormatList::iterator it, unsigned long long value)
515 void CFormat::ProcessArgument(FormatList::iterator it, const wxString& value)
537 void CFormat::ProcessArgument(FormatList::iterator it, void * value)
563 for (FormatList::iterator i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dgl_array_list.c454 gl_array_iterator_next (gl_list_iterator_t *iterator, argument
457 gl_list_t list = iterator->list;
458 if (iterator->count != list->count)
460 if (iterator->count != list->count + 1)
464 iterator->count--;
465 iterator->p = (const void **) iterator->p - 1;
466 iterator->q = (const void **) iterator->q - 1;
468 if (iterator
482 gl_array_iterator_free(gl_list_iterator_t *iterator) argument
[all...]
H A Dgl_list.h258 /* Type of an iterator that traverses a list.
259 This is a fixed-size struct, so that creation of an iterator doesn't need
273 /* Create an iterator traversing a list.
274 The list contents must not be modified while the iterator is in use,
278 /* Create an iterator traversing the element with indices i,
280 The list contents must not be modified while the iterator is in use,
287 node in *NODEP if NODEP is non-NULL, advance the iterator and return true.
289 extern bool gl_list_iterator_next (gl_list_iterator_t *iterator,
292 /* Free an iterator. */
293 extern void gl_list_iterator_free (gl_list_iterator_t *iterator);
405 gl_list_iterator_t (*iterator) (gl_list_t list); member in struct:gl_list_implementation
667 gl_list_iterator_next(gl_list_iterator_t *iterator, const void **eltp, gl_list_node_t *nodep) argument
675 gl_list_iterator_free(gl_list_iterator_t *iterator) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/xml-rpc/
H A Dxml-rpc.h37 /// for C++ only: external iterator class for structs
40 /// for C++ only: external iterator class for arrays
43 /// for C++ only: external iterator class for parameters
96 typedef _struct_iterator iterator; typedef in struct:_struct
103 _struct_iterator begin(); ///< struct accessor iterator begin
104 _struct_iterator end(); ///< struct accessor iterator end
129 typedef _array_iterator iterator; typedef in struct:_array
136 _array_iterator begin(); ///< array iterator begin
137 _array_iterator end(); ///< array iterator end
224 typedef params_iterator iterator; typedef in struct:params
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/xml-rpc/
H A Dxml-rpc.h37 /// for C++ only: external iterator class for structs
40 /// for C++ only: external iterator class for arrays
43 /// for C++ only: external iterator class for parameters
96 typedef _struct_iterator iterator; typedef in struct:_struct
103 _struct_iterator begin(); ///< struct accessor iterator begin
104 _struct_iterator end(); ///< struct accessor iterator end
129 typedef _array_iterator iterator; typedef in struct:_array
136 _array_iterator begin(); ///< array iterator begin
137 _array_iterator end(); ///< array iterator end
224 typedef params_iterator iterator; typedef in struct:params
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DStoredEntrySet.java153 Object makeIteratorData(BaseIterator iterator, argument
160 this, iterator);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/grabbag/
H A Dreplaygain.c445 FLAC__Metadata_Iterator *iterator; local
458 if(0 == (iterator = FLAC__metadata_iterator_new())) {
463 FLAC__metadata_iterator_init(iterator, *chain);
466 *block = FLAC__metadata_iterator_get_block(iterator);
469 } while(!found_vc_block && FLAC__metadata_iterator_next(iterator));
476 FLAC__metadata_iterator_delete(iterator);
479 while(FLAC__metadata_iterator_next(iterator))
481 if(!FLAC__metadata_iterator_insert_block_after(iterator, *block)) {
484 FLAC__metadata_iterator_delete(iterator);
487 /* iterator i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/VisualStudio2005/wsdl2h/wsdl2h/
H A Dincludes.h48 #include <iterator>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/unittests/muleunit/
H A Dtestcase.cpp67 TestList::iterator it = m_tests.begin();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dchannels.cpp21 RouteList::iterator it = upper_bound(m_routes.begin(), m_routes.end(), route);
266 for (DefaultRouteList::iterator it = m_defaultRoutes.begin(); it != m_defaultRoutes.end(); ++it)
281 for (DefaultRouteList::iterator it = m_defaultRoutes.begin(); it != m_defaultRoutes.end(); ++it)
296 typedef ChannelSwitch::RouteMap::iterator MapIterator;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/cocoa/
H A Dmenuitem.h49 wxMenuItemCocoaHash::iterator iter=sm_cocoaHash.find(cocoaNSMenuItem);

Completed in 325 milliseconds

1234567891011>>