/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/ |
at.hpp | 18 #include <boost/mpl/vector/aux_/tag.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 appl [all...] |
/external/deqp/modules/glshared/ |
glsShaderLibraryCase.hpp | 34 #include <vector> 79 /* \todo [2010-03-31 petri] Replace with another vector to allow a) arrays, b) compact representation */ 91 std::vector<Element> elements; // Scalar values (length dataType.scalarSize * arrayLength). 99 std::vector<Value> values; 115 static CaseRequirement createAnyExtensionRequirement (const std::vector<std::string>& requirements, deUint32 effectiveShaderStageFlags); 127 std::vector<std::string> m_extensions; 140 static ShaderCaseSpecification generateSharedSourceVertexCase (ExpectResult expectResult_, glu::GLSLVersion targetVersion_, const std::vector<ValueBlock>& values, const std::string& sharedSource); 141 static ShaderCaseSpecification generateSharedSourceFragmentCase (ExpectResult expectResult_, glu::GLSLVersion targetVersion_, const std::vector<ValueBlock>& values, const std::string& sharedSource); 146 std::vector<CaseRequirement> requirements; 147 std::vector<ValueBlock> valueBlocks [all...] |
/external/chromium_org/chrome/test/chromedriver/chrome/ |
chrome_finder_unittest.cc | 6 #include <vector> 15 bool PathIn(const std::vector<base::FilePath>& list, 25 const std::vector<base::FilePath>& existing_paths, 26 const std::vector<base::FilePath>& rel_paths, 27 const std::vector<base::FilePath>& locations) { 42 std::vector<base::FilePath> existing_paths; 44 std::vector<base::FilePath> rel_paths; 46 std::vector<base::FilePath> locations; 56 std::vector<base::FilePath> existing_paths; 59 std::vector<base::FilePath> rel_paths [all...] |
/system/core/libpixelflinger/codeflinger/tinyutils/ |
Vector.h | 36 * The main templated vector class ensuring type safety 42 class Vector : private VectorImpl 51 Vector(); 52 Vector(const Vector<TYPE>& rhs); 53 virtual ~Vector(); 56 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const; 57 Vector<TYPE>& operator = (const Vector<TYPE>& rhs); [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/debug/ |
vector | 1 // Debugging vector implementation -*- C++ -*- 26 /** @file debug/vector 33 #include <vector> 44 class vector 45 : public _GLIBCXX_STD_D::vector<_Tp, _Allocator>, 46 public __gnu_debug::_Safe_sequence<vector<_Tp, _Allocator> > 48 typedef _GLIBCXX_STD_D::vector<_Tp, _Allocator> _Base; 49 typedef __gnu_debug::_Safe_sequence<vector> _Safe_base; 58 typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,vector> 60 typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,vector> [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/debug/ |
vector | 1 // Debugging vector implementation -*- C++ -*- 26 /** @file debug/vector 33 #include <vector> 44 class vector 45 : public _GLIBCXX_STD_D::vector<_Tp, _Allocator>, 46 public __gnu_debug::_Safe_sequence<vector<_Tp, _Allocator> > 48 typedef _GLIBCXX_STD_D::vector<_Tp, _Allocator> _Base; 49 typedef __gnu_debug::_Safe_sequence<vector> _Safe_base; 58 typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,vector> 60 typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,vector> [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/debug/ |
vector | 1 // Debugging vector implementation -*- C++ -*- 26 /** @file debug/vector 33 #include <vector> 44 class vector 45 : public _GLIBCXX_STD_D::vector<_Tp, _Allocator>, 46 public __gnu_debug::_Safe_sequence<vector<_Tp, _Allocator> > 48 typedef _GLIBCXX_STD_D::vector<_Tp, _Allocator> _Base; 49 typedef __gnu_debug::_Safe_sequence<vector> _Safe_base; 58 typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,vector> 60 typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,vector> [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/debug/ |
vector | 1 // Debugging vector implementation -*- C++ -*- 26 /** @file debug/vector 33 #include <vector> 44 class vector 45 : public _GLIBCXX_STD_D::vector<_Tp, _Allocator>, 46 public __gnu_debug::_Safe_sequence<vector<_Tp, _Allocator> > 48 typedef _GLIBCXX_STD_D::vector<_Tp, _Allocator> _Base; 49 typedef __gnu_debug::_Safe_sequence<vector> _Safe_base; 58 typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,vector> 60 typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,vector> [all...] |
/external/eigen/Eigen/src/StlSupport/ |
StdVector.h | 18 * std::vector such that for data types with alignment issues the correct allocator 25 class vector<__VA_ARGS__, std::allocator<__VA_ARGS__> > \ 26 : public vector<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > \ 28 typedef vector<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > vector_base; \ 34 explicit vector(const allocator_type& a = allocator_type()) : vector_base(a) {} \ 36 vector(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : vector_base(first, last, a) {} \ 37 vector(const vector& c) : vector_base(c) {} \ 38 explicit vector(size_type num, const value_type& val = value_type()) : vector_base(num, val) {} \ 39 vector(iterator start, iterator end) : vector_base(start, end) {} 69 class vector<T,EIGEN_ALIGNED_ALLOCATOR<T> > class in namespace:std [all...] |
/prebuilts/misc/common/swig/include/2.0.11/ocaml/ |
std_vector.i | 4 * SWIG typemaps for std::vector types 10 // std::vector 12 // The aim of all that follows would be to integrate std::vector with 18 // -- f(std::vector<T>), f(const std::vector<T>&), f(const std::vector<T>*): 20 // previously wrapped std::vector<T> can be passed. 21 // -- f(std::vector<T>&), f(std::vector<T>*): 22 // the parameter must be modified; therefore, only a wrapped std::vector [all...] |
/external/llvm/include/llvm/CodeGen/PBQP/ |
Math.h | 1 //===------ Math.h - PBQP Vector and Matrix classes -------------*- C++ -*-===// 21 /// \brief PBQP Vector class. 22 class Vector { 26 /// \brief Construct a PBQP vector of the given size. 27 explicit Vector(unsigned Length) 29 // llvm::dbgs() << "Constructing PBQP::Vector " 33 /// \brief Construct a PBQP vector with initializer. 34 Vector(unsigned Length, PBQPNum InitVal) 36 // llvm::dbgs() << "Constructing PBQP::Vector " 42 /// \brief Copy construct a PBQP vector [all...] |
/external/chromium_org/cc/resources/ |
task_graph_runner_perftest.cc | 7 #include <vector> 25 typedef std::vector<scoped_refptr<PerfTaskImpl> > Vector; 64 PerfTaskImpl::Vector top_level_tasks; 65 PerfTaskImpl::Vector tasks; 66 PerfTaskImpl::Vector leaf_tasks; 93 PerfTaskImpl::Vector top_level_tasks; 94 PerfTaskImpl::Vector tasks; 95 PerfTaskImpl::Vector leaf_tasks; 101 // completed tasks vector [all...] |
/frameworks/base/rs/java/android/renderscript/ |
Int2.java | 20 * Vector version of the basic int type. 47 * Vector add 57 * Vector add 72 * Vector add 82 * Vector add 97 * Vector subtraction 107 * Vector subtraction 122 * Vector subtraction 132 * Vector subtraction 147 * Vector multiplicatio [all...] |
Long2.java | 20 * Vector version of the basic long type. 47 * Vector add 57 * Vector add 72 * Vector add 82 * Vector add 97 * Vector subtraction 107 * Vector subtraction 122 * Vector subtraction 132 * Vector subtraction 147 * Vector multiplicatio [all...] |
Short2.java | 23 * Vector version of the basic short type. 50 * Vector add 60 * Vector add 75 * Vector add 85 * Vector add 100 * Vector subtraction 110 * Vector subtraction 125 * Vector subtraction 135 * Vector subtraction 150 * Vector multiplicatio [all...] |
/art/compiler/ |
compiled_method.h | 22 #include <vector> 39 const std::vector<uint8_t>& quick_code); 49 const std::vector<uint8_t>* GetPortableCode() const { 53 const std::vector<uint8_t>* GetQuickCode() const { 57 void SetCode(const std::vector<uint8_t>* quick_code, const std::vector<uint8_t>* portable_code); 79 const std::vector<uint32_t>& GetOatdataOffsetsToCompliledCodeOffset() const; 88 std::vector<uint8_t>* portable_code_; 91 std::vector<uint8_t>* quick_code_; 100 std::vector<uint32_t> oatdata_offsets_to_compiled_code_offset_ [all...] |
/external/ceres-solver/internal/ceres/ |
block_sparse_matrix_test.cc | 72 Vector y_a = Vector::Zero(A_->num_rows()); 73 Vector y_b = Vector::Zero(A_->num_rows()); 75 Vector x = Vector::Zero(A_->num_cols()); 84 Vector y_a = Vector::Zero(A_->num_cols()); 85 Vector y_b = Vector::Zero(A_->num_cols()) [all...] |
/external/chromium_org/chrome/browser/extensions/ |
favicon_downloader_unittest.cc | 19 std::vector<SkBitmap> CreateTestBitmaps(const std::vector<gfx::Size>& sizes) { 20 std::vector<SkBitmap> bitmaps(sizes.size()); 49 std::vector<GURL> extra_favicon_urls) 63 virtual std::vector<content::FaviconURL> GetFaviconURLsFromWebContents() 84 const std::vector<gfx::Size>& original_bitmap_sizes) { 89 void UpdateFaviconURLs(const std::vector<content::FaviconURL>& candidates) { 93 void set_initial_favicon_urls(const std::vector<content::FaviconURL>& urls) { 98 std::vector<content::FaviconURL> initial_favicon_urls_; 106 TestFaviconDownloader downloader(web_contents(), std::vector<GURL>()) [all...] |
/external/chromium_org/chrome/common/net/ |
predictor_common.h | 12 #include <vector> 20 // Each element of this vector is a hostname that needs to be looked up. 22 typedef std::vector<std::string> NameList; 26 typedef std::vector<GURL> UrlList;
|
/external/chromium_org/content/public/test/ |
test_file_system_options.cc | 8 #include <vector> 15 std::vector<std::string> additional_allowed_schemes; 25 std::vector<std::string> additional_allowed_schemes; 36 std::vector<std::string> additional_allowed_schemes;
|
/external/chromium_org/device/hid/ |
hid_report_descriptor.h | 8 #include <vector> 24 const std::vector<linked_ptr<HidReportDescriptorItem> >& items() const { 30 std::vector<HidUsageAndPage>* topLevelCollections); 33 std::vector<linked_ptr<HidReportDescriptorItem> > items_;
|
/external/chromium_org/extensions/test/ |
test_permission_message_provider.cc | 21 std::vector<base::string16> TestPermissionMessageProvider::GetWarningMessages( 24 return std::vector<base::string16>(); 27 std::vector<base::string16> 31 return std::vector<base::string16>();
|
test_permissions_provider.cc | 13 std::vector<APIPermissionInfo*> TestPermissionsProvider::GetAllPermissions() 17 std::vector<APIPermissionInfo*> permissions; 21 std::vector<PermissionsProvider::AliasInfo> 23 std::vector<PermissionsProvider::AliasInfo> aliases;
|
/external/chromium_org/media/midi/ |
midi_manager_win.h | 8 #include <vector> 26 const std::vector<uint8>& data, 32 std::vector<scoped_ptr<InDeviceInfo> > in_devices_; 33 std::vector<scoped_ptr<OutDeviceInfo> > out_devices_;
|
/external/chromium_org/net/quic/test_tools/ |
test_task_runner.h | 10 #include <vector> 34 const std::vector<PostedTask>& GetPostedTasks() const; 42 std::vector<PostedTask>::iterator FindNextTask(); 45 std::vector<PostedTask> tasks_;
|