Home
last modified time | relevance | path

Searched refs:Vector (Results 1 – 24 of 24) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
Diterator.hpp33 typename Vector
40 typedef typename v_at<Vector,n_>::type type;
42 typedef Vector vector_;
52 typedef v_iter<Vector,next_> next;
53 typedef v_iter<Vector,prior_> prior;
62 typename Vector
65 struct next< v_iter<Vector,n_> >
67 typedef v_iter<Vector,(n_ + 1)> type;
71 typename Vector
74 struct prior< v_iter<Vector,n_> >
[all …]
Dat.hpp31 template< typename Vector, long n_ >
34 typedef long_< (Vector::lower_bound_::value + n_) > index_;
35 typedef __typeof__( Vector::item_(index_()) ) type;
39 template< typename Vector, long n_ >
41 : aux::wrapped_type< typename v_at_impl<Vector,n_>::type >
48 template< typename Vector, typename N > struct apply
50 Vector
62 template< typename Vector, BOOST_MPL_AUX_NTTP_DECL(long, n_) > struct v_at;
67 template< typename Vector, typename N > struct apply
70 Vector
[all …]
Dbegin_end.hpp30 template< typename Vector > struct apply
32 typedef v_iter<Vector,0> type;
39 template< typename Vector > struct apply
41 typedef v_iter<Vector,Vector::size::value> type;
Dback.hpp31 template< typename Vector > struct apply
33 Vector
34 , prior<typename Vector::size>::type::value
47 template< typename Vector > struct apply
49 typedef typename Vector::back type;
Dempty.hpp31 template< typename Vector > struct apply
33 typename Vector::lower_bound_
34 , typename Vector::upper_bound_
45 template< typename Vector > struct apply
56 template< typename Vector > struct apply
Dfront.hpp31 template< typename Vector > struct apply
32 : v_at<Vector,0>
44 template< typename Vector > struct apply
46 typedef typename Vector::item0 type;
DO1_size.hpp31 template< typename Vector > struct apply
32 : Vector::size
44 template< typename Vector > struct apply
Dpop_front.hpp30 template< typename Vector > struct apply
32 typedef v_mask<Vector,1> type;
Dpop_back.hpp30 template< typename Vector > struct apply
32 typedef v_mask<Vector,0> type;
Dpush_back.hpp30 template< typename Vector, typename T > struct apply
32 typedef v_item<T,Vector,0> type;
Dpush_front.hpp30 template< typename Vector, typename T > struct apply
32 typedef v_item<T,Vector,1> type;
Dclear.hpp30 template< typename Vector > struct apply
43 template< typename Vector > struct apply
/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_util_unittest.cpp89 TEST(Vector, IsEmpty) { in TEST() argument
90 Vector<void*> v; in TEST()
94 TEST(Vector, PushBack) { in TEST() argument
95 Vector<int> v; in TEST()
102 TEST(Vector, PushBack2) { in TEST() argument
104 Vector<int> v; in TEST()
112 TEST(Vector, At) { in TEST() argument
114 Vector<int> v; in TEST()
124 TEST(Vector, IndexOf) { in TEST() argument
126 Vector<int> v; in TEST()
[all …]
Dcrazy_linker_util.h147 class Vector {
149 Vector() : items_(0), count_(0), capacity_(0) {} in Vector() function
150 ~Vector() { free(items_); } in ~Vector()
197 int Vector<T>::IndexOf(T item) const { in IndexOf()
206 void Vector<T>::InsertAt(int index, T item) { in InsertAt()
223 void Vector<T>::RemoveAt(int index) { in RemoveAt()
236 void Vector<T>::Reserve(size_t new_capacity) { in Reserve()
244 void Vector<T>::Resize(size_t new_size) { in Resize()
278 Vector<T> items_;
Dcrazy_linker_library_list.h90 Vector<LibraryView*> known_libraries_;
Dcrazy_linker_shared_library.cpp89 Vector<LibraryView*>* dependencies) in SharedLibraryResolver()
148 Vector<LibraryView*>* dependencies_;
288 Vector<LibraryView*>* dependencies, in Relocate()
Dcrazy_linker_shared_library.h62 Vector<LibraryView*>* dependencies,
Dcrazy_linker_system_mock.cpp20 using crazy::Vector;
58 crazy::Vector<T*> entries_;
Dcrazy_linker_library_list.cpp88 Vector<LibraryView*> work_queue; in FindSymbolFrom()
316 Vector<LibraryView*> dependencies; in LoadLibrary()
Dcrazy_linker_proc_maps.cpp180 Vector<ProcMaps::Entry> entries_;
/ndk/sources/third_party/googletest/googletest/test/
Dgtest-typed-test2_test.cc42 INSTANTIATE_TYPED_TEST_CASE_P(Vector, ContainerTest,
Dgtest-typed-test_test.cc62 typedef std::vector<T> Vector; typedef in CommonTest
104 typename TestFixture::Vector empty; in TYPED_TEST()
Dgtest-printers_test.cc927 TEST(PrintStlContainerTest, Vector) { in TEST() argument
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_demangle.cpp4849 template <class T> using Vector = std::vector<T, Alloc<T>>; typedef
4873 typedef Vector<string_pair<String>> sub_type;
4874 typedef Vector<sub_type> template_param_type;
4877 Vector<template_param_type> template_param;