Searched defs:value_type (Results 51 - 75 of 147) sorted by relevance

123456

/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-stdinitializerlist.cpp24 typedef _E value_type; typedef in class:std::initializer_list
/external/llvm/include/llvm/ADT/
H A DDenseSet.h67 typedef ValueT value_type; typedef in class:llvm::DenseSet::Iterator
68 typedef value_type *pointer;
69 typedef value_type &reference;
87 typedef ValueT value_type; typedef in class:llvm::DenseSet::ConstIterator
88 typedef value_type *pointer;
89 typedef value_type &reference;
H A DImmutableIntervalMap.h35 typedef const std::pair<Interval, T> value_type; typedef in struct:llvm::ImutIntervalInfo
36 typedef const value_type &value_type_ref;
89 typedef typename ImutInfo::value_type value_type; typedef in class:llvm::ImutIntervalAVLFactory
198 typedef typename ImutIntervalInfo<ValT>::value_type value_type; typedef in class:llvm::ImmutableIntervalMap
H A DImmutableList.h66 typedef T value_type; typedef in class:llvm::ImmutableList
91 const value_type& operator*() const { return L->getHead(); }
H A DSmallPtrSet.h178 typedef PtrTy value_type; typedef in class:llvm::SmallPtrSetIterator
/external/llvm/include/llvm/Support/
H A DEndian.h29 template<typename value_type, alignment align>
32 template<typename value_type>
33 struct alignment_access_helper<value_type, aligned>
35 value_type val;
41 template<typename value_type>
42 struct alignment_access_helper<value_type, unaligned>
44 value_type val;
51 template<typename value_type, alignment align>
52 inline value_type read_le(const void *memory) {
53 value_type
[all...]
/external/regex-re2/re2/
H A Dstringpiece.h116 typedef char value_type; typedef in class:re2::StringPiece
/external/regex-re2/util/
H A Dsparse_array.h109 typedef IndexValue value_type; typedef in class:re2::SparseArray
163 pair<iterator, bool> insert(const value_type& new_value);
321 const value_type& new_value) {
/external/stlport/stlport/stl/
H A D_iterator_base.h61 typedef _Tp value_type; typedef in struct:iterator
70 typedef void value_type; typedef in struct:iterator
80 # define _STLP_VALUE_TYPE(_It, _Tp) _STLP_STD::value_type(_It)
86 # define _STLP_VALUE_TYPE(_It, _Tp) (_STLP_TYPENAME _STLP_STD::iterator_traits< _Tp >::value_type*)0
150 typedef typename _Iterator::value_type value_type; typedef in struct:iterator_traits::iterator_traits
168 typedef _Tp value_type; typedef in struct:iterator_traits::iterator_traits
177 typedef _Tp value_type; typedef in struct:iterator_traits::iterator_traits
187 typedef _Tp value_type; typedef in struct:iterator_traits::iterator_traits
202 // value_type ar
293 inline _Tp* _STLP_CALL value_type(const input_iterator<_Tp, _Distance>&) { return __STATIC_CAST(_Tp*, 0); } function in struct:iterator_traits
295 inline _Tp* _STLP_CALL value_type(const forward_iterator<_Tp, _Distance>&) { return __STATIC_CAST(_Tp*, 0); } function in struct:iterator_traits
297 inline _Tp* _STLP_CALL value_type(const bidirectional_iterator<_Tp, _Distance>&) { return __STATIC_CAST(_Tp*, 0); } function in struct:iterator_traits
299 inline _Tp* _STLP_CALL value_type(const random_access_iterator<_Tp, _Distance>&) { return __STATIC_CAST(_Tp*, 0); } function in struct:iterator_traits
385 typedef _Tp value_type; typedef in struct:iterator_traits::_Const_traits
394 typedef _Tp value_type; typedef in struct:iterator_traits::_Nonconst_traits
410 typedef _Tp value_type; typedef in struct:iterator_traits::_Const_Const_traits
419 typedef _Tp value_type; typedef in struct:iterator_traits::_Nonconst_Const_traits
[all...]
H A D_map.h57 typedef pair<_STLP_CONST _Key, _Tp> value_type; typedef in class:map
61 : public binary_function<value_type, value_type, bool> {
68 bool operator()(const value_type& __x, const value_type& __y) const
73 typedef _STLP_PRIV _MapTraitsT<value_type> _MapTraits;
78 value_type, _STLP_SELECT1ST(value_type, _Key),
128 map(const value_type* __first, const value_type* __las
250 typedef pair<_STLP_CONST _Key, _Tp> value_type; typedef in class:multimap
[all...]
H A D_pthread_alloc.h69 typedef char value_type; typedef in class:_Pthread_alloc
106 typedef _Tp value_type; typedef in class:pthread_allocator
134 size_type __buf_size = __n * sizeof(value_type);
135 _Tp* __ret = __REINTERPRET_CAST(value_type*, _S_Alloc::allocate(__buf_size));
149 memset((char*)__p, _STLP_SHRED_BYTE, __n * sizeof(value_type));
151 _S_Alloc::deallocate(__p, __n * sizeof(value_type));
173 size_type __buf_size = __n * sizeof(value_type);
174 _Tp* __ret = __REINTERPRET_CAST(value_type*, _S_Alloc::allocate(__buf_size));
178 __allocated_n = __buf_size / sizeof(value_type);
196 typedef void value_type; typedef in class:pthread_allocator
287 typedef _Tp value_type; typedef in class:per_thread_allocator
379 typedef void value_type; typedef in class:per_thread_allocator
[all...]
H A D_set.h55 typedef _Key value_type; typedef in class:set
61 typedef _STLP_PRIV _SetTraitsT<value_type> _SetTraits;
66 value_type, _STLP_PRIV _Identity<value_type>,
116 set(const value_type* __first, const value_type* __last)
120 set(const value_type* __first,
121 const value_type* __last, const _Compare& __comp,
168 pair<iterator,bool> insert(const value_type& __x)
170 iterator insert(iterator __pos, const value_type
226 typedef _Key value_type; typedef in class:multiset
[all...]
H A D_valarray.h96 typedef _Tp value_type; typedef in class:valarray
101 { uninitialized_fill_n(this->_M_first, this->_M_size, _STLP_DEFAULT_CONSTRUCTED(value_type)); }
102 valarray(const value_type& __x, size_t __n) : _Valarray_base<_Tp>(__n)
104 valarray(const value_type* __p, size_t __n) : _Valarray_base<_Tp>(__n)
144 valarray<_Tp>& operator=(const value_type& __x) {
156 value_type operator[](size_t __n) const {
160 value_type& operator[](size_t __n) {
196 valarray<_Tp>& operator*= (const value_type& __x) {
202 valarray<_Tp>& operator/= (const value_type& __x) {
208 valarray<_Tp>& operator%= (const value_type
363 resize(size_t __n, value_type __x = value_type()) argument
[all...]
/external/stlport/stlport/stl/debug/
H A D_list.h48 value_type(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_LIST >&) function
74 typedef _STLP_PRIV _DBG_iter<_Base, _STLP_PRIV _DbgTraits<_Nonconst_traits<value_type> > > iterator;
75 typedef _STLP_PRIV _DBG_iter<_Base, _STLP_PRIV _DbgTraits<_Const_traits<value_type> > > const_iterator;
135 list(const value_type* __first, const value_type* __last,
H A D_tree.h80 value_type(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_TREE >&) function
223 pair<iterator,bool> insert_unique(const value_type& __x) {
227 iterator insert_equal(const value_type& __x)
230 iterator insert_unique(iterator __pos, const value_type& __x) {
234 iterator insert_equal(iterator __pos, const value_type& __x) {
255 void insert_unique(const value_type* __first, const value_type* __last) {
263 void insert_equal(const value_type* __first, const value_type* __last) {
H A D_vector.h44 value_type(const _STLP_PRIV _DBG_iter_base< _STLP_NON_DBG_VECTOR >&) function
60 typedef _Tp value_type; typedef in struct:_Vector_nonconst_traits
70 typedef _Tp value_type; typedef in struct:_Vector_const_traits
79 typedef _Bit_iterator::value_type value_type; typedef in struct:_Vector_nonconst_traits
88 typedef _Bit_const_iterator::value_type value_type; typedef in struct:_Vector_const_traits
118 _STLP_PRIV _DbgTraits<_STLP_PRIV _Vector_nonconst_traits<value_type, typename _Base::iterator> > > iterator;
121 _STLP_PRIV _DbgTraits<_STLP_PRIV _Vector_const_traits<value_type, typename _Base::iterator> > > const_iterator;
303 const value_type *__firs
[all...]
/external/stlport/stlport/stl/pointers/
H A D_vector.h61 typedef _Tp value_type; typedef in class:vector
62 typedef value_type* pointer;
63 typedef const value_type* const_pointer;
64 typedef value_type* iterator;
65 typedef const value_type* const_iterator;
66 typedef value_type& reference;
67 typedef const value_type& const_reference;
73 _STLP_FORCE_ALLOCATORS(value_type, _Alloc)
74 typedef typename _Alloc_traits<value_type, _Alloc>::allocator_type allocator_type;
77 { return _STLP_CONVERT_ALLOCATOR(_M_impl.get_allocator(), value_type); }
[all...]
/external/stlport/test/eh/
H A DPrefix.h124 typedef _Tp value_type; typedef in class:EH_allocator
125 typedef value_type * pointer;
146 return __n != 0 ? __REINTERPRET_CAST(value_type*,EH_STD::__new_alloc::allocate(__n * sizeof(value_type))) : 0;
151 if (__p != 0) EH_STD::__new_alloc::deallocate((void*)__p, __n * sizeof(value_type));
154 void deallocate(pointer __p) const { if (__p != 0) EH_STD::__new_alloc::deallocate((void*)__p, sizeof(value_type)); }
155 size_type max_size() const _STLP_NOTHROW { return size_t(-1) / sizeof(value_type); }
/external/stlport/test/unit/
H A Dstack_allocator.h56 typedef _Tp value_type; typedef in struct:StackAllocator
57 typedef value_type * pointer;
/external/v8/src/
H A Dhashmap.h301 struct value_type { struct in class:v8::TemplateHashMap
313 value_type* operator->() { return reinterpret_cast<value_type*>(entry_); }
/external/wpa_supplicant_6/wpa_supplicant/
H A Ddbus_dict_helpers.c107 const char *key, const int value_type)
137 const int value_type,
143 type_as_string = _wpa_get_type_as_string_from_type(value_type);
148 key, value_type))
156 if (!dbus_message_iter_append_basic(&iter_dict_val, value_type, value))
105 _wpa_dbus_add_dict_entry_start( DBusMessageIter *iter_dict, DBusMessageIter *iter_dict_entry, const char *key, const int value_type) argument
135 _wpa_dbus_add_dict_entry_basic(DBusMessageIter *iter_dict, const char *key, const int value_type, const void *value) argument
/external/chromium/base/
H A Dstring_number_conversions.cc81 *it = static_cast<typename STR::value_type>((res % 10) + '0');
89 *it = static_cast<typename STR::value_type>('-');
163 // - a typedef for value_type, the target numeric type.
172 typedef typename traits::value_type value_type; typedef in class:base::__anon1596::IteratorRangeToNumber
178 value_type* output) {
212 typename traits::value_type* output) {
248 static bool CheckBounds(value_type* output, uint8 new_digit) {
249 if (*output > static_cast<value_type>(traits::max() / traits::kBase) ||
250 (*output == static_cast<value_type>(trait
283 typedef VALUE value_type; typedef in class:base::__anon1596::BaseIteratorRangeToNumberTraits
[all...]
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_pref_store.cc61 Value::ValueType value_type; member in struct:policy::ConfigurationPolicyPrefKeeper::PolicyToPreferenceMapEntry
359 DCHECK_EQ(map[current].value_type, value->GetType())
362 << map[current].value_type << ", actual = "<< value->GetType();
/external/clang/include/clang/AST/
H A DASTVector.h76 typedef T value_type; typedef in class:clang::ASTVector
/external/clang/include/clang/Driver/
H A DArgList.h52 typedef Arg * const * value_type; typedef in class:clang::driver::arg_iterator

Completed in 2327 milliseconds

123456