Searched refs:vector (Results 51 - 75 of 11757) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dfor-range-unused.cpp19 Vector<int> vector; local
20 vector.doIt(); // expected-note {{here}}
/external/chromium_org/third_party/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...]
/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/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...]
/external/aac/libFDK/src/
H A Dscale.cpp113 * \brief Multiply input vector by \f$ 2^{scalefactor} \f$
120 void scaleValues(FIXP_SGL *vector, /*!< Vector */ argument
134 *(vector++) <<= scalefactor;
138 *(vector++) <<= scalefactor;
139 *(vector++) <<= scalefactor;
140 *(vector++) <<= scalefactor;
141 *(vector++) <<= scalefactor;
147 *(vector++) >>= negScalefactor;
151 *(vector++) >>= negScalefactor;
152 *(vector
170 scaleValues(FIXP_DBL *vector, INT len, INT scalefactor ) argument
280 scaleValuesWithFactor( FIXP_DBL *vector, FIXP_DBL factor, INT len, INT scalefactor ) argument
347 getScalefactorShort(const SHORT *vector, INT len ) argument
373 getScalefactorPCM(const INT_PCM *vector, INT len, INT stride ) argument
399 getScalefactorShort(const SHORT *vector, INT len, INT stride ) argument
429 getScalefactor(const FIXP_DBL *vector, INT len) argument
447 getScalefactor(const FIXP_SGL *vector, INT len) argument
[all...]
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dmin_max_operations.c35 // Maximum absolute value of word16 vector. C version for generic platforms.
36 int16_t WebRtcSpl_MaxAbsValueW16C(const int16_t* vector, int length) { argument
39 if (vector == NULL || length <= 0) {
44 absolute = abs((int)vector[i]);
59 // Maximum absolute value of word32 vector. C version for generic platforms.
60 int32_t WebRtcSpl_MaxAbsValueW32C(const int32_t* vector, int length) { argument
67 if (vector == NULL || length <= 0) {
72 absolute = abs((int)vector[i]);
83 // Maximum value of word16 vector. C version for generic platforms.
84 int16_t WebRtcSpl_MaxValueW16C(const int16_t* vector, in argument
100 WebRtcSpl_MaxValueW32C(const int32_t* vector, int length) argument
116 WebRtcSpl_MinValueW16C(const int16_t* vector, int length) argument
132 WebRtcSpl_MinValueW32C(const int32_t* vector, int length) argument
148 WebRtcSpl_MaxAbsIndexW16(const int16_t* vector, int length) argument
170 WebRtcSpl_MaxIndexW16(const int16_t* vector, int length) argument
189 WebRtcSpl_MaxIndexW32(const int32_t* vector, int length) argument
208 WebRtcSpl_MinIndexW16(const int16_t* vector, int length) argument
227 WebRtcSpl_MinIndexW32(const int32_t* vector, int length) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Ddynamic_compressed_row_sparse_matrix.h92 vector<vector<int> > dynamic_cols_;
93 vector<vector<double> > dynamic_values_;
/external/chromium_org/chromecast/shell/renderer/
H A Dkey_systems_cast.h8 #include <vector>
18 std::vector<content::KeySystemInfo>* concrete_key_systems);
21 std::vector<content::KeySystemInfo>* key_systems_info);
25 std::vector<content::KeySystemInfo>* key_systems_info);
H A Dkey_systems_cast_simple.cc11 std::vector<content::KeySystemInfo>* key_systems_info) {
/external/chromium_org/components/favicon_base/
H A Dfavicon_util.h8 #include <vector>
24 std::vector<float> GetFaviconScales();
31 // Takes a vector of PNG-encoded frames, and converts it to a gfx::Image of
35 const std::vector<favicon_base::FaviconRawBitmapResult>& png_data,
36 const std::vector<float>& favicon_scales,
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DShaderImpl.h12 #include <vector>
30 const std::vector<gl::PackedVarying> &getVaryings() const { return mVaryings; }
31 const std::vector<sh::Uniform> &getUniforms() const { return mUniforms; }
32 const std::vector<sh::InterfaceBlock> &getInterfaceBlocks() const { return mInterfaceBlocks; }
33 const std::vector<sh::Attribute> &getActiveAttributes() const { return mActiveAttributes; }
34 const std::vector<sh::Attribute> &getActiveOutputVariables() const { return mActiveOutputVariables; }
36 std::vector<gl::PackedVarying> &getVaryings() { return mVaryings; }
37 std::vector<sh::Uniform> &getUniforms() { return mUniforms; }
38 std::vector<sh::InterfaceBlock> &getInterfaceBlocks() { return mInterfaceBlocks; }
39 std::vector<s
[all...]
/external/chromium_org/tools/gyp/test/win/compiler-flags/
H A Dforce-include-files.cc6 std::list<std::vector<std::string> > l;
/external/chromium_org/tools/imagediff/
H A Dimage_diff_png.h9 #include <vector>
15 std::vector<unsigned char>* output,
23 std::vector<unsigned char>* output);
31 std::vector<unsigned char>* output);
/external/clang/test/Modules/Inputs/submodules/
H A Dvector.h1 template<typename T> class vector { }; class
/external/clang/test/Modules/
H A Dsubmodules.cpp5 @import std.vector;
7 vector<int> vi;
16 vector<float> vf;
19 @import std.vector.compare; // expected-error{{no submodule named 'compare' in module 'std.vector'}}
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_test_config.h20 #include <vector>
/external/libcxx/test/containers/sequences/vector/
H A Dversion.pass.cpp10 // <vector>
12 #include <vector>
/external/pdfium/fpdfsdk/include/javascript/
H A DJavaScript.h35 #include <vector>
/external/protobuf/gtest/test/
H A Dgtest-typed-test2_test.cc32 #include <vector>
43 testing::Types<std::vector<int> >);
/external/chromium_org/ui/views/window/
H A Dwindow_button_order_provider.h8 #include <vector>
26 const std::vector<views::FrameButton>& leading_buttons() const {
30 const std::vector<views::FrameButton>& trailing_buttons() const {
35 const std::vector<views::FrameButton>& leading_buttons,
36 const std::vector<views::FrameButton>& trailing_buttons);
48 std::vector<views::FrameButton> leading_buttons_;
49 std::vector<views::FrameButton> trailing_buttons_;
/external/chromium_org/chrome/browser/thumbnails/
H A Dcontent_analysis.h8 #include <vector>
39 std::vector<float>* rows,
40 std::vector<float>* columns);
44 float AutoSegmentPeaks(const std::vector<float>& input);
60 void ConstrainedProfileSegmentation(const std::vector<float>& row_profile,
61 const std::vector<float>& column_profile,
63 std::vector<bool>* included_rows,
64 std::vector<bool>* included_columns);
70 const std::vector<bool>& rows,
71 const std::vector<boo
[all...]
/external/chromium_org/third_party/re2/re2/
H A Dprefilter_tree.h41 // The Compile returns a vector of string in atom_vec.
47 void Compile(vector<string>* atom_vec);
54 void RegexpsGivenStrings(const vector<int>& matched_atoms,
55 vector<int>* regexps) const;
81 vector<int> regexps;
88 void AssignUniqueIds(vector<string>* atom_vec);
91 void PropagateMatch(const vector<int>& atom_ids,
110 vector<Entry> entries_;
117 vector<int> unfiltered_;
119 // vector o
[all...]
/external/regex-re2/re2/
H A Dprefilter_tree.h38 // The Compile returns a vector of string in atom_vec.
44 void Compile(vector<string>* atom_vec);
51 void RegexpsGivenStrings(const vector<int>& matched_atoms,
52 vector<int>* regexps) const;
78 vector<int> regexps;
85 void AssignUniqueIds(vector<string>* atom_vec);
88 void PropagateMatch(const vector<int>& atom_ids,
107 vector<Entry> entries_;
114 vector<int> unfiltered_;
116 // vector o
[all...]
/external/chromium_org/chrome/utility/media_galleries/
H A Dpicasa_album_table_reader.h8 #include <vector>
23 const std::vector<AlbumInfo>& albums() const;
24 const std::vector<AlbumInfo>& folders() const;
31 std::vector<AlbumInfo> albums_;
32 std::vector<AlbumInfo> folders_;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dcontext.hpp35 _cl_context(const std::vector<cl_context_properties> &props,
36 const std::vector<clover::device *> &devs);
41 const std::vector<cl_context_properties> &props() const {
45 const std::vector<clover::device *> devs;
48 std::vector<cl_context_properties> __props;

Completed in 1122 milliseconds

1234567891011>>