Symbol: pair
headers/build/private/storage/mime/MimeUpdateThread.h
51
std::list< std::pair<dev_t, bool> > fAttributeSupportList;
headers/cpp/pair.h
42
using __STD::pair;
headers/cpp/stl_algo.h
1847
pair<_ForwardIter, _ForwardIter>
headers/cpp/stl_algo.h
1871
return pair<_ForwardIter, _ForwardIter>(__left, __right);
headers/cpp/stl_algo.h
1874
return pair<_ForwardIter, _ForwardIter>(__first, __first);
headers/cpp/stl_algo.h
1878
inline pair<_ForwardIter, _ForwardIter>
headers/cpp/stl_algo.h
1885
pair<_ForwardIter, _ForwardIter>
headers/cpp/stl_algo.h
1909
return pair<_ForwardIter, _ForwardIter>(__left, __right);
headers/cpp/stl_algo.h
1912
return pair<_ForwardIter, _ForwardIter>(__first, __first);
headers/cpp/stl_algo.h
1916
inline pair<_ForwardIter, _ForwardIter>
headers/cpp/stl_algobase.h
309
pair<_InputIter, _OutputIter> __copy_n(_InputIter __first, _Size __count,
headers/cpp/stl_algobase.h
317
return pair<_InputIter, _OutputIter>(__first, __result);
headers/cpp/stl_algobase.h
321
inline pair<_RAIter, _OutputIter>
headers/cpp/stl_algobase.h
326
return pair<_RAIter, _OutputIter>(__last, copy(__first, __last, __result));
headers/cpp/stl_algobase.h
330
inline pair<_InputIter, _OutputIter>
headers/cpp/stl_algobase.h
337
inline pair<_InputIter, _OutputIter>
headers/cpp/stl_algobase.h
363
pair<_InputIter1, _InputIter2> mismatch(_InputIter1 __first1,
headers/cpp/stl_algobase.h
370
return pair<_InputIter1, _InputIter2>(__first1, __first2);
headers/cpp/stl_algobase.h
374
pair<_InputIter1, _InputIter2> mismatch(_InputIter1 __first1,
headers/cpp/stl_algobase.h
382
return pair<_InputIter1, _InputIter2>(__first1, __first2);
headers/cpp/stl_hash_map.h
160
pair<iterator,bool> insert(const value_type& __obj)
headers/cpp/stl_hash_map.h
173
pair<iterator,bool> insert_noresize(const value_type& __obj)
headers/cpp/stl_hash_map.h
186
pair<iterator, iterator> equal_range(const key_type& __key)
headers/cpp/stl_hash_map.h
188
pair<const_iterator, const_iterator>
headers/cpp/stl_hash_map.h
235
typedef hashtable<pair<const _Key, _Tp>, _Key, _HashFcn,
headers/cpp/stl_hash_map.h
236
_Select1st<pair<const _Key, _Tp> >, _EqualKey, _Alloc>
headers/cpp/stl_hash_map.h
366
pair<iterator, iterator> equal_range(const key_type& __key)
headers/cpp/stl_hash_map.h
368
pair<const_iterator, const_iterator>
headers/cpp/stl_hash_map.h
53
typedef hashtable<pair<const _Key,_Tp>,_Key,_HashFcn,
headers/cpp/stl_hash_map.h
54
_Select1st<pair<const _Key,_Tp> >,_EqualKey,_Alloc> _Ht;
headers/cpp/stl_hash_set.h
156
pair<iterator, bool> insert(const value_type& __obj)
headers/cpp/stl_hash_set.h
158
pair<typename _Ht::iterator, bool> __p = _M_ht.insert_unique(__obj);
headers/cpp/stl_hash_set.h
159
return pair<iterator,bool>(__p.first, __p.second);
headers/cpp/stl_hash_set.h
172
pair<iterator, bool> insert_noresize(const value_type& __obj)
headers/cpp/stl_hash_set.h
174
pair<typename _Ht::iterator, bool> __p =
headers/cpp/stl_hash_set.h
176
return pair<iterator, bool>(__p.first, __p.second);
headers/cpp/stl_hash_set.h
183
pair<iterator, iterator> equal_range(const key_type& __key) const
headers/cpp/stl_hash_set.h
355
pair<iterator, iterator> equal_range(const key_type& __key) const
headers/cpp/stl_hashtable.h
354
pair<iterator, bool> insert_unique(const value_type& __obj)
headers/cpp/stl_hashtable.h
366
pair<iterator, bool> insert_unique_noresize(const value_type& __obj);
headers/cpp/stl_hashtable.h
491
pair<iterator, iterator>
headers/cpp/stl_hashtable.h
494
pair<const_iterator, const_iterator>
headers/cpp/stl_hashtable.h
698
pair<typename hashtable<_Val,_Key,_HF,_Ex,_Eq,_All>::iterator, bool>
headers/cpp/stl_hashtable.h
707
return pair<iterator, bool>(iterator(__cur, this), false);
headers/cpp/stl_hashtable.h
713
return pair<iterator, bool>(iterator(__tmp, this), true);
headers/cpp/stl_hashtable.h
761
pair<typename hashtable<_Val,_Key,_HF,_Ex,_Eq,_All>::iterator,
headers/cpp/stl_hashtable.h
765
typedef pair<iterator, iterator> _Pii;
headers/cpp/stl_hashtable.h
783
pair<typename hashtable<_Val,_Key,_HF,_Ex,_Eq,_All>::const_iterator,
headers/cpp/stl_hashtable.h
788
typedef pair<const_iterator, const_iterator> _Pii;
headers/cpp/stl_map.h
161
pair<iterator,bool> insert(const value_type& __x)
headers/cpp/stl_map.h
199
pair<iterator,iterator> equal_range(const key_type& __x) {
headers/cpp/stl_map.h
202
pair<const_iterator,const_iterator> equal_range(const key_type& __x) const {
headers/cpp/stl_map.h
56
typedef pair<const _Key, _Tp> value_type;
headers/cpp/stl_multimap.h
187
pair<iterator,iterator> equal_range(const key_type& __x) {
headers/cpp/stl_multimap.h
190
pair<const_iterator,const_iterator> equal_range(const key_type& __x) const {
headers/cpp/stl_multimap.h
56
typedef pair<const _Key, _Tp> value_type;
headers/cpp/stl_multiset.h
182
pair<iterator,iterator> equal_range(const key_type& __x) const {
headers/cpp/stl_pair.h
43
pair() : first(_T1()), second(_T2()) {}
headers/cpp/stl_pair.h
44
pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
headers/cpp/stl_pair.h
48
pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
headers/cpp/stl_pair.h
53
inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
headers/cpp/stl_pair.h
59
inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
headers/cpp/stl_pair.h
66
inline pair<_T1, _T2> make_pair(const _T1& __x, const _T2& __y)
headers/cpp/stl_pair.h
68
return pair<_T1, _T2>(__x, __y);
headers/cpp/stl_set.h
132
pair<iterator,bool> insert(const value_type& __x) {
headers/cpp/stl_set.h
133
pair<typename _Rep_type::iterator, bool> __p = _M_t.insert_unique(__x);
headers/cpp/stl_set.h
134
return pair<iterator, bool>(__p.first, __p.second);
headers/cpp/stl_set.h
176
pair<iterator,iterator> equal_range(const key_type& __x) const {
headers/cpp/stl_tempbuf.h
38
pair<_Tp*, ptrdiff_t>
headers/cpp/stl_tempbuf.h
47
return pair<_Tp*, ptrdiff_t>(__tmp, __len);
headers/cpp/stl_tempbuf.h
51
return pair<_Tp*, ptrdiff_t>((_Tp*)0, 0);
headers/cpp/stl_tempbuf.h
57
inline pair<_Tp*, ptrdiff_t> get_temporary_buffer(ptrdiff_t __len) {
headers/cpp/stl_tempbuf.h
69
inline pair<_Tp*, ptrdiff_t> get_temporary_buffer(ptrdiff_t __len, _Tp*) {
headers/cpp/stl_tree.h
1042
pair<iterator,iterator> __p = equal_range(__x);
headers/cpp/stl_tree.h
1156
pair<const_iterator, const_iterator> __p = equal_range(__k);
headers/cpp/stl_tree.h
1237
pair<typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::iterator,
headers/cpp/stl_tree.h
1242
return pair<iterator, iterator>(lower_bound(__k), upper_bound(__k));
headers/cpp/stl_tree.h
1247
pair<typename _Rb_tree<_Key, _Value, _KoV, _Compare, _Alloc>::const_iterator,
headers/cpp/stl_tree.h
1252
return pair<const_iterator,const_iterator>(lower_bound(__k),
headers/cpp/stl_tree.h
710
pair<iterator,bool> insert_unique(const value_type& __x);
headers/cpp/stl_tree.h
751
pair<iterator,iterator> equal_range(const key_type& __x);
headers/cpp/stl_tree.h
752
pair<const_iterator, const_iterator> equal_range(const key_type& __x) const;
headers/cpp/stl_tree.h
874
pair<typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::iterator,
headers/cpp/stl_tree.h
890
return pair<iterator,bool>(_M_insert(__x, __y, __v), true);
headers/cpp/stl_tree.h
894
return pair<iterator,bool>(_M_insert(__x, __y, __v), true);
headers/cpp/stl_tree.h
895
return pair<iterator,bool>(__j, false);
headers/cpp/stl_uninitialized.h
100
pair<_InputIter, _ForwardIter>
headers/cpp/stl_uninitialized.h
109
return pair<_InputIter, _ForwardIter>(__first, __cur);
headers/cpp/stl_uninitialized.h
115
inline pair<_RandomAccessIter, _ForwardIter>
headers/cpp/stl_uninitialized.h
120
return pair<_RandomAccessIter, _ForwardIter>(
headers/cpp/stl_uninitialized.h
126
inline pair<_InputIter, _ForwardIter>
headers/cpp/stl_uninitialized.h
134
inline pair<_InputIter, _ForwardIter>
headers/private/netservices/HttpForm.h
41
friend class std::pair<const BString, BHttpFormData>;
headers/tools/cppunit/cppunit/XmlOutputter.h
74
typedef std::pair<std::string,std::string> Attribute;
src/add-ons/kernel/console/vga_text/vga_text.c
106
uint16 pair = ((uint16)attr << 8) | (uint16)glyph;
src/add-ons/kernel/console/vga_text/vga_text.c
112
while (p < p_limit) *p++ = pair;
src/add-ons/kernel/console/vga_text/vga_text.c
97
uint16 pair = ((uint16)attr << 8) | (uint16)glyph;
src/add-ons/kernel/console/vga_text/vga_text.c
99
*p = pair;
src/add-ons/kernel/network/protocols/ipv4/ipv4.cpp
146
typedef std::pair<const in_addr* , uint32> KeyType;
src/add-ons/kernel/network/protocols/ipv4/multicast.h
166
typedef std::pair<const AddressType *, uint32> KeyType;
src/add-ons/kernel/network/protocols/ipv6/ipv6.cpp
166
typedef std::pair<const in6_addr*, uint32> KeyType;
src/add-ons/kernel/network/protocols/ipv6/multicast.h
169
typedef std::pair<const AddressType *, uint32> KeyType;
src/add-ons/kernel/network/protocols/tcp/EndpointManager.h
34
typedef std::pair<const sockaddr*, const sockaddr*> KeyType;
src/add-ons/kernel/network/protocols/udp/udp.cpp
135
typedef std::pair<const sockaddr *, const sockaddr *> KeyType;
src/add-ons/locale/catalogs/plaintext/Catalog.cpp
37
using std::pair;
src/apps/cortex/Persistence/XML.cpp
296
pair<mapping_set::iterator, bool> ret = m_mappingSet.insert(mapping);
src/apps/cortex/Persistence/XML.cpp
73
pair<const BString, XML::DocumentType*>(type->rootElement, type));
src/apps/cortex/RouteApp/NodeSetIOContext.h
101
typedef std::pair<BString,media_node_id> node_entry;
src/apps/cortex/TipManager/TipManagerImpl.cpp
142
pair<tip_entry_set::iterator, bool> ret;
src/apps/cortex/TipManager/TipManagerImpl.cpp
257
pair<BView*, const tip_entry*> _ViewEntry::match(
src/apps/cortex/TipManager/TipManagerImpl.cpp
284
return pair<BView*, const tip_entry*>(m_target, entry);
src/apps/cortex/TipManager/TipManagerImpl.cpp
298
pair<BView*, const tip_entry*> ret = entry->match(
src/apps/cortex/TipManager/TipManagerImpl.cpp
307
return pair<BView*, const tip_entry*>(0, 0);
src/apps/cortex/TipManager/TipManagerImpl.cpp
452
pair<BView*, const tip_entry*> _WindowEntry::match(
src/apps/cortex/TipManager/TipManagerImpl.cpp
467
return pair<BView*,const tip_entry*>(0,0);
src/apps/cortex/TipManager/TipManagerImpl.cpp
469
pair<BView*,const tip_entry*> ret = (*it)->match(
src/apps/cortex/TipManager/TipManagerImpl.cpp
476
return pair<BView*,const tip_entry*>(0,0);
src/apps/cortex/TipManager/TipManagerImpl.cpp
909
pair<BView*, const tip_entry*> found =
src/apps/cortex/TipManager/TipManagerImpl.h
178
std::pair<BView*, const tip_entry*> match(
src/apps/cortex/TipManager/TipManagerImpl.h
242
std::pair<BView*, const tip_entry*> match(
src/apps/cortex/support/set_tools.h
73
bool operator()(const std::pair<key,value>& p, const value& v) const {
src/apps/devices/Device.h
43
typedef std::pair<BString, BString> AttributePair;
src/apps/diskusage/InfoWindow.cpp
31
using std::pair;
src/apps/diskusage/InfoWindow.cpp
70
typedef pair<string, string> Item;
src/apps/showimage/ImageCache.h
77
typedef std::pair<entry_ref, int32> ImageSelector;
src/bin/debug/strace/strace.cpp
521
const std::pair<const std::string*, const syscall_stats*>& a,
src/bin/debug/strace/strace.cpp
522
const std::pair<const std::string*, const syscall_stats*>& b)
src/bin/debug/strace/strace.cpp
534
typedef std::vector<std::pair<const std::string*, const syscall_stats*> >
src/bin/mail_utils/spamdbm.cpp
2605
pair<StatisticsMap::iterator,bool> InsertResult;
src/bin/mail_utils/spamdbm.cpp
3600
pair<StatisticsMap::iterator,bool> InsertResult;
src/bin/query/FilteredQuery.cpp
75
filter_pair *pair = fFilters.ItemAt(i);
src/bin/query/FilteredQuery.cpp
76
if (pair->filter == function) {
src/bin/query/FilteredQuery.cpp
96
filter_pair *pair = fFilters.ItemAt(i);
src/bin/query/FilteredQuery.cpp
97
filter_function filter = pair->filter;
src/bin/query/FilteredQuery.cpp
98
accepted = (*filter)(&tmpRef, pair->args);
src/bin/setmime.cpp
1032
pair<TUserArgsI, TUserArgsI> exts
src/bin/setmime.cpp
1037
fExtensions.insert(pair<uint32, BString>(key, i->second));
src/bin/setmime.cpp
1068
pair<uint32, MimeAttribute>(hash_function(mimeAttr.fName), mimeAttr));
src/bin/setmime.cpp
576
cmdOptionsMap.insert(pair<uint32, CmdOption*>(
src/bin/setmime.cpp
626
pair<uint32, const char*>(key, param));
src/bin/setmime.cpp
636
pair<uint32, const char*>(key, *arg));
src/bin/setmime.cpp
655
pair<uint32, const char*>(key, *arg));
src/bin/setmime.cpp
838
fExtensions.insert(pair<uint32, BString>(hash_function(ext), ext));
src/bin/setmime.cpp
850
pair<uint32, MimeAttribute>(hash_function(attr.fName), attr));
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
147
SyntaxPair* pair = new(std::nothrow) SyntaxPair(column, type);
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
148
if (pair == NULL)
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
151
ObjectDeleter<SyntaxPair> pairDeleter(pair);
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
152
if (!fPairs.AddItem(pair))
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
215
SyntaxPair* pair = info->PairAt(count);
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
216
if (pair == NULL)
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
219
_columns[count] = pair->column;
src/kits/debugger/source_language/c_family/CLanguageFamilySyntaxHighlightInfo.cpp
220
_types[count] = pair->type;
src/kits/interface/Shelf.cpp
1341
BString(signature), std::pair<image_id, int>(image, 1)));
src/kits/interface/Shelf.cpp
48
typedef std::map<BString, std::pair<image_id, int32> > LoadedImageMap;
src/kits/locale/DefaultCatalog.cpp
37
using std::pair;
src/kits/network/libnetservices/HttpForm.cpp
380
fFields.insert(pair<BString, BHttpFormData>(fieldName, formData));
src/kits/network/libnetservices/HttpForm.cpp
402
fFields.insert(pair<BString, BHttpFormData>(fieldName, formData));
src/kits/network/libnetservices/HttpForm.cpp
418
fFields.insert(pair<BString, BHttpFormData>(fieldName, formData));
src/kits/network/libnetservices/HttpForm.cpp
433
pair<FormStorage::iterator, bool> insertResult
src/kits/network/libnetservices/HttpForm.cpp
434
= fFields.insert(pair<BString, BHttpFormData>(fieldName, formData));
src/kits/network/libnetservices2/HttpSession.cpp
160
using Host = std::pair<BString, int>;
src/kits/network/libnetservices2/HttpSession.cpp
725
std::pair<BString, int>
src/kits/network/libnetservices2/HttpSession.cpp
74
std::pair<BString, int> GetHost() const;
src/kits/network/libnetservices2/HttpTime.cpp
36
static const std::list<std::pair<BHttpTimeFormat, const char*>> kDateFormats = {
src/kits/support/ArchivingManagers.cpp
168
typedef std::pair<BMessage*, const BArchivable*> ArchivePair;
src/kits/support/ArchivingManagers.cpp
184
const ArchivePair& pair = pairs[i];
src/kits/support/ArchivingManagers.cpp
185
fError = pair.second->AllArchived(pair.first);
src/kits/support/ArchivingManagers.cpp
189
pair.first);
src/kits/tracker/FindPanel.cpp
2522
typedef std::pair<entry_ref, uint32> EntryWithDate;
src/preferences/input/MouseSettings.cpp
265
std::pair<BString, MouseSettings*>(mouse_name, settings));
src/preferences/network/NetworkWindow.cpp
355
fInterfaceItemMap.insert(std::pair<BString, InterfaceListItem*>(
src/preferences/network/NetworkWindow.cpp
385
addOnMap.insert(std::pair<BString, BPath>(path.Leaf(), path));
src/servers/input/MouseSettings.cpp
298
fMouseSettingsObject.insert(std::pair<BString, MouseSettings*>
src/servers/input/MouseSettings.cpp
379
fMouseSettingsObject.insert(std::pair<BString, MouseSettings*>
src/servers/launch/Job.cpp
151
fPortMap.insert(std::pair<BString, BMessage>(BString(name), data));
src/servers/registrar/mime/MimeUpdateThread.cpp
155
std::list< std::pair<dev_t,bool> >::iterator i;
src/servers/registrar/mime/MimeUpdateThread.cpp
173
std::pair<dev_t,bool> p(device, result);
src/servers/registrar/mime/MimeUpdateThread.h
52
std::list< std::pair<dev_t, bool> > fAttributeSupportList;
src/tests/system/kernel/slab/Slab.h
66
typedef std::pair<Slab *, ObjectLink *> ObjectInfo;
src/tests/system/network/firefox_crash.cpp
119
if (pair[i] >= 0)
src/tests/system/network/firefox_crash.cpp
120
close(pair[i]);
src/tests/system/network/firefox_crash.cpp
130
int pair[2];
src/tests/system/network/firefox_crash.cpp
131
if (tcp_pair(pair) == 0) {
src/tests/system/network/firefox_crash.cpp
132
close(pair[0]);
src/tests/system/network/firefox_crash.cpp
133
close(pair[1]);
src/tests/system/network/firefox_crash.cpp
43
tcp_pair(int pair[])
src/tests/system/network/firefox_crash.cpp
45
pair[0] = pair[1] = -1;
src/tests/system/network/firefox_crash.cpp
67
pair[0] = open_tcp_socket();
src/tests/system/network/firefox_crash.cpp
68
if (pair[0] < 0)
src/tests/system/network/firefox_crash.cpp
73
if (connect(pair[0], (sockaddr*)&address, sizeof(sockaddr_in)) != 0
src/tests/system/network/firefox_crash.cpp
83
FD_SET(pair[0], &set);
src/tests/system/network/firefox_crash.cpp
84
if (select(pair[0] + 1, NULL, &set, NULL, &tv) < 0)
src/tests/system/network/firefox_crash.cpp
89
if (getsockname(pair[0], (sockaddr*)&address, &length) != 0)
src/tests/system/network/firefox_crash.cpp
93
pair[1] = accept(listenSocket, (sockaddr*)&peerAddress, &length);
src/tests/system/network/firefox_crash.cpp
94
if (pair[1] >= 0)
src/tools/cppunit/cppunit/TestFactoryRegistry.cpp
79
pair<
src/tools/cppunit/cppunit/XmlOutputter.cpp
12
using std::pair;
src/tools/cppunit/cppunit/XmlOutputter.cpp
226
pair< CppUnit::Test* const, CppUnit::TestFailure*
src/tools/locale/PlainTextCatalog.cpp
36
using std::pair;