Home
last modified time | relevance | path

Searched refs:value_type (Results 1 – 25 of 46) sorted by relevance

12

/frameworks/compile/mclinker/include/mcld/ADT/
DBinTree.h90 typedef DataType value_type; typedef
95 typedef PolicyIteratorBase<value_type, Traits, IteratorType> Self;
96 typedef Node<value_type> node_type;
101 typedef PolicyIteratorBase<value_type, nonconst_traits, IteratorType>
103 typedef PolicyIteratorBase<value_type, const_traits, IteratorType>
182 typedef DataType value_type; typedef
187 typedef TreeIterator<value_type, Traits> Self;
188 typedef Node<value_type> node_type;
191 typedef TreeIterator<value_type, nonconst_traits> iterator;
193 typedef TreeIterator<value_type, const_traits> const_iterator;
[all …]
DStringEntry.h30 typedef DataType value_type; typedef
37 value_type& value() { return m_Value; } in value()
39 const value_type& value() const { return m_Value; } in value()
69 typedef llvm::StringRef value_type; typedef
76 value_type& value() { return m_Value; } in value()
78 const value_type& value() const { return m_Value; } in value()
113 typedef typename StringEntry<DataType>::value_type value_type; typedef
DTypeTraits.h21 typedef DataType value_type; typedef
31 typedef DataType value_type; typedef
41 typedef DataType value_type; typedef
52 typedef DataType value_type; typedef
DHashEntry.h36 typedef ValueType value_type; typedef
70 typedef typename HashEntryTy::value_type value_type; typedef
DTreeBase.h101 typedef DataType value_type; typedef
104 value_type* data;
109 explicit Node(const value_type& pValue) : NodeBase(), data(&pValue) {} in Node()
/frameworks/compile/mclinker/include/mcld/Support/
DAllocators.h27 typedef DataType value_type; typedef
34 static void construct(value_type* pPtr) { new (pPtr) value_type(); } in construct()
36 static void construct(value_type* pPtr, const value_type& pValue) { in construct()
37 new (pPtr) value_type(pValue); in construct()
40 static void destroy(value_type* pPtr) {} in destroy()
51 typedef DataType value_type; typedef
70 static void construct(value_type* pPtr) { new (pPtr) value_type(); } in construct()
72 static void construct(value_type* pPtr, const value_type& pValue) { in construct()
73 new (pPtr) value_type(pValue); in construct()
76 static void destroy(value_type* pPtr) { pPtr->~value_type(); } in destroy()
[all …]
DGCFactory.h59 typedef typename ChunkType::value_type value_type; typedef
106 NonConstTraits<typename Alloc::value_type> > iterator;
108 ConstTraits<typename Alloc::value_type> > const_iterator;
110 typedef typename Alloc::value_type value_type; typedef
124 value_type* allocate(size_t N) { in allocate()
125 value_type* result = Alloc::allocate(N); in allocate()
131 value_type* allocate() { in allocate()
DDirectory.h118 typedef Directory value_type; typedef
/frameworks/compile/mclinker/include/mcld/
DInputTree.h70 typedef Input value_type; typedef
71 typedef value_type* pointer;
72 typedef value_type& reference;
73 typedef const value_type* const_pointer;
74 typedef const value_type& const_reference;
77 typedef TreeIterator<value_type, NonConstTraits<value_type> > iterator;
78 typedef TreeIterator<value_type, ConstTraits<value_type> > const_iterator;
80 typedef PolicyIterator<value_type, NonConstTraits<value_type>, DFSIterator>
82 typedef PolicyIterator<value_type, ConstTraits<value_type>, DFSIterator>
84 typedef PolicyIterator<value_type, NonConstTraits<value_type>, BFSIterator>
[all …]
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
Dstring_wrapper.h19 template <typename CharT = std::string::value_type,
25 typedef typename Traits::char_type value_type; typedef
27 typedef value_type& reference;
28 typedef const value_type& const_reference;
29 typedef value_type* pointer;
30 typedef const value_type* const_pointer;
Dbuffer_wrapper.h23 typedef T value_type; typedef
103 using value_type = typename BufferType::value_type; variable
Dsequence.h19 using value_type = std::size_t; member
Darray_wrapper.h23 typedef T value_type; typedef
Dserialization.h310 s.length() * sizeof(std::string::value_type);
317 s.length() * sizeof(typename StringWrapper<T>::value_type);
324 b.size() * sizeof(typename BufferWrapper<T>::value_type);
571 encoding, value.size() * sizeof(typename BufferWrapper<T>::value_type),
930 sizeof(typename BufferWrapper<std::vector<T, Allocator>>::value_type);
937 const auto value_type_size = sizeof(typename BufferWrapper<T*>::value_type);
945 const auto value_type_size = sizeof(typename StringType::value_type);
1567 sizeof(typename BufferWrapper<std::vector<T, Allocator>>::value_type);
1590 const auto value_type_size = sizeof(typename BufferWrapper<T*>::value_type);
1654 const auto value_type_size = sizeof(typename StringWrapper<T>::value_type);
/frameworks/base/media/mca/filterpacks/native/base/
Dutilities.h74 const typename Collection::value_type::second_type*
76 const typename Collection::value_type::first_type& key) { in FindOrNull()
128 const typename Collection::value_type::second_type
130 const typename Collection::value_type::first_type& key) { in FindPtrOrNull()
153 collection->insert(typename Collection::value_type(key, value)); in InsertIfNotPresent()
/frameworks/base/media/mca/filterfw/native/base/
Dutilities.h62 const typename Collection::value_type::second_type*
64 const typename Collection::value_type::first_type& key) { in FindOrNull()
116 const typename Collection::value_type::second_type
118 const typename Collection::value_type::first_type& key) { in FindPtrOrNull()
141 collection->insert(typename Collection::value_type(key, value)); in InsertIfNotPresent()
/frameworks/native/libs/math/include/math/
Dvec2.h44 typedef T value_type; typedef
101 constexpr value_type cross(const TVec2& u, const TVec2<RT>& v) { in cross()
102 return value_type(u.x*v.y - u.y*v.x); in cross()
DTMatHelpers.h82 typedef typename MATRIX::value_type T; in gaussJordanInverse()
131 typedef typename MATRIX::value_type T; in fastInverse2()
165 typedef typename MATRIX::value_type T; in fastInverse3()
278 CONSTEXPR typename MATRIX::value_type PURE trace(const MATRIX& m) { in trace()
280 typename MATRIX::value_type result(0); in trace()
301 TQuaternion<typename MATRIX::value_type> extractQuat(const MATRIX& mat) { in extractQuat()
302 typedef typename MATRIX::value_type T; in extractQuat()
507 typename VEC::value_type x = nabout.x; in rotate()
508 typename VEC::value_type y = nabout.y; in rotate()
509 typename VEC::value_type z = nabout.z; in rotate()
/frameworks/native/libs/binder/
DValue.cpp362 switch(value_type) { \ in readFromParcel()
364 ALOGE("readFromParcel: Parcel type %d is not supported", value_type); \ in readFromParcel()
379 int32_t value_type = VAL_NULL; in readFromParcel() local
384 RETURN_IF_FAILED(parcel->readInt32(&value_type)); in readFromParcel()
DPersistableBundle.cpp411 int32_t value_type; in readFromParcelInner() local
413 RETURN_IF_FAILED(parcel->readInt32(&value_type)); in readFromParcelInner()
419 switch (value_type) { in readFromParcelInner()
465 ALOGE("Unrecognized type: %d", value_type); in readFromParcelInner()
/frameworks/native/libs/arect/include/android/
Drect.h44 typedef int32_t value_type; typedef
/frameworks/native/libs/ui/include/ui/
DRect.h35 typedef ARect::value_type value_type; typedef
/frameworks/base/libs/hwui/utils/
DFatVector.h53 typedef T value_type; // needed to implement std::allocator typedef
/frameworks/av/drm/mediadrm/plugins/clearkey/
DSession.cpp55 const KeyMap::value_type& key = keys.valueAt(i); in provideKeyResponse()
/frameworks/compile/slang/
Dslang_rs_context.cpp390 ExportTypeMap::value_type *NewItem = in insertExportType()
391 ExportTypeMap::value_type::Create(TypeName, in insertExportType()

12