/external/chromium_org/tools/gn/ |
commands.h | 10 #include <vector> 20 typedef int (*CommandRunner)(const std::vector<std::string>&); 25 int RunArgs(const std::vector<std::string>& args); 30 int RunCheck(const std::vector<std::string>& args); 35 int RunDesc(const std::vector<std::string>& args); 40 int RunGen(const std::vector<std::string>& args); 45 int RunHelp(const std::vector<std::string>& args); 50 int RunRefs(const std::vector<std::string>& args); 78 const Target* GetTargetForDesc(const std::vector<std::string>& args);
|
/external/deqp/framework/randomshaders/ |
rsgProgramGenerator.cpp | 28 using std::vector; 54 vector<ShaderInput*> emptyOutputs; // \note [pyry] gl_FragColor is added in ShaderGenerator 63 const vector<ShaderInput*>& fragmentInputs = fragmentShader.getInputs(); // \note gl_Position and dEQP_Position are handled in ShaderGenerator 70 const vector<ShaderInput*>& vertexUniforms = vertexShader.getUniforms(); 71 const vector<ShaderInput*>& fragmentUniforms = fragmentShader.getUniforms(); 72 vector<ShaderInput*> unifiedSamplers; 76 for (vector<ShaderInput*>::const_iterator i = vertexUniforms.begin(); i != vertexUniforms.end(); i++) 82 for (vector<ShaderInput*>::const_iterator i = fragmentUniforms.begin(); i != fragmentUniforms.end(); i++) 89 for (vector<ShaderInput*>::const_iterator i = unifiedSamplers.begin(); i != unifiedSamplers.end(); i++)
|
/external/deqp/modules/glshared/ |
glsRandomShaderCase.hpp | 36 #include <vector> 50 const std::vector<float>& getVertices (void) const { return m_vertices; } 51 std::vector<float>& getVertices (void) { return m_vertices; } 58 std::vector<float> m_vertices; 70 std::vector<std::pair<int, const glu::Texture2D*> > getBindings2D (void) const; 71 std::vector<std::pair<int, const glu::TextureCube*> > getBindingsCube (void) const; 101 std::vector<rsg::VariableValue> m_uniforms; 103 std::vector<VertexArray> m_vertexArrays; 104 std::vector<deUint16> m_indices;
|
/external/eigen/Eigen/src/Core/ |
VectorBlock.h | 19 * \brief Expression of a fixed-size or dynamic-size sub-vector 21 * \param VectorType the type of the object in which we are taking a sub-vector 22 * \param Size size of the sub-vector we are taking at compile time (optional) 24 * This class represents an expression of either a fixed-size or dynamic-size sub-vector. 28 * However, if you want to directly maniputate sub-vector expressions, 75 inline VectorBlock(VectorType& vector, Index start, Index size) 76 : Base(vector, 85 inline VectorBlock(VectorType& vector, Index start) 86 : Base(vector, IsColVector ? start : 0, IsColVector ? 0 : start)
|
/external/junit/src/junit/framework/ |
TestResult.java | 7 import java.util.Vector; 19 // BEGIN android-changed changed types from List<> to Vector<> for API compatibility 20 protected Vector<TestFailure> fFailures; 21 protected Vector<TestFailure> fErrors; 22 protected Vector<TestListener> fListeners; 28 // BEGIN android-changed to Vector 29 fFailures= new Vector<TestFailure>(); 30 fErrors= new Vector<TestFailure>(); 31 fListeners= new Vector<TestListener>();
|
/external/libcxx/test/containers/sequences/vector.bool/ |
erase_iter.pass.cpp | 10 // <vector> 11 // vector<bool> 15 #include <vector> 24 std::vector<bool> l1(a1, a1+3); 25 std::vector<bool>::const_iterator i = l1.begin(); 27 std::vector<bool>::iterator j = l1.erase(i); 45 std::vector<bool, min_allocator<bool>> l1(a1, a1+3); 46 std::vector<bool, min_allocator<bool>>::const_iterator i = l1.begin(); 48 std::vector<bool, min_allocator<bool>>::iterator j = l1.erase(i);
|
/external/llvm/test/CodeGen/PowerPC/ |
unal-altivec.ll | 6 vector.ph: 7 br label %vector.body 9 vector.body: ; preds = %vector.body, %vector.ph 10 %index = phi i64 [ 0, %vector.ph ], [ %index.next, %vector.body ] 29 br i1 %10, label %for.end, label %vector.body 48 for.end: ; preds = %vector.body
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/ |
erase_iter.pass.cpp | 10 // <vector> 11 // vector<bool> 15 #include <vector> 24 std::vector<bool> l1(a1, a1+3); 25 std::vector<bool>::const_iterator i = l1.begin(); 27 std::vector<bool>::iterator j = l1.erase(i); 45 std::vector<bool, min_allocator<bool>> l1(a1, a1+3); 46 std::vector<bool, min_allocator<bool>>::const_iterator i = l1.begin(); 48 std::vector<bool, min_allocator<bool>>::iterator j = l1.erase(i);
|
/prebuilts/misc/common/swig/include/2.0.11/csharp/ |
std_vector.i | 4 * SWIG typemaps for std::vector<T> 11 * C++ std::vector wrappers. The IList<> interface is also implemented to provide enhanced functionality 17 * %template(VectKlass) std::vector<SomeNamespace::Klass>; 27 // MACRO for use within the std::vector class body 29 %typemap(csinterfaces) std::vector< CTYPE > "IDisposable, System.Collections.IEnumerable\n#if !SWIG_DOTNET_1\n , System.Collections.Generic.CSINTERFACE<$typemap(cstype, CTYPE)>\n#endif\n"; 30 %typemap(cscode) std::vector< CTYPE > %{ 221 vector(); 222 vector(const vector &other); 224 vector(int capacity) throw (std::out_of_range) [all...] |
/external/ceres-solver/internal/ceres/ |
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_; } 132 const vector<int>& blocks); 137 // Also compute a "program" vector, which for every term in the 150 vector<int>* program); 157 const vector<int>& program, 163 vector<int> rows_ [all...] |
problem_impl.h | 43 #include <vector> 77 const vector<double*>& parameter_blocks); 139 vector<double>* residuals, 140 vector<double>* gradient, 153 void GetParameterBlocks(vector<double*>* parameter_blocks) const; 154 void GetResidualBlocks(vector<ResidualBlockId>* residual_blocks) const; 158 vector<double*>* parameter_blocks) const; 162 vector<ResidualBlockId>* residual_blocks) const; 180 vector<double>* residuals, 181 vector<double>* gradient [all...] |
/external/chromium_org/chrome/utility/importer/ |
external_process_importer_bridge.cc | 43 const std::vector<ImportedBookmarkEntry>& bookmarks, 52 for (std::vector<ImportedBookmarkEntry>::const_iterator it = 54 std::vector<ImportedBookmarkEntry> bookmark_group; 55 std::vector<ImportedBookmarkEntry>::const_iterator end_group = 79 const std::vector<ImportedFaviconUsage>& favicons) { 87 for (std::vector<ImportedFaviconUsage>::const_iterator it = 89 std::vector<ImportedFaviconUsage> favicons_group; 90 std::vector<ImportedFaviconUsage>::const_iterator end_group = 103 const std::vector<ImporterURLRow>& rows, 111 for (std::vector<ImporterURLRow>::const_iterator it = rows.begin() [all...] |
/external/chromium_org/third_party/angle/src/compiler/translator/ |
OutputHLSL.h | 34 const std::vector<gl::Uniform> &getUniforms(); 35 const std::vector<gl::InterfaceBlock> &getInterfaceBlocks() const; 36 const std::vector<gl::Attribute> &getOutputVariables() const; 37 const std::vector<gl::Attribute> &getAttributes() const; 38 const std::vector<gl::Varying> &getVaryings() const; 181 void declareInterfaceBlockField(const TType &type, const TString &name, std::vector<gl::InterfaceBlockField>& output); 182 gl::Uniform declareUniformToList(const TType &type, const TString &name, int registerIndex, std::vector<gl::Uniform>& output); 184 void declareVaryingToList(const TType &type, TQualifier baseTypeQualifier, const TString &name, std::vector<gl::Varying>& fieldsOut); 207 std::vector<gl::Uniform> mActiveUniforms; 208 std::vector<gl::InterfaceBlock> mActiveInterfaceBlocks [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
fakemediaengine.h | 35 #include <vector> 61 const std::vector<RtpHeaderExtension>& recv_extensions() { 64 const std::vector<RtpHeaderExtension>& send_extensions() { 105 const std::vector<RtpHeaderExtension>& extensions) { 110 const std::vector<RtpHeaderExtension>& extensions) { 156 const std::vector<StreamParams>& send_streams() const { 159 const std::vector<StreamParams>& recv_streams() const { 211 std::vector<RtpHeaderExtension> recv_extensions_; 212 std::vector<RtpHeaderExtension> send_extensions_; 215 std::vector<StreamParams> send_streams_ [all...] |
/external/chromium_org/ui/display/chromeos/ |
touchscreen_delegate_impl_unittest.cc | 5 #include <vector> 29 virtual std::vector<TouchscreenDevice> GetDevices() OVERRIDE { 34 std::vector<TouchscreenDevice> devices_; 57 snapshot->set_modes(std::vector<const DisplayMode*>(1, mode)); 63 snapshot->set_modes(std::vector<const DisplayMode*>(1, mode)); 72 snapshot->set_modes(std::vector<const DisplayMode*>(1, mode)); 87 std::vector<DisplayConfigurator::DisplayState> GetDisplayStates() { 88 std::vector<DisplayConfigurator::DisplayState> states(displays_.size()); 105 std::vector<DisplayConfigurator::DisplayState> display_states = 117 std::vector<DisplayConfigurator::DisplayState> display_states [all...] |
/external/libcxx/test/containers/sequences/vector/ |
iterators.pass.cpp | 10 // <vector> 19 #include <vector> 35 typedef std::vector<T> C; 44 typedef std::vector<T> C; 53 typedef std::vector<T> C; 63 typedef std::vector<T> C; 76 typedef std::vector<T> C; 83 typedef std::vector<T, min_allocator<T>> C; 92 typedef std::vector<T, min_allocator<T>> C; 101 typedef std::vector<T, min_allocator<T>> C [all...] |
/external/llvm/lib/Target/Mips/ |
MipsSEISelDAGToDAG.h | 71 /// \brief Select constant vector splats. 73 /// \brief Select constant vector splats whose value fits in a given integer. 76 /// \brief Select constant vector splats whose value fits in a uimm1. 78 /// \brief Select constant vector splats whose value fits in a uimm2. 80 /// \brief Select constant vector splats whose value fits in a uimm3. 82 /// \brief Select constant vector splats whose value fits in a uimm4. 84 /// \brief Select constant vector splats whose value fits in a uimm5. 86 /// \brief Select constant vector splats whose value fits in a uimm6. 88 /// \brief Select constant vector splats whose value fits in a uimm8. 90 /// \brief Select constant vector splats whose value fits in a simm5 [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/ |
iterators.pass.cpp | 10 // <vector> 19 #include <vector> 35 typedef std::vector<T> C; 44 typedef std::vector<T> C; 53 typedef std::vector<T> C; 63 typedef std::vector<T> C; 76 typedef std::vector<T> C; 83 typedef std::vector<T, min_allocator<T>> C; 92 typedef std::vector<T, min_allocator<T>> C; 101 typedef std::vector<T, min_allocator<T>> C [all...] |
/prebuilts/misc/common/swig/include/2.0.11/d/ |
std_vector.i | 4 * SWIG typemaps for std::vector<T>, D implementation. 6 * The D wrapper is made to loosely resemble a tango.util.container.more.Vector 13 * %template(VectKlass) std::vector<SomeNamespace::Klass>; 23 // MACRO for use within the std::vector class body 26 %typemap(dimports) std::vector< CTYPE > "static import tango.core.Exception;" 27 %typemap(dcode) std::vector< CTYPE > %{ 41 throw new tango.core.Exception.NoSuchElementException("Tried to assign to element out of vector bounds."); 49 throw new tango.core.Exception.NoSuchElementException("Tried to read from element out of vector bounds."); 98 throw new tango.core.Exception.IllegalArgumentException("Tried to make the capacity of a vector smaller than its size."); 114 vector(); [all...] |
/external/chromium_org/base/test/ |
sequenced_task_runner_test_template.cc | 91 const std::vector<TaskEvent>& 119 std::vector<int> GetEventTypeOrder(const std::vector<TaskEvent>& events, 121 std::vector<int> tasks; 122 std::vector<TaskEvent>::const_iterator event; 131 std::vector<TaskEvent::Type> GetEventsForTask( 132 const std::vector<TaskEvent>& events, 134 std::vector<TaskEvent::Type> task_event_orders; 135 std::vector<TaskEvent>::const_iterator event; 147 const std::vector<TaskEvent>& events [all...] |
/external/chromium_org/chromeos/process_proxy/ |
process_output_watcher_unittest.cc | 9 #include <vector> 123 void RunTest(const std::vector<TestCase>& test_cases) { 177 std::vector<TestCase> exp; 182 std::vector<TestCase> test_cases; 197 std::vector<TestCase> test_cases; 205 std::vector<TestCase> test_cases; 213 std::vector<TestCase> test_cases; 221 std::vector<TestCase> test_cases; 230 std::vector<TestCase> test_cases; 237 std::vector<TestCase> test_cases [all...] |
/external/chromium_org/components/favicon_base/ |
select_favicon_frames.cc | 23 size_t BiggestCandidate(const std::vector<gfx::Size>& candidate_sizes) { 53 const std::vector<gfx::Size>& candidate_sizes, 114 const std::vector<gfx::Size>& candidate_sizes, 115 const std::vector<int>& desired_sizes, 117 std::vector<SelectionResult>* results) { 124 std::vector<int>::const_iterator zero_size_it = 187 for (std::vector<gfx::ImageSkiaRep>::const_iterator iter = 206 std::vector<gfx::ImageSkiaRep> image_skia_reps_; 215 const std::vector<SkBitmap>& bitmaps, 216 const std::vector<gfx::Size>& original_sizes [all...] |
/external/chromium_org/third_party/re2/re2/testing/ |
regexp_generator.cc | 26 #include <vector> 32 // Returns a vector of the egrep regexp operators. 33 const vector<string>& RegexpGenerator::EgrepOps() { 42 static vector<string> v(ops, ops + arraysize(ops)); 47 const vector<string>& atoms, 48 const vector<string>& ops) 60 vector<string> postfix; 70 vector<string> postfix; 99 // The initial call should be GeneratePostfix([empty vector], 0, 0, 0). 101 void RegexpGenerator::GeneratePostfix(vector<string>* post, int nstk [all...] |
/external/chromium_org/ui/base/x/ |
selection_utils.cc | 36 std::vector< ::Atom> GetTextAtomsFrom(const X11AtomCache* atom_cache) { 37 std::vector< ::Atom> atoms; 46 std::vector< ::Atom> GetURLAtomsFrom(const X11AtomCache* atom_cache) { 47 std::vector< ::Atom> atoms; 53 std::vector< ::Atom> GetURIListAtomsFrom(const X11AtomCache* atom_cache) { 54 std::vector< ::Atom> atoms; 59 void GetAtomIntersection(const std::vector< ::Atom>& desired, 60 const std::vector< ::Atom>& offered, 61 std::vector< ::Atom>* output) { 62 for (std::vector< ::Atom>::const_iterator it = desired.begin() [all...] |
/external/regex-re2/re2/testing/ |
regexp_generator.cc | 26 #include <vector> 32 // Returns a vector of the egrep regexp operators. 33 const vector<string>& RegexpGenerator::EgrepOps() { 42 static vector<string> v(ops, ops + arraysize(ops)); 47 const vector<string>& atoms, 48 const vector<string>& ops) 60 vector<string> postfix; 70 vector<string> postfix; 99 // The initial call should be GeneratePostfix([empty vector], 0, 0, 0). 101 void RegexpGenerator::GeneratePostfix(vector<string>* post, int nstk [all...] |