| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/ |
| misc-inst.cc | 46 template string::iterator string::erase(iterator); 47 template string::iterator string::erase(iterator, iterator); 48 template void string::insert(iterator, size_type, char); 49 template void string::insert(iterator, iterator, iterator); 50 template string::iterator string::insert(iterator, char) [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/ |
| misc-inst.cc | 46 template string::iterator string::erase(iterator); 47 template string::iterator string::erase(iterator, iterator); 48 template void string::insert(iterator, size_type, char); 49 template void string::insert(iterator, iterator, iterator); 50 template string::iterator string::insert(iterator, char) [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| dbiterator.c | 40 dns_dbiterator_first(dns_dbiterator_t *iterator) { 45 REQUIRE(DNS_DBITERATOR_VALID(iterator)); 47 return (iterator->methods->first(iterator)); 51 dns_dbiterator_last(dns_dbiterator_t *iterator) { 56 REQUIRE(DNS_DBITERATOR_VALID(iterator)); 58 return (iterator->methods->last(iterator)); 62 dns_dbiterator_seek(dns_dbiterator_t *iterator, const dns_name_t *name) { 67 REQUIRE(DNS_DBITERATOR_VALID(iterator)); [all...] |
| rdatasetiter.c | 40 dns_rdatasetiter_first(dns_rdatasetiter_t *iterator) { 45 REQUIRE(DNS_RDATASETITER_VALID(iterator)); 47 return (iterator->methods->first(iterator)); 51 dns_rdatasetiter_next(dns_rdatasetiter_t *iterator) { 56 REQUIRE(DNS_RDATASETITER_VALID(iterator)); 58 return (iterator->methods->next(iterator)); 62 dns_rdatasetiter_current(dns_rdatasetiter_t *iterator, 68 REQUIRE(DNS_RDATASETITER_VALID(iterator)); [all...] |
| /src/external/bsd/wpa/dist/src/utils/ |
| radiotap.c | 53 * ieee80211_radiotap_iterator_init - radiotap parser iterator initialization 54 * @iterator: radiotap_iterator to initialize 60 * This function initializes an opaque iterator struct which can then 66 * call __ieee80211_radiotap_iterator_init() to init a semi-opaque iterator 71 * The iterator's @this_arg member points to the start of the argument 73 * found in the iterator's @this_arg_index member. This arg index corresponds 78 * iterator->max_length after executing ieee80211_radiotap_iterator_init() 82 * You must take care when dereferencing iterator.this_arg 84 * get_unaligned((type *)iterator.this_arg) to dereference 85 * iterator.this_arg for type "type" safely on all arches [all...] |
| /src/external/mpl/bind/dist/lib/dns/ |
| dbiterator.c | 40 dns__dbiterator_first(dns_dbiterator_t *iterator DNS__DB_FLARG) { 45 REQUIRE(DNS_DBITERATOR_VALID(iterator)); 47 return iterator->methods->first(iterator DNS__DB_FLARG_PASS); 51 dns__dbiterator_last(dns_dbiterator_t *iterator DNS__DB_FLARG) { 56 REQUIRE(DNS_DBITERATOR_VALID(iterator)); 58 return iterator->methods->last(iterator DNS__DB_FLARG_PASS); 62 dns__dbiterator_seek(dns_dbiterator_t *iterator, 68 REQUIRE(DNS_DBITERATOR_VALID(iterator)); [all...] |
| rdatasetiter.c | 40 dns__rdatasetiter_first(dns_rdatasetiter_t *iterator DNS__DB_FLARG) { 45 REQUIRE(DNS_RDATASETITER_VALID(iterator)); 47 return iterator->methods->first(iterator DNS__DB_FLARG_PASS); 51 dns__rdatasetiter_next(dns_rdatasetiter_t *iterator DNS__DB_FLARG) { 56 REQUIRE(DNS_RDATASETITER_VALID(iterator)); 58 return iterator->methods->next(iterator DNS__DB_FLARG_PASS); 62 dns__rdatasetiter_current(dns_rdatasetiter_t *iterator, 68 REQUIRE(DNS_RDATASETITER_VALID(iterator)); [all...] |
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| dbiterator.h | 24 * The DNS DB Iterator interface allows iteration of all of the nodes in a 37 *\li The iterator itself is not locked. The caller must ensure 40 *\li The iterator methods ensure appropriate database locking. 74 isc_result_t (*first)(dns_dbiterator_t *iterator DNS__DB_FLARG); 75 isc_result_t (*last)(dns_dbiterator_t *iterator DNS__DB_FLARG); 76 isc_result_t (*seek)(dns_dbiterator_t *iterator, 78 isc_result_t (*seek3)(dns_dbiterator_t *iterator, 80 isc_result_t (*prev)(dns_dbiterator_t *iterator DNS__DB_FLARG); 81 isc_result_t (*next)(dns_dbiterator_t *iterator DNS__DB_FLARG); 82 isc_result_t (*current)(dns_dbiterator_t *iterator, [all...] |
| rdatasetiter.h | 24 * The DNS Rdataset Iterator interface allows iteration of all of the 37 *\li The iterator itself is not locked. The caller must ensure 40 *\li The iterator methods ensure appropriate database locking. 73 isc_result_t (*first)(dns_rdatasetiter_t *iterator DNS__DB_FLARG); 74 isc_result_t (*next)(dns_rdatasetiter_t *iterator DNS__DB_FLARG); 75 void (*current)(dns_rdatasetiter_t *iterator, 89 * maintain all DB rdataset iterator invariants. 111 *\li '*iteratorp' is a valid iterator. 115 *\li All resources used by the iterator are freed. 120 #define dns_rdatasetiter_first(iterator) \ [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| dbiterator.h | 25 * The DNS DB Iterator interface allows iteration of all of the nodes in a 38 *\li The iterator itself is not locked. The caller must ensure 41 *\li The iterator methods ensure appropriate database locking. 75 isc_result_t (*first)(dns_dbiterator_t *iterator); 76 isc_result_t (*last)(dns_dbiterator_t *iterator); 77 isc_result_t (*seek)(dns_dbiterator_t *iterator, 79 isc_result_t (*prev)(dns_dbiterator_t *iterator); 80 isc_result_t (*next)(dns_dbiterator_t *iterator); 81 isc_result_t (*current)(dns_dbiterator_t *iterator, 83 isc_result_t (*pause)(dns_dbiterator_t *iterator); [all...] |
| rdatasetiter.h | 25 * The DNS Rdataset Iterator interface allows iteration of all of the 38 *\li The iterator itself is not locked. The caller must ensure 41 *\li The iterator methods ensure appropriate database locking. 74 isc_result_t (*first)(dns_rdatasetiter_t *iterator); 75 isc_result_t (*next)(dns_rdatasetiter_t *iterator); 76 void (*current)(dns_rdatasetiter_t *iterator, dns_rdataset_t *rdataset); 89 * maintain all DB rdataset iterator invariants. 109 *\li '*iteratorp' is a valid iterator. 113 *\li All resources used by the iterator are freed. 119 dns_rdatasetiter_first(dns_rdatasetiter_t *iterator); [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/ |
| iterators_fn_imps.hpp | 44 inline typename PB_DS_CLASS_C_DEC::iterator 47 { return iterator(m_a_entries); } 56 inline typename PB_DS_CLASS_C_DEC::iterator 59 { return iterator(m_a_entries + m_size); }
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/ |
| iterators_fn_imps.hpp | 44 inline typename PB_DS_CLASS_C_DEC::iterator 47 { return iterator(m_a_entries); } 56 inline typename PB_DS_CLASS_C_DEC::iterator 59 { return iterator(m_a_entries + m_size); }
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/list_update_map_/ |
| iterators_fn_imps.hpp | 44 inline typename PB_DS_CLASS_C_DEC::iterator 53 return iterator(&m_p_l->m_value, m_p_l, this); 66 return iterator(&m_p_l->m_value, m_p_l, const_cast<PB_DS_CLASS_C_DEC* >(this)); 70 inline typename PB_DS_CLASS_C_DEC::iterator 73 { return iterator(0, 0, this); }
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/list_update_map_/ |
| iterators_fn_imps.hpp | 44 inline typename PB_DS_CLASS_C_DEC::iterator 53 return iterator(&m_p_l->m_value, m_p_l, this); 66 return iterator(&m_p_l->m_value, m_p_l, const_cast<PB_DS_CLASS_C_DEC* >(this)); 70 inline typename PB_DS_CLASS_C_DEC::iterator 73 { return iterator(0, 0, this); }
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
| iterators_fn_imps.hpp | 44 inline typename PB_DS_CLASS_C_DEC::iterator 51 return (iterator(0)); 56 return (iterator(p_nd)); 76 inline typename PB_DS_CLASS_C_DEC::iterator 80 return (iterator(0));
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
| iterators_fn_imps.hpp | 44 inline typename PB_DS_CLASS_C_DEC::iterator 51 return (iterator(0)); 56 return (iterator(p_nd)); 76 inline typename PB_DS_CLASS_C_DEC::iterator 80 return (iterator(0));
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| range-chain.h | 28 /* The type of the iterator that is created by this range. */ 29 class iterator class in struct:range_chain 33 iterator (const std::vector<Range> &ranges, size_t idx) function in class:range_chain::iterator 40 bool operator== (const iterator &other) const 51 bool operator!= (const iterator &other) const 56 iterator &operator++ () 67 typename Range::iterator::value_type operator* () const 87 /* Index into the vector indicating where the current iterator 90 /* The current iterator into one of the vector ranges. If no 91 value then this (outer) iterator is at the end of the overal [all...] |
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| range-chain.h | 28 /* The type of the iterator that is created by this range. */ 29 class iterator class in struct:range_chain 33 iterator (const std::vector<Range> &ranges, size_t idx) function in class:range_chain::iterator 40 bool operator== (const iterator &other) const 51 bool operator!= (const iterator &other) const 56 iterator &operator++ () 67 typename Range::iterator::value_type operator* () const 87 /* Index into the vector indicating where the current iterator 90 /* The current iterator into one of the vector ranges. If no 91 value then this (outer) iterator is at the end of the overal [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| IdentifierResolver.h | 22 #include <iterator> 47 DeclsTy::iterator decls_begin() { return Decls.begin(); } 48 DeclsTy::iterator decls_end() { return Decls.end(); } 57 void InsertDecl(DeclsTy::iterator Pos, NamedDecl *D) { 66 /// iterator - Iterate over the decls of a specified declaration name. 69 class iterator { class in class:clang::IdentifierResolver 81 /// 2) A IdDeclInfo::DeclsTy::iterator that traverses only the decls of the 84 using BaseIter = IdDeclInfo::DeclsTy::iterator; 87 iterator(NamedDecl *D) { function in class:clang::IdentifierResolver::iterator 92 /// A IdDeclInfo::DeclsTy::iterator that walks or not the parent declaratio 94 iterator(BaseIter I) { function in class:clang::IdentifierResolver::iterator [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| PHIEliminationUtils.h | 19 MachineBasicBlock::iterator
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/gp_hash_table_map_/ |
| iterator_fn_imps.hpp | 45 typename PB_DS_CLASS_C_DEC::iterator 53 inline typename PB_DS_CLASS_C_DEC::iterator 60 return iterator(p_value, pos, this); 64 inline typename PB_DS_CLASS_C_DEC::iterator
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/gp_hash_table_map_/ |
| iterator_fn_imps.hpp | 45 typename PB_DS_CLASS_C_DEC::iterator 53 inline typename PB_DS_CLASS_C_DEC::iterator 60 return iterator(p_value, pos, this); 64 inline typename PB_DS_CLASS_C_DEC::iterator
|
| /src/crypto/external/bsd/openssl/dist/crypto/engine/ |
| eng_list.c | 44 ENGINE *iterator = engine_list_head; local 46 while (iterator != NULL) { 47 ENGINE_remove(iterator); 48 iterator = engine_list_head; 60 ENGINE *iterator = NULL; local 66 iterator = engine_list_head; 67 while (iterator && !conflict) { 68 conflict = (strcmp(iterator->id, e->id) == 0); 69 iterator = iterator->next 112 ENGINE *iterator; local 145 ENGINE *iterator = NULL; local 375 ENGINE *iterator; local [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/engine/ |
| eng_list.c | 41 ENGINE *iterator = engine_list_head; local 43 while (iterator != NULL) { 44 ENGINE_remove(iterator); 45 iterator = engine_list_head; 57 ENGINE *iterator = NULL; local 63 iterator = engine_list_head; 64 while (iterator && !conflict) { 65 conflict = (strcmp(iterator->id, e->id) == 0); 66 iterator = iterator->next 106 ENGINE *iterator; local 140 ENGINE *iterator = NULL; local 366 ENGINE *iterator; local [all...] |