Searched refs:vector (Results 1 - 25 of 3390) sorted by relevance

1234567891011>>

/external/clang/test/Driver/
H A Dnostdincxx.cpp4 #include <vector>
/external/stlport/test/unit/
H A Dvector_header_test.cpp8 #include <vector>
/external/clang/test/CodeGen/
H A Daltivec.c6 vector int test0 = (vector int)(1); // CHECK: @test0 = global <4 x i32> <i32 1, i32 1, i32 1, i32 1>
7 vector float test1 = (vector float)(1.0); // CHECK: @test1 = global <4 x float> <float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}>
10 vector char v1 = (vector char)((vector int)(1, 2, 3, 4));
12 vector char v2 = (vector char)((vector floa
[all...]
/external/clang/test/Misc/
H A Ddiag-template-diffing-color.cpp21 template<typename> class vector {}; class
23 void set15(vector<const vector<int> >) {}
25 set15(vector<const vector<const int> >());
27 // CHECK: {{.*}}candidate function not viable: no known conversion from 'vector<const vector<[[CYAN]]const{{ ?}}[[RESET]]{{ ?}}int>>' to 'vector<const vector<int>>' for 1st argument
29 // TREE: vector<
[all...]
/external/ceres-solver/include/ceres/
H A Dcrs_matrix.h34 #include <vector>
56 // Thus, cols is a vector of size num_cols + 1, and rows and values
58 vector<int> cols;
59 vector<int> rows;
60 vector<double> values;
/external/chromium/testing/gtest/test/
H A Dgtest-typed-test2_test.cc32 #include <vector>
43 testing::Types<std::vector<int> >);
/external/gtest/test/
H A Dgtest-typed-test2_test.cc32 #include <vector>
43 testing::Types<std::vector<int> >);
/external/libvpx/libvpx/third_party/googletest/src/test/
H A Dgtest-typed-test2_test.cc32 #include <vector>
43 testing::Types<std::vector<int> >);
/external/chromium/chrome/browser/sync/syncable/
H A Dblob.h9 #include <vector>
15 typedef std::vector<uint8> Blob;
/external/clang/test/Parser/
H A Dcxx-altivec.cpp25 vector char v_c;
26 vector signed char v_sc;
27 vector unsigned char v_uc;
28 vector short v_s;
29 vector signed short v_ss;
30 vector unsigned short v_us;
31 vector short int v_si;
32 vector signed short int v_ssi;
33 vector unsigned short int v_usi;
34 vector in
[all...]
H A Daltivec.c25 vector char v_c;
26 vector signed char v_sc;
27 vector unsigned char v_uc;
28 vector short v_s;
29 vector signed short v_ss;
30 vector unsigned short v_us;
31 vector short int v_si;
32 vector signed short int v_ssi;
33 vector unsigned short int v_usi;
34 vector in
[all...]
/external/clang/lib/Headers/
H A Daltivec.h39 static vector signed char __ATTRS_o_ai
40 vec_perm(vector signed char __a, vector signed char __b, vector unsigned char __c);
42 static vector unsigned char __ATTRS_o_ai
43 vec_perm(vector unsigned char __a,
44 vector unsigned char __b,
45 vector unsigned char __c);
47 static vector bool char __ATTRS_o_ai
48 vec_perm(vector boo
[all...]
/external/clang/lib/include/
H A Daltivec.h39 static vector signed char __ATTRS_o_ai
40 vec_perm(vector signed char __a, vector signed char __b, vector unsigned char __c);
42 static vector unsigned char __ATTRS_o_ai
43 vec_perm(vector unsigned char __a,
44 vector unsigned char __b,
45 vector unsigned char __c);
47 static vector bool char __ATTRS_o_ai
48 vec_perm(vector boo
[all...]
/external/eigen/demos/opengl/
H A Dicosphere.h14 #include <vector>
20 const std::vector<Eigen::Vector3f>& vertices() const { return mVertices; }
21 const std::vector<int>& indices(int level) const;
25 std::vector<Eigen::Vector3f> mVertices;
26 std::vector<std::vector<int>*> mIndices;
27 std::vector<int> mListIds;
/external/clang/test/SemaCXX/
H A Daltivec.cpp1 // RUN: %clang_cc1 -faltivec -fno-lax-vector-conversions -triple powerpc-unknown-unknown -fcxx-exceptions -verify %s
5 void test_vec_step(vector short arg1) {
6 vector bool char vbc;
7 vector signed char vsc;
8 vector unsigned char vuc;
9 vector bool short vbs;
10 vector short vs;
11 vector unsigned short vus;
12 vector pixel vp;
13 vector boo
[all...]
H A Dfor-range-unused.cpp19 Vector<int> vector; local
20 vector.doIt();
/external/chromium/chrome/common/net/
H A Dpredictor_common.h13 #include <vector>
21 // Each element of this vector is a hostname that needs to be looked up.
23 typedef std::vector<std::string> NameList;
27 typedef std::vector<GURL> UrlList;
/external/chromium/net/ftp/
H A Dftp_directory_listing_parser_vms.h9 #include <vector>
19 const std::vector<string16>& lines,
20 std::vector<FtpDirectoryListingEntry>* entries);
H A Dftp_directory_listing_parser_windows.h9 #include <vector>
19 const std::vector<string16>& lines,
20 std::vector<FtpDirectoryListingEntry>* entries);
/external/clang/test/SemaTemplate/
H A Dqualified-names-diag.cpp4 template<typename T> class vector { }; // expected-note{{candidate}} class in namespace:std
13 std::vector<INT> v1;
14 vector<Real> v2;
/external/ceres-solver/internal/ceres/
H A Dsplit.h8 #include <vector>
17 vector<string>* res);
/external/clang/include/clang/Basic/
H A DCommentOptions.h19 #include <vector>
25 typedef std::vector<std::string> BlockCommandNamesTy;
/external/clang/test/Sema/
H A Daltivec-init.c10 b = (v4)(5, 6, 7, 8, 9); // expected-warning {{excess elements in vector initializer}}
13 vector int vi;
14 vi = (vector int)(1);
15 vi = (vector int)(1, 2); // expected-error {{number of elements must be either one or match the size of the vector}}
16 vi = (vector int)(1, 2, 3, 4);
17 vi = (vector int)(1, 2, 3, 4, 5); // expected-warning {{excess elements in vector initializer}}
18 vi = (vector int){1};
19 vi = (vector in
[all...]
/external/llvm/include/llvm/Analysis/
H A DProfileInfoLoader.h21 #include <vector>
31 std::vector<std::string> CommandLines;
32 std::vector<unsigned> FunctionCounts;
33 std::vector<unsigned> BlockCounts;
34 std::vector<unsigned> EdgeCounts;
35 std::vector<unsigned> OptimalEdgeCounts;
36 std::vector<unsigned> BBTrace;
52 const std::vector<unsigned> &getRawFunctionCounts() const {
59 const std::vector<unsigned> &getRawBlockCounts() const {
66 const std::vector<unsigne
[all...]
/external/regex-re2/re2/testing/
H A Dregexp_generator.h12 #include <vector>
30 RegexpGenerator(int maxatoms, int maxops, const vector<string>& atoms,
31 const vector<string>& ops);
44 static const vector<string>& EgrepOps();
47 void RunPostfix(const vector<string>& post);
48 void GeneratePostfix(vector<string>* post, int nstk, int ops, int lits);
49 bool GenerateRandomPostfix(vector<string>* post, int nstk, int ops, int lits);
53 vector<string> atoms_; // Possible atoms.
54 vector<string> ops_; // Possible ops.
62 vector<strin
[all...]

Completed in 572 milliseconds

1234567891011>>