| /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/ |
| stl_bvector.h | 0 // vector<bool> specialization -*- C++ -*- 451 // Declare a partial specialization of vector<T, Alloc>. 457 * @brief A specialization of vector for booleans which offers fixed time 460 * Note that vector<bool> does not actually meet the requirements for being 463 * vector for function documentation. 467 * In some terminology a %vector can be described as a dynamic 474 class vector<bool, _Alloc> : protected _Bvector_base<_Alloc> class in inherits:_Bvector_base 501 vector() function in class:vector 505 vector(const allocator_type& __a) function in class:vector 509 vector(size_type __n, const bool& __value = bool(), function in class:vector 518 vector(const vector& __x) function in class:vector 526 vector(vector&& __x) function in class:vector 529 vector(initializer_list<bool> __l, function in class:vector 539 vector(_InputIterator __first, _InputIterator __last, function in class:vector [all...] |
| /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
| _vector.h | 51 // The vector base class serves one purpose, its constructor and 101 # define vector _STLP_PTR_IMPL_NAME(vector) macro 103 # define vector _STLP_NON_DBG_NAME(vector) macro 109 class vector : protected _STLP_PRIV _Vector_base<_Tp, _Alloc> class in inherits:_STLP_PRIV_Vector_base,__stlport_class 110 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (vector) 111 , public __stlport_class<vector<_Tp, _Alloc> > 116 typedef vector<_Tp, _Alloc> _Self; 214 explicit vector(const allocator_type& __a = allocator_type() function in class:vector 230 explicit vector(size_type __n) function in class:vector 233 vector(size_type __n, const _Tp& __val, const allocator_type& __a = allocator_type()) function in class:vector 246 vector(const _Self& __x) function in class:vector 253 vector(__move_source<_Self> src) function in class:vector 277 vector(_InputIterator __first, _InputIterator __last, function in class:vector 286 vector(_InputIterator __first, _InputIterator __last) function in class:vector 294 vector(const _Tp* __first, const _Tp* __last, function in class:vector 710 # undef vector macro [all...] |
| /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
| _vector.h | 51 // The vector base class serves one purpose, its constructor and 101 # define vector _STLP_PTR_IMPL_NAME(vector) macro 103 # define vector _STLP_NON_DBG_NAME(vector) macro 109 class vector : protected _STLP_PRIV _Vector_base<_Tp, _Alloc> class in inherits:_STLP_PRIV_Vector_base,__stlport_class 110 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (vector) 111 , public __stlport_class<vector<_Tp, _Alloc> > 116 typedef vector<_Tp, _Alloc> _Self; 214 explicit vector(const allocator_type& __a = allocator_type() function in class:vector 230 explicit vector(size_type __n) function in class:vector 233 vector(size_type __n, const _Tp& __val, const allocator_type& __a = allocator_type()) function in class:vector 246 vector(const _Self& __x) function in class:vector 253 vector(__move_source<_Self> src) function in class:vector 277 vector(_InputIterator __first, _InputIterator __last, function in class:vector 286 vector(_InputIterator __first, _InputIterator __last) function in class:vector 294 vector(const _Tp* __first, const _Tp* __last, function in class:vector 710 # undef vector macro [all...] |
| /art/runtime/ |
| common_runtime_test.cc | 169 std::vector<const DexFile*> dex_files; 310 std::vector<const DexFile*> CommonRuntimeTest::OpenTestDexFiles(const char* name) { 323 std::vector<const DexFile*> dex_files; 335 std::vector<const DexFile*> vector = OpenTestDexFiles(name); local 336 EXPECT_EQ(1U, vector.size()); 337 return vector[0]; 341 std::vector<const DexFile*> dex_files = OpenTestDexFiles(dex_name); 383 std::ostream& operator<<(std::ostream& os, const std::vector<T>& rhs) {
|
| /development/ndk/platforms/android-19/include/android/ |
| sensor.h | 143 ASensorVector vector; member in union:ASensorEvent::__anon1244::__anon1245
|
| /development/ndk/platforms/android-9/arch-x86/include/asm/ |
| io_apic_32.h | 82 __u32 vector : 8, member in struct:IO_APIC_route_entry
|
| /development/ndk/platforms/android-9/include/android/ |
| sensor.h | 118 ASensorVector vector; member in union:ASensorEvent::__anon1809
|
| /external/chromium_org/ash/wm/overview/ |
| window_grid.cc | 104 // Returns the vector for the fade in animation. 107 gfx::Vector2d vector; local 110 vector.set_y(bounds.width()); 113 vector.set_x(bounds.height()); 116 vector.set_y(-bounds.width()); 119 vector.set_x(-bounds.height()); 122 return vector; 128 const std::vector<aura::Window*>& windows,
|
| /external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
| s_texcombine.c | 581 GLfloat vector[6]; local 584 vector[SWIZZLE_ZERO] = 0; 585 vector[SWIZZLE_ONE] = 1.0F; 588 vector[SWIZZLE_X] = texels[i][0]; 589 vector[SWIZZLE_Y] = texels[i][1]; 590 vector[SWIZZLE_Z] = texels[i][2]; 591 vector[SWIZZLE_W] = texels[i][3]; 592 texels[i][RCOMP] = vector[swzR]; 593 texels[i][GCOMP] = vector[swzG]; 594 texels[i][BCOMP] = vector[swzB] [all...] |
| /external/chromium_org/ui/events/ |
| event_processor_unittest.cc | 5 #include <vector> 15 typedef std::vector<std::string> HandlerSequenceRecorder; 84 gfx::Vector2d vector; local 88 vector += target->bounds().OffsetFromOrigin(); 90 *location -= vector; 94 vector += source->bounds().OffsetFromOrigin(); 96 *location += vector; 369 EXPECT_EQ(std::vector<std::string>(
|
| /external/clang/test/Analysis/Inputs/ |
| system-header-simulator-cxx.h | 26 class vector { class in namespace:std 31 vector() : _start(0), _finish(0), _end_of_storage(0) {} function in class:std::vector 32 ~vector();
|
| /external/clang/test/CXX/temp/temp.param/ |
| p15-cxx0x.cpp | 124 template<typename T> struct vector {}; struct in namespace:ParameterPackExpansions 126 vector<int> vi; 128 DefArg<int, char>::Inner<vector, list> defarg(vi, lc);
|
| /external/clang/test/SemaCXX/ |
| for-range-examples.cpp | 59 class vector { class in namespace:map_range 63 vector() : size() {} function in class:map_range::vector 132 map_range::vector<char> chars; 142 map_range::vector<T> pairs; 202 struct vector { struct in namespace:test6 207 void foo(vector arr[]) { // expected-note {{declared here}} 210 // expected-error@-1 {{cannot build range expression with array function parameter 'arr' since parameter with array type 'test6::vector []' is treated as pointer type 'test6::vector *'}}
|
| friend.cpp | 101 class vector { class in namespace:test6_2 103 vector(int i, const T& t = T()) {} function in class:test6_2::vector 108 friend class vector<A>; 112 vector<A> v(1); 117 class vector { class in namespace:test6_3 119 vector(int i) {} function in class:test6_3::vector 125 friend void vector<A>::f(const A&); 129 vector<A> v(1);
|
| /external/clang/test/SemaTemplate/ |
| default-arguments.cpp | 129 template<typename T, typename U = allocator<T> > class vector {}; class in namespace:PR9643 138 vector<int, allocator<int> > v = initializer<vector>(5);
|
| /external/mesa3d/src/mesa/swrast/ |
| s_texcombine.c | 573 GLfloat vector[6]; local 576 vector[SWIZZLE_ZERO] = 0; 577 vector[SWIZZLE_ONE] = 1.0F; 580 vector[SWIZZLE_X] = texels[i][0]; 581 vector[SWIZZLE_Y] = texels[i][1]; 582 vector[SWIZZLE_Z] = texels[i][2]; 583 vector[SWIZZLE_W] = texels[i][3]; 584 texels[i][RCOMP] = vector[swzR]; 585 texels[i][GCOMP] = vector[swzG]; 586 texels[i][BCOMP] = vector[swzB] [all...] |
| /external/ppp/pppd/plugins/radius/ |
| sendserver.c | 40 unsigned char *buf, *vector, *lenptr; local 107 vector = (char *)auth->vector; 111 memcpy ((char *) md5buf + secretlen, vector, 116 vector = buf; 143 memcpy ((char *) md5buf + secretlen, (char *) auth->vector, 210 unsigned char vector[AUTH_VECTOR_LEN]; local 272 memset((char *) auth->vector, 0, AUTH_VECTOR_LEN); 275 rc_md5_calc (vector, (char *) auth, total_length + secretlen); 276 memcpy ((char *) auth->vector, (char *) vector, AUTH_VECTOR_LEN) [all...] |
| /external/qemu/hw/mips/ |
| mips_r4k.c | 75 uint64_t vector; member in struct:ResetData 154 env->active_tc.PC = s->vector; 191 reset_info->vector = env->active_tc.PC; 252 reset_info->vector = load_kernel();
|
| /external/stlport/stlport/stl/pointers/ |
| _vector.h | 29 #define VECTOR_IMPL _STLP_PTR_IMPL_NAME(vector) 37 # define vector _STLP_NON_DBG_NAME(vector) macro 42 class vector class in inherits:__stlport_class 43 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (vector) 44 : public __stlport_class<vector<_Tp, _Alloc> > 47 /* In the vector implementation iterators are pointer which give a number 50 * So vector implementation will always use a qualified void pointer type and 56 typedef vector<_Tp, _Alloc> _Self; 106 explicit vector(const allocator_type& __a = allocator_type() function in class:vector 110 explicit vector(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), function in class:vector 119 explicit vector(size_type __n) function in class:vector 123 vector(const _Self& __x) function in class:vector 127 explicit vector(__move_source<_Self> src) function in class:vector 133 vector(_InputIterator __first, _InputIterator __last, function in class:vector 140 vector(_InputIterator __first, _InputIterator __last) function in class:vector 145 vector(const_iterator __first, const_iterator __last, function in class:vector 235 # undef vector macro [all...] |
| /external/stlport/test/unit/ |
| ptrspec_test.cpp | 1 #include <vector> 55 TEST_INSTANCIATE_CONTAINER(vector); variable 83 vector<void*> void_vect; 93 vector<FType> func_vector; 100 vector<MFType> mem_func_vector; 105 vector<int*> pint_vect; 106 vector<int*> pint_vect2; 107 vector<int const*> pcint_vect; 121 vector<int*> pint_vect_from_list(pint_list.begin(), pint_list.end()); 229 vector<Func> fs [all...] |
| /frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
| BaseCluster.java | 80 double vector[] = new double[VECTOR_LENGTH]; local 84 vector[0] = Math.cos(lambda) * Math.cos(phi); 85 vector[1] = Math.sin(lambda) * Math.cos(phi); 86 vector[2] = Math.sin(phi); 87 return vector;
|
| /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
| mySSLSession.java | 8 import java.util.Vector; 158 Vector vector = new Vector(); local 161 vector.addElement(enumeration.nextElement()); 163 String as[] = new String[vector.size()]; 164 vector.copyInto(as);
|
| /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
| _vector.h | 29 #define VECTOR_IMPL _STLP_PTR_IMPL_NAME(vector) 37 # define vector _STLP_NON_DBG_NAME(vector) macro 42 class vector class in inherits:__stlport_class 43 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (vector) 44 : public __stlport_class<vector<_Tp, _Alloc> > 47 /* In the vector implementation iterators are pointer which give a number 50 * So vector implementation will always use a qualified void pointer type and 56 typedef vector<_Tp, _Alloc> _Self; 106 explicit vector(const allocator_type& __a = allocator_type() function in class:vector 110 explicit vector(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), function in class:vector 119 explicit vector(size_type __n) function in class:vector 123 vector(const _Self& __x) function in class:vector 127 explicit vector(__move_source<_Self> src) function in class:vector 133 vector(_InputIterator __first, _InputIterator __last, function in class:vector 140 vector(_InputIterator __first, _InputIterator __last) function in class:vector 145 vector(const_iterator __first, const_iterator __last, function in class:vector 235 # undef vector macro [all...] |
| /ndk/tests/device/test-gnustl-full/unit/ |
| ptrspec_test.cpp | 1 #include <vector> 55 TEST_INSTANCIATE_CONTAINER(vector); variable 83 vector<void*> void_vect; 93 vector<FType> func_vector; 100 vector<MFType> mem_func_vector; 105 vector<int*> pint_vect; 106 vector<int*> pint_vect2; 107 vector<int const*> pcint_vect; 121 vector<int*> pint_vect_from_list(pint_list.begin(), pint_list.end()); 229 vector<Func> fs [all...] |
| /ndk/tests/device/test-stlport/unit/ |
| ptrspec_test.cpp | 1 #include <vector> 55 TEST_INSTANCIATE_CONTAINER(vector); variable 83 vector<void*> void_vect; 93 vector<FType> func_vector; 100 vector<MFType> mem_func_vector; 105 vector<int*> pint_vect; 106 vector<int*> pint_vect2; 107 vector<int const*> pcint_vect; 121 vector<int*> pint_vect_from_list(pint_list.begin(), pint_list.end()); 229 vector<Func> fs [all...] |