HomeSort by relevance Sort by last modified time
    Searched refs:vector (Results 201 - 225 of 10854) sorted by null

1 2 3 4 5 6 7 891011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/iterator.range/
begin_non_const.pass.cpp 14 #include <vector>
20 std::vector<int> v(ia, ia + sizeof(ia)/sizeof(ia[0]));
21 std::vector<int>::iterator i = begin(v);
end_const.pass.cpp 14 #include <vector>
20 const std::vector<int> v(ia, ia + sizeof(ia)/sizeof(ia[0]));
21 std::vector<int>::const_iterator i = end(v);
end_non_const.pass.cpp 14 #include <vector>
20 std::vector<int> v(ia, ia + sizeof(ia)/sizeof(ia[0]));
21 std::vector<int>::iterator i = end(v);
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
yuv2rgb_converter.c 58 static const vector float vec_255 = { 255.0f, 255.0f, 255.0f, 255.0f };
59 static const vector float vec_0_1 = { 0.1f, 0.1f, 0.1f, 0.1f };
137 vector float vec_s = spu_splats(s);
138 vector unsigned int select_1 = spu_cmpgt(vec_0_1, vec_s);
141 vector unsigned int select_2 = spu_cmpgt(vec_s, vec_255);
150 * converts a float vector to an unsinged int vector using saturated
153 * @param vec_s float vector for conversion
154 * @returns converted unsigned int vector
156 inline static vector unsigned int vfloat_to_vuint(vector float vec_s)
    [all...]
  /external/ceres-solver/internal/ceres/
coordinate_descent_minimizer.h 35 #include <vector>
75 vector<ParameterBlock*> parameter_blocks_;
76 vector<vector<ResidualBlock*> > residual_blocks_;
81 vector<int> independent_set_offsets_;
compressed_row_sparse_matrix.h 34 #include <vector>
112 const vector<int>& row_blocks() const { return row_blocks_; }
113 vector<int>* mutable_row_blocks() { return &row_blocks_; }
115 const vector<int>& col_blocks() const { return col_blocks_; }
116 vector<int>* mutable_col_blocks() { return &col_blocks_; }
129 const vector<int>& blocks);
134 vector<int> rows_;
135 vector<int> cols_;
136 vector<double> values_;
143 vector<int> row_blocks_
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_pasteboard_helper_mac.h 19 void WriteToClipboard(const std::vector<BookmarkNodeData::Element>& elements,
25 const std::vector<BookmarkNodeData::Element>& elements,
29 bool ReadFromClipboard(std::vector<BookmarkNodeData::Element>& elements,
33 bool ReadFromDragClipboard(std::vector<BookmarkNodeData::Element>& elements,
47 void StartDrag(Profile* profile, const std::vector<const BookmarkNode*>& nodes,
  /external/chromium/chrome/browser/sessions/
session_restore.h 9 #include <vector>
37 const std::vector<GURL>& urls_to_open);
43 std::vector<SessionWindow*>::const_iterator begin,
44 std::vector<SessionWindow*>::const_iterator end);
60 const std::vector<GURL>& urls_to_open);
  /external/chromium/net/socket/
dns_cert_provenance_checker.h 9 #include <vector>
27 const std::vector<std::string>& der_certs) = 0;
38 const std::vector<base::StringPiece>& der_certs) = 0;
47 const std::vector<base::StringPiece>& der_certs,
57 const std::vector<std::string>& der_certs);
  /external/chromium_org/chrome/browser/chromeos/settings/
mock_owner_key_util.h 8 #include <vector>
23 virtual bool ImportPublicKey(std::vector<uint8>* output) OVERRIDE;
25 const std::vector<uint8>& key) OVERRIDE;
32 void SetPublicKey(const std::vector<uint8>& key);
45 std::vector<uint8> public_key_;
  /external/chromium_org/chrome/common/media_galleries/
pmp_test_helper.h 9 #include <vector>
35 const std::vector<T>& elements_vector);
37 static std::vector<char> MakeHeader(const PmpFieldType field_type,
41 static std::vector<char> MakeHeaderAndBody(const PmpFieldType field_type,
43 const std::vector<T>& elems);
  /external/chromium_org/media/mp4/
aac.h 8 #include <vector>
33 bool Parse(const std::vector<uint8>& data);
53 bool ConvertEsdsToADTS(std::vector<uint8>* buffer) const;
57 std::vector<uint8> codec_specific_data() const {
78 std::vector<uint8> codec_specific_data_;
  /external/chromium_org/third_party/ots/src/
vdmx.h 8 #include <vector>
31 std::vector<OpenTypeVDMXVTable> entries;
38 std::vector<OpenTypeVDMXRatioRecord> rat_ranges;
39 std::vector<uint16_t> offsets;
40 std::vector<OpenTypeVDMXGroup> groups;
  /external/clang/test/Index/
complete-exprs.cpp 11 class vector { class
13 vector(const T &, unsigned n);
15 vector(InputIterator first, InputIterator last);
18 template<typename T> void vector<T>::push_back(const T&) { }
26 vector<int>(foo(), foo());
59 // CHECK-CC1: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50)
60 // CHECK-CC1: CXXConstructor:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder const T &}{Comma , }{Placeholder unsigned int n}{RightParen )} (50)
61 // CHECK-CC1: FunctionTemplate:{ResultType void}{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder InputIterator first}{Comma , }{Placeholder InputIterator last}{RightParen )} (50)
67 // CHECK-CC2: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50)
73 // CHECK-CC3: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50
    [all...]
  /external/srec/srec/clib/
matx_ops.h 23 imeldata *vector, int dimr, int dimc);
26 imeldata *vector, int dimr, int dimc)
32 ASSERT(vector);
34 ASSERT(outvec != vector);
39 sum += matrix[ii][jj] * vector[jj];
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.capacity/
swap.pass.cpp 10 // <vector>
12 // void swap(vector& x);
14 #include <vector>
22 std::vector<int> v1(100);
23 std::vector<int> v2(200);
32 std::vector<int, min_allocator<int>> v1(100);
33 std::vector<int, min_allocator<int>> v2(200);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
default_noexcept.pass.cpp 10 // <vector>
12 // vector()
17 #include <vector>
34 typedef std::vector<MoveOnly> C;
38 typedef std::vector<MoveOnly, test_allocator<MoveOnly>> C;
42 typedef std::vector<MoveOnly, other_allocator<MoveOnly>> C;
46 typedef std::vector<MoveOnly, some_alloc<MoveOnly>> C;
move_assign_noexcept.pass.cpp 10 // <vector>
12 // vector& operator=(vector&& c)
19 #include <vector>
36 typedef std::vector<MoveOnly> C;
40 typedef std::vector<MoveOnly, test_allocator<MoveOnly>> C;
44 typedef std::vector<MoveOnly, other_allocator<MoveOnly>> C;
48 typedef std::vector<MoveOnly, some_alloc<MoveOnly>> C;
move_noexcept.pass.cpp 10 // <vector>
12 // vector(vector&&)
17 #include <vector>
34 typedef std::vector<MoveOnly> C;
38 typedef std::vector<MoveOnly, test_allocator<MoveOnly>> C;
42 typedef std::vector<MoveOnly, other_allocator<MoveOnly>> C;
46 typedef std::vector<MoveOnly, some_alloc<MoveOnly>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/
erase_iter_db1.pass.cpp 10 // <vector>
18 #include <vector>
29 std::vector<int> l1(a1, a1+3);
30 std::vector<int>::const_iterator i = l1.end();
37 std::vector<int, min_allocator<int>> l1(a1, a1+3);
38 std::vector<int, min_allocator<int>>::const_iterator i = l1.end();
erase_iter_iter_db4.pass.cpp 10 // <vector>
18 #include <vector>
29 std::vector<int> l1(a1, a1+3);
30 std::vector<int>::iterator i = l1.erase(l1.cbegin()+1, l1.cbegin());
36 std::vector<int, min_allocator<int>> l1(a1, a1+3);
37 std::vector<int, min_allocator<int>>::iterator i = l1.erase(l1.cbegin()+1, l1.cbegin());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
default_noexcept.pass.cpp 10 // <vector>
12 // vector<bool>()
17 #include <vector>
33 typedef std::vector<bool> C;
37 typedef std::vector<bool, test_allocator<bool>> C;
41 typedef std::vector<bool, other_allocator<bool>> C;
45 typedef std::vector<bool, some_alloc<bool>> C;
dtor_noexcept.pass.cpp 10 // <vector>
12 // ~vector<bool>() // implied noexcept;
14 #include <vector>
35 typedef std::vector<bool> C;
39 typedef std::vector<bool, test_allocator<bool>> C;
43 typedef std::vector<bool, other_allocator<bool>> C;
47 typedef std::vector<bool, some_alloc<bool>> C;
move_assign_noexcept.pass.cpp 10 // <vector>
12 // vector& operator=(vector&& c)
19 #include <vector>
35 typedef std::vector<bool> C;
39 typedef std::vector<bool, test_allocator<bool>> C;
43 typedef std::vector<bool, other_allocator<bool>> C;
47 typedef std::vector<bool, some_alloc<bool>> C;
move_noexcept.pass.cpp 10 // <vector>
12 // vector(vector&&)
17 #include <vector>
33 typedef std::vector<bool> C;
37 typedef std::vector<bool, test_allocator<bool>> C;
41 typedef std::vector<bool, other_allocator<bool>> C;
45 typedef std::vector<bool, some_alloc<bool>> C;

Completed in 383 milliseconds

1 2 3 4 5 6 7 891011>>