/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/ |
D | iterator.hpp | 33 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 …]
|
D | at.hpp | 31 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 …]
|
D | begin_end.hpp | 30 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;
|
D | back.hpp | 31 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;
|
D | empty.hpp | 31 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
|
D | front.hpp | 31 template< typename Vector > struct apply 32 : v_at<Vector,0> 44 template< typename Vector > struct apply 46 typedef typename Vector::item0 type;
|
D | O1_size.hpp | 31 template< typename Vector > struct apply 32 : Vector::size 44 template< typename Vector > struct apply
|
D | pop_front.hpp | 30 template< typename Vector > struct apply 32 typedef v_mask<Vector,1> type;
|
D | pop_back.hpp | 30 template< typename Vector > struct apply 32 typedef v_mask<Vector,0> type;
|
D | push_back.hpp | 30 template< typename Vector, typename T > struct apply 32 typedef v_item<T,Vector,0> type;
|
D | push_front.hpp | 30 template< typename Vector, typename T > struct apply 32 typedef v_item<T,Vector,1> type;
|
D | clear.hpp | 30 template< typename Vector > struct apply 43 template< typename Vector > struct apply
|
/ndk/sources/android/crazy_linker/src/ |
D | crazy_linker_util_unittest.cpp | 89 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 …]
|
D | crazy_linker_util.h | 147 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_;
|
D | crazy_linker_library_list.h | 90 Vector<LibraryView*> known_libraries_;
|
D | crazy_linker_shared_library.cpp | 89 Vector<LibraryView*>* dependencies) in SharedLibraryResolver() 148 Vector<LibraryView*>* dependencies_; 288 Vector<LibraryView*>* dependencies, in Relocate()
|
D | crazy_linker_shared_library.h | 62 Vector<LibraryView*>* dependencies,
|
D | crazy_linker_system_mock.cpp | 20 using crazy::Vector; 58 crazy::Vector<T*> entries_;
|
D | crazy_linker_library_list.cpp | 88 Vector<LibraryView*> work_queue; in FindSymbolFrom() 316 Vector<LibraryView*> dependencies; in LoadLibrary()
|
D | crazy_linker_proc_maps.cpp | 180 Vector<ProcMaps::Entry> entries_;
|
/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest-typed-test2_test.cc | 42 INSTANTIATE_TYPED_TEST_CASE_P(Vector, ContainerTest,
|
D | gtest-typed-test_test.cc | 62 typedef std::vector<T> Vector; typedef in CommonTest 104 typename TestFixture::Vector empty; in TYPED_TEST()
|
D | gtest-printers_test.cc | 927 TEST(PrintStlContainerTest, Vector) { in TEST() argument
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
D | cxa_demangle.cpp | 4849 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;
|