/external/chromium_org/testing/android/ |
native_test_util.cc | 15 std::vector<std::string>* args) { 31 const char* path, std::vector<std::string>* args) { 39 int ArgsToArgv(const std::vector<std::string>& args, 40 std::vector<char*>* argv) {
|
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
CSSTransitionData.h | 10 #include "wtf/Vector.h" 67 const Vector<TransitionProperty>& propertyList() const { return m_propertyList; } 68 Vector<TransitionProperty>& propertyList() { return m_propertyList; } 76 Vector<TransitionProperty> m_propertyList;
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
RefVector.h | 10 #include "wtf/Vector.h" 30 const Vector<T>& vector() const { return m_vector; } function in class:WebCore::RefVector 33 Vector<T> m_vector;
|
/external/chromium_org/third_party/android_crazy_linker/src/src/ |
crazy_linker_util_unittest.cpp | 89 TEST(Vector, IsEmpty) { 90 Vector<void*> v; 94 TEST(Vector, PushBack) { 95 Vector<int> v; 102 TEST(Vector, PushBack2) { 104 Vector<int> v; 112 TEST(Vector, At) { 114 Vector<int> v; 124 TEST(Vector, IndexOf) { 126 Vector<int> v [all...] |
/external/chromium_org/third_party/ots/src/ |
cff.h | 12 #include <vector> 21 std::vector<uint32_t> offsets; 37 std::vector<CFFIndex *> char_strings_array; 39 std::vector<CFFIndex *> local_subrs_per_font;
|
/external/chromium_org/third_party/re2/re2/testing/ |
string_generator.h | 13 #include <vector> 22 StringGenerator(int maxlen, const vector<string>& alphabet); 42 vector<string> alphabet_; // Alphabet, one string per letter. 48 vector<int> digits_; // Alphabet indices for next string.
|
/external/chromium_org/tools/gn/ |
ninja_toolchain_writer.h | 11 #include <vector> 27 const std::vector<const Target*>& targets); 32 const std::vector<const Target*>& targets, 43 std::vector<const Target*> targets_;
|
/external/chromium_org/tools/gyp/test/win/compiler-flags/ |
force-include-files.cc | 6 std::list<std::vector<std::string> > l;
|
/external/chromium_org/ui/display/util/ |
edid_parser.h | 11 #include <vector> 23 DISPLAY_UTIL_EXPORT bool GetDisplayIdFromEDID(const std::vector<uint8_t>& edid, 32 const std::vector<uint8_t>& edid, 37 const std::vector<uint8_t>& edid,
|
/external/chromium_org/ui/events/ |
event_target_iterator.h | 8 #include <vector> 27 explicit EventTargetIteratorImpl(const std::vector<T*>& children) 42 typename std::vector<T*>::const_reverse_iterator begin_; 43 typename std::vector<T*>::const_reverse_iterator end_;
|
/external/chromium_org/ui/gfx/ |
color_profile.h | 8 #include <vector> 25 const std::vector<char>& profile() const { return profile_; } 28 std::vector<char> profile_; 42 std::vector<char>* profile);
|
/external/chromium_org/webkit/browser/appcache/ |
appcache_database.h | 10 #include <vector> 92 typedef std::vector<NamespaceRecord> NamespaceRecordVector; 120 const GURL& origin, std::vector<GroupRecord>* records); 130 const GURL& origin, std::vector<CacheRecord>* records); 135 int64 cache_id, std::vector<EntryRecord>* records); 137 const GURL& url, std::vector<EntryRecord>* records); 141 const std::vector<EntryRecord>& records); 146 int64 cache_id, std::vector<int64>* response_ids) { 161 std::vector<NamespaceRecord>* fallbacks); 168 int64 cache_id, std::vector<OnlineWhiteListRecord>* records) [all...] |
/external/clang/test/CodeGen/ |
2006-03-16-VectorCtor.c | 1 // Test that basic generic vector support works
|
/external/clang/test/Driver/ |
nostdincxx.cpp | 3 #include <vector>
|
/external/compiler-rt/test/msan/ |
vector_select.cc | 5 // with vector arguments.
|
/external/eigen/doc/snippets/ |
Map_placement_new.cpp | 3 cout << "The mapped vector v is: " << v << "\n";
|
Tridiagonalization_householderCoefficients.cpp | 6 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
|
Tutorial_solve_singular.cpp | 6 cout << "Here is the vector b:" << endl << b << endl;
|
Tutorial_solve_triangular.cpp | 6 cout << "Here is the vector b:" << endl << b << endl;
|
/external/eigen/doc/special_examples/ |
Tutorial_sparse_example.cpp | 2 #include <vector> 7 void buildProblem(std::vector<T>& coefficients, Eigen::VectorXd& b, int n); 16 std::vector<T> coefficients; // list of non-zeros coefficients 17 Eigen::VectorXd b(m); // the right hand side-vector resulting from the constraints
|
/external/eigen/test/eigen2/ |
gsl_helper.h | 27 typedef gsl_vector* Vector; 29 static Vector createVector(int size) { return gsl_vector_alloc(size); } 31 static void free(Vector& m) { gsl_vector_free(m); m=0; } 32 static void prod(const Matrix& m, const Vector& v, Vector& x) { gsl_blas_dgemv(CblasNoTrans,1,m,v,0,x); } 34 static void cholesky_solve(const Matrix& m, const Vector& b, Vector& x) { gsl_linalg_cholesky_solve(m,b,x); } 35 static void eigen_symm(const Matrix& m, Vector& eval, Matrix& evec) 45 static void eigen_symm_gen(const Matrix& m, const Matrix& _b, Vector& eval, Matrix& evec) 62 typedef gsl_vector_complex* Vector; [all...] |
/external/google-tv-pairing-protocol/cpp/src/polo/encoding/ |
hexadecimalencoder.cc | 21 #include <vector> 28 const std::vector<uint8_t>& secret) const { 32 std::vector<uint8_t> HexadecimalEncoder::DecodeToBytes( 36 std::vector<uint8_t> decoded(bytes, bytes + length);
|
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/message/ |
secretackmessage.h | 20 #include <vector> 32 explicit SecretAckMessage(const std::vector<uint8_t>& secret); 35 const std::vector<uint8_t>& secret() const; 40 std::vector<uint8_t> secret_;
|
secretmessage.h | 20 #include <vector> 33 explicit SecretMessage(const std::vector<uint8_t>& secret); 36 const std::vector<uint8_t>& secret() const; 41 std::vector<uint8_t> secret_;
|
/external/libcxx/test/containers/sequences/vector/ |
const_value_type.pass.cpp | 10 // <vector> 12 // vector<const int> v; // an extension 14 #include <vector> 20 std::vector<const int> v = {1, 2, 3};
|