Searched defs:value_type (Results 76 - 100 of 147) sorted by relevance

123456

/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp152 typedef typename Traits::value_type value_type; typedef in class:Dependent::X
153 friend X operator+<>(const X&, const value_type*);
/external/clang/test/Parser/
H A Dcxx0x-attributes.cpp20 typedef _E value_type; typedef in class:std::initializer_list
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-constructor.cpp22 typedef _E value_type; typedef in class:std::initializer_list
/external/clang/test/SemaTemplate/
H A Ddefault-expr-arguments.cpp82 typedef T value_type; typedef in struct:X1
83 X1(const value_type& value = value_type());
/external/llvm/include/llvm/ADT/
H A DImmutableMap.h26 typedef const std::pair<T,S> value_type; typedef in struct:llvm::ImutKeyValueInfo
27 typedef const value_type& value_type_ref;
63 typedef typename ValInfo::value_type value_type; typedef in class:llvm::ImmutableMap
215 value_type* operator->() const { return &itr->getValue(); }
244 value_type* getMaxElement() const {
268 typedef typename ValInfo::value_type value_type; typedef in class:llvm::ImmutableMapRef
368 value_type* operator->() const { return &itr->getValue(); }
397 value_type* getMaxElemen
[all...]
H A DSTLExtras.h84 typedef typename UnaryFunc::result_type value_type; typedef in class:llvm::mapped_iterator
101 inline value_type operator*() const { // All this work to do this
/external/stlport/stlport/stl/
H A D_deque.c100 # define value_type _Tp macro
123 size_type __n, const value_type& __x) {
151 const value_type* __first, const value_type* __last) {
368 void deque<_Tp,_Alloc>::_M_fill_initialize(const value_type& __val,
382 void deque<_Tp,_Alloc>::_M_push_back_aux_v(const value_type& __t) {
412 void deque<_Tp,_Alloc>::_M_push_front_aux_v(const value_type& __t) {
465 const value_type& __x,
469 value_type __x_copy = __x;
507 const value_type
817 #undef value_type macro
[all...]
H A D_hash_map.h56 typedef pair<_STLP_CONST key_type, data_type> value_type; typedef in class:hash_map
59 typedef _STLP_PRIV _HashMapTraitsT<value_type> _HashMapTraits;
62 typedef hashtable<value_type, key_type, _HashFcn, _HashMapTraits,
63 _STLP_SELECT1ST(value_type, _Key), _EqualKey, _Alloc > _Ht;
132 hash_map(const value_type* __f, const value_type* __l)
135 hash_map(const value_type* __f, const value_type* __l, size_type __n)
138 hash_map(const value_type* __f, const value_type* __
247 typedef pair<_STLP_CONST key_type, data_type> value_type; typedef in class:hash_multimap
448 typedef void value_type; typedef in class:insert_iterator
475 typedef void value_type; typedef in class:insert_iterator
[all...]
H A D_hash_set.h58 typedef typename _Ht::value_type value_type; typedef in class:hash_set
133 hash_set(const value_type* __f, const value_type* __l)
136 hash_set(const value_type* __f, const value_type* __l, size_type __n)
139 hash_set(const value_type* __f, const value_type* __l, size_type __n,
143 hash_set(const value_type* __f, const value_type* __
244 typedef typename _Ht::value_type value_type; typedef in class:hash_multiset
443 typedef void value_type; typedef in class:insert_iterator
470 typedef void value_type; typedef in class:insert_iterator
[all...]
H A D_hashtable.c112 # define value_type _Val macro
183 ::_M_insert_noresize(size_type __n, const value_type& __obj) {
199 ::insert_unique_noresize(const value_type& __obj) {
230 ::insert_equal_noresize(const value_type& __obj) {
254 ::_M_insert(const value_type& __obj) {
538 #undef value_type macro
H A D_unordered_map.h48 typedef pair<_STLP_CONST key_type, data_type> value_type; typedef in class:unordered_map
51 typedef _STLP_PRIV _UnorderedMapTraitsT<value_type> _UnorderedMapTraits;
54 typedef hashtable<value_type, key_type, _HashFcn, _UnorderedMapTraits,
55 _STLP_SELECT1ST(value_type, _Key), _EqualKey, _Alloc > _Ht;
102 unordered_map(const value_type* __f, const value_type* __l,
133 pair<iterator,bool> insert(const value_type& __obj)
135 iterator insert(const_iterator /*__hint*/, const value_type& __obj)
141 void insert(const value_type* __f, const value_type* __
216 typedef pair<_STLP_CONST key_type, data_type> value_type; typedef in class:unordered_multimap
390 typedef void value_type; typedef in class:insert_iterator
417 typedef void value_type; typedef in class:insert_iterator
[all...]
H A D_unordered_set.h50 typedef typename _Ht::value_type value_type; typedef in class:unordered_set
96 unordered_set(const value_type* __f, const value_type* __l,
127 pair<iterator, bool> insert(const value_type& __obj)
129 iterator insert(const_iterator /*__hint*/, const value_type& __obj)
137 void insert(const value_type* __f, const value_type* __l)
200 typedef typename _Ht::value_type value_type; typedef in class:unordered_multiset
365 typedef void value_type; typedef in class:insert_iterator
392 typedef void value_type; typedef in class:insert_iterator
[all...]
/external/stlport/stlport/stl/debug/
H A D_hashtable.h79 value_type(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_HT >&) function
209 pair<iterator, bool> insert_unique(const value_type& __obj) {
214 iterator insert_equal(const value_type& __obj)
217 pair<iterator, bool> insert_unique_noresize(const value_type& __obj) {
222 iterator insert_equal_noresize(const value_type& __obj)
239 void insert_unique(const value_type* __f, const value_type* __l) {
244 void insert_equal(const value_type* __f, const value_type* __l) {
313 reference _M_insert(const value_type
[all...]
H A D_iterator.h121 typedef typename _Container::value_type value_type; typedef in struct:_DBG_iter_base
201 typedef typename _Base::value_type value_type; typedef in struct:_DBG_iter
378 typedef typename _Container::value_type value_type; typedef in class:__construct_checker
382 __construct_checker(const value_type* __p) {
403 __construct_checker(const value_type* __f, const value_type* __l) {
431 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_PRIV _DBG_iter_base<_Container>::value_type*
432 value_type(const _STLP_PRIV _DBG_iter_base<_Container>&) { function
[all...]
H A D_slist.h41 value_type(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_SLIST >&) function
91 typedef _STLP_PRIV _DBG_iter<_Base, _STLP_PRIV _SlistDbgTraits<_Nonconst_traits<value_type> > > iterator;
92 typedef _STLP_PRIV _DBG_iter<_Base, _STLP_PRIV _SlistDbgTraits<_Const_traits<value_type> > > const_iterator;
111 explicit slist(size_type __n, const value_type& __x = _Tp(),
113 slist(size_type __n, const value_type& __x,
152 slist(const value_type* __first, const value_type* __last,
179 void assign(size_type __n, const value_type& __val) {
238 iterator insert_after(iterator __pos, const value_type& __x = _Tp()) {
240 iterator insert_after(iterator __pos, const value_type
[all...]
/external/stlport/stlport/stl/pointers/
H A D_deque.h111 typedef _Tp value_type; typedef in class:deque
112 typedef value_type* pointer;
113 typedef const value_type* const_pointer;
114 typedef value_type& reference;
115 typedef const value_type& const_reference;
119 _STLP_FORCE_ALLOCATORS(value_type, _Alloc)
120 typedef typename _Alloc_traits<value_type, _Alloc>::allocator_type allocator_type;
121 typedef _STLP_PRIV _Deque_iterator<value_type, _Nonconst_traits<value_type> > iterator;
122 typedef _STLP_PRIV _Deque_iterator<value_type, _Const_trait
[all...]
H A D_list.h73 typedef _Tp value_type; typedef in class:list
74 typedef value_type* pointer;
75 typedef const value_type* const_pointer;
76 typedef value_type& reference;
77 typedef const value_type& const_reference;
80 _STLP_FORCE_ALLOCATORS(value_type, _Alloc)
81 typedef typename _Alloc_traits<value_type, _Alloc>::allocator_type allocator_type;
84 typedef _STLP_PRIV _List_iterator<value_type, _Nonconst_traits<value_type> > iterator;
85 typedef _STLP_PRIV _List_iterator<value_type, _Const_trait
[all...]
H A D_set.h76 typedef _Key value_type; typedef in class:set
82 typedef _STLP_PRIV _SetTraitsT<value_type> _SetTraits;
84 value_type, _STLP_PRIV _Identity<value_type>,
170 set(const value_type* __first, const value_type* __last)
176 set(const value_type* __first, const value_type* __last,
209 { return _STLP_CONVERT_ALLOCATOR(_M_t.get_allocator(), value_type); }
228 pair<iterator,bool> insert(const value_type
324 typedef _Key value_type; typedef in class:multiset
[all...]
H A D_slist.h68 typedef _Tp value_type; typedef in class:slist
69 typedef value_type* pointer;
70 typedef const value_type* const_pointer;
71 typedef value_type& reference;
72 typedef const value_type& const_reference;
77 typedef _STLP_PRIV _Slist_iterator<value_type, _Nonconst_traits<value_type> > iterator;
78 typedef _STLP_PRIV _Slist_iterator<value_type, _Const_traits<value_type> > const_iterator;
80 _STLP_FORCE_ALLOCATORS(value_type, _Allo
[all...]
/external/stlport/test/eh/
H A Dtest_insert.h129 typedef typename C::value_type value_type; typedef
131 EH_STD::identity<value_type>() );
140 EH_SELECT1ST_HINT<C::value_type, C::key_type>() );
142 typedef typename C::value_type value_type;
144 EH_STD::select1st<value_type>() );
359 typename C::value_type fInsVal;
396 typename C::value_type fInsVal;
422 typename C::value_type fInsVa
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DPoolAlloc.h247 typedef T value_type; typedef in class:pool_allocator
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_dict_helpers.c102 const char *key, const int value_type)
132 const int value_type,
141 type_as_string = wpa_dbus_type_as_string(value_type);
146 key, value_type))
154 if (!dbus_message_iter_append_basic(&iter_dict_val, value_type, value))
100 _wpa_dbus_add_dict_entry_start( DBusMessageIter *iter_dict, DBusMessageIter *iter_dict_entry, const char *key, const int value_type) argument
130 _wpa_dbus_add_dict_entry_basic(DBusMessageIter *iter_dict, const char *key, const int value_type, const void *value) argument
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h101 typedef T value_type; typedef in class:testing::internal::ParamIterator
/external/clang/include/clang/AST/
H A DCanonicalType.h393 typedef CanQualType value_type; typedef in class:clang::CanTypeIterator
394 typedef value_type reference;
H A DExternalASTSource.h379 typedef T value_type; typedef in class:clang::LazyVector::iterator
380 typedef value_type& reference;
381 typedef value_type* pointer;

Completed in 367 milliseconds

123456