Searched refs:value_type (Results 1 - 25 of 248) sorted by relevance

12345678910

/external/oprofile/libutil++/
H A Dcached_value.h25 typedef T value_type; typedef in class:cached_value
28 value_type const get() const {
38 value_type const reset(value_type const & val) {
46 value_type value;
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1-retmem.cpp8 typedef T value_type; typedef in struct:X0
11 value_type *f1();
12 X1<value_type*> f2();
21 typename X0<U>::value_type *X0<U>::f1() {
26 X1<typename X0<U>::value_type*> X0<U>::f2() {
/external/llvm/include/llvm/ADT/
H A DInMemoryStruct.h26 typedef T value_type; typedef in class:llvm::InMemoryStruct
27 typedef value_type &reference;
28 typedef value_type *pointer;
29 typedef const value_type &const_reference;
30 typedef const value_type *const_pointer;
33 value_type *Target;
37 value_type Contents;
/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 static value_type read_le(const void *memory) {
53 value_type
[all...]
H A DCapacity.h24 return x.capacity() * sizeof(typename T::value_type);
/external/astl/include/
H A Dstring62 typedef traits_type::char_type value_type;
65 typedef value_type& reference;
66 typedef const value_type& const_reference;
67 typedef value_type* pointer;
68 typedef const value_type* const_pointer;
91 string(const value_type *str);
96 string(const value_type *str, size_type n);
107 string(const value_type *begin, const value_type *end);
117 const value_type *c_st
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dmap-util.h46 const typename Collection::value_type::second_type&
48 const typename Collection::value_type::first_type& key,
49 const typename Collection::value_type::second_type& value) {
61 const typename Collection::value_type::second_type*
63 const typename Collection::value_type::first_type& key) {
77 const typename Collection::value_type::second_type
79 const typename Collection::value_type::first_type& key) {
95 collection->insert(typename Collection::value_type(key, value));
112 collection->insert(typename Collection::value_type(key, value));
/external/clang/include/clang/Index/
H A DSTLExtras.h21 /// \brief Wraps an iterator whose value_type is a pair, and provides
28 typedef typename iter_type::value_type::second_type value_type; typedef in class:clang::idx::pair_value_iterator
29 typedef value_type& reference;
30 typedef value_type* pointer;
/external/stlport/stlport/stl/pointers/
H A D_tools.h271 typedef _ValueT value_type; typedef in struct:_CastTraits
277 static value_type * to_value_type_ptr(void_type *__ptr)
278 { return __REINTERPRET_CAST(value_type *, cv_traits::cv_ptr(__ptr)); }
279 static value_type const* to_value_type_cptr(void_type const*__ptr)
280 { return __REINTERPRET_CAST(value_type const*, cv_traits::cv_cptr(__ptr)); }
281 static value_type ** to_value_type_pptr(void_type **__ptr)
282 { return __REINTERPRET_CAST(value_type **, cv_traits::cv_pptr(__ptr)); }
283 static value_type & to_value_type_ref(void_type &__ref)
284 { return __REINTERPRET_CAST(value_type &, cv_traits::cv_ref(__ref)); }
285 static value_type cons
305 typedef _Tp value_type; typedef in struct:_CastTraits
341 typedef _StorageT value_type; typedef in struct:_IteWrapper
404 typedef _ValueT value_type; typedef in struct:_CastTraits
[all...]
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...]
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_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/clang/include/clang/Serialization/
H A DContinuousRangeMap.h37 typedef std::pair<Int, V> value_type; typedef in class:clang::ContinuousRangeMap
38 typedef value_type &reference;
39 typedef const value_type &const_reference;
40 typedef value_type *pointer;
41 typedef const value_type *const_pointer;
44 typedef SmallVector<value_type, InitialCapacity> Representation;
63 void insert(const value_type &Val) {
111 void insert(const value_type &Val) {
/external/stlport/test/eh/
H A Dtest_hash_map.cpp54 TestMultiMap::value_type x;
56 testMultiMap2.insert( TestMultiMap::value_type() );
67 TestMultiMap::value_type *insFirst = new TestMultiMap::value_type[1+insCnt];
101 TestMap::value_type x;
103 testMap2.insert( TestMap::value_type() );
114 TestMap::value_type *insFirst = new TestMap::value_type[1+insCnt];
H A Dtest_hash_set.cpp50 TestMultiSet::value_type x;
52 testMultiSet2.insert( TestMultiSet::value_type() );
63 TestMultiSet::value_type *insFirst = new TestMultiSet::value_type[1+insCnt];
97 TestSet::value_type x;
99 testSet2.insert( TestSet::value_type() );
110 TestSet::value_type *insFirst = new TestSet::value_type[1+insCnt];
H A Dtest_map.cpp58 TestMultiMap::value_type x;
60 testMultiMap2.insert( TestMultiMap::value_type() );
66 TestMultiMap::value_type *insFirst = new TestMultiMap::value_type[insCnt];
106 TestMap::value_type x;
108 testMap2.insert( TestMap::value_type() );
114 TestMap::value_type *insFirst = new TestMap::value_type[1+insCnt];
H A Dtest_set.cpp47 TestMultiSet::value_type x;
49 testMultiSet2.insert( TestMultiSet::value_type() );
55 TestMultiSet::value_type *insFirst = new TestMultiSet::value_type[1+insCnt];
81 TestSet::value_type x;
83 testSet2.insert( TestSet::value_type() );
88 TestSet::value_type *insFirst = new TestSet::value_type[1+insCnt];
H A Dtest_rope.cpp56 TestRope::value_type x = TestRope::value_type(random_number(random_base)); // initialize before use
58 testRope2.push_back( TestRope::value_type() );
69 TestRope::value_type *insFirst = new TestRope::value_type[1+insCnt];
H A Dtest_string.cpp43 TestString::value_type x = TestString::value_type(random_number(random_base)) ; // initialize before use
45 testString2.append(1, TestString::value_type() );
56 TestString::value_type *insFirst = new TestString::value_type[1+insCnt];
/external/astl/tests/
H A Dtest_iterator.cpp40 typedef int value_type; typedef in struct:android::Input
48 typedef int value_type; typedef in struct:android::Forward
56 typedef int value_type; typedef in struct:android::Bidirectional
64 typedef int value_type; typedef in struct:android::Random
/external/stlport/stlport/stl/
H A D_alloc.c46 memset((char*)__result, __shred_byte, __real_n * sizeof(value_type));
48 __result->__type_size = sizeof(value_type);
70 for (__tmp= ((unsigned char*)__p) + __n * sizeof(value_type);
77 memset((char*)__p, __shred_byte, __n * sizeof(value_type));
H A D_complex.h37 typedef _Tp value_type; typedef in struct:complex
42 complex(const value_type& __x)
44 complex(const value_type& __x, const value_type& __y)
69 value_type real() const { return _M_re; }
70 value_type imag() const { return _M_im; }
74 _Self& operator= (const value_type& __x) {
79 _Self& operator+= (const value_type& __x) {
83 _Self& operator-= (const value_type& __x) {
87 _Self& operator*= (const value_type
181 typedef float value_type; typedef in struct:complex
319 typedef double value_type; typedef in struct:complex
459 typedef long double value_type; typedef in struct:complex
[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...]
/external/astl/src/
H A Dstring.cpp75 value_type *oldData = mData;
77 mData = static_cast<value_type *>(::malloc(n + 1));
107 value_type *oldData = mData;
120 void string::SafeFree(value_type *buffer)
130 void string::ResetTo(value_type *str)
143 void string::Constructor(const value_type *str, size_type n)
149 void string::Constructor(const value_type *str, size_type pos, size_type n)
213 string::string(const value_type *str)
225 string::string(const value_type *str, size_type n)
236 string::string(const value_type *begi
[all...]
/external/chromium/chrome/browser/policy/
H A Dpolicy_map.h48 static bool MapEntryEquals(const PolicyMapType::value_type& a,
49 const PolicyMapType::value_type& b);

Completed in 772 milliseconds

12345678910