HomeSort by relevance Sort by last modified time
    Searched full:vector (Results 401 - 425 of 20677) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
address_field_util_test.cc 20 #include <vector>
38 std::vector<FormatElement> actual;
41 std::vector<FormatElement> expected;
59 std::vector<FormatElement> actual;
61 std::vector<FormatElement> expected(1, FormatElement(COUNTRY));
66 std::vector<FormatElement> actual;
72 std::vector<FormatElement> fields;
78 std::vector<AddressField> actual;
81 std::vector<AddressField> expected;
89 std::vector<AddressField> fields
    [all...]
  /external/chromium_org/tools/gn/
ninja_binary_target_writer.h 27 void WriteSources(std::vector<OutputFile>* object_files);
28 void WriteLinkerStuff(const std::vector<OutputFile>& object_files);
36 const std::vector<OutputFile>& object_files);
39 void WriteSourceSetStamp(const std::vector<OutputFile>& object_files);
44 std::vector<const Target*>* linkable_deps,
45 std::vector<const Target*>* non_linkable_deps) const;
48 // target, adding it to the appropriate vector. If the dependency is a source
53 std::vector<const Target*>* linkable_deps,
54 std::vector<const Target*>* non_linkable_deps) const;
62 const std::vector<const Target*>& non_linkable_deps)
    [all...]
ninja_writer.cc 27 std::vector<const Settings*> all_settings;
28 std::vector<const Target*> default_targets;
38 std::vector<const Settings*>* all_settings) {
40 std::vector<const Target*> default_targets;
44 bool NinjaWriter::WriteToolchains(std::vector<const Settings*>* all_settings,
45 std::vector<const Target*>* default_targets) {
47 typedef std::map<Label, std::vector<const Target*> > CategorizedMap;
50 std::vector<const BuilderRecord*> all_records = builder_->GetAllRecords();
89 const std::vector<const Settings*>& all_settings,
90 const std::vector<const Target*>& default_targets)
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Double2.java 20 * Vector version of the basic double type.
42 * Vector add
57 * Vector add
67 * Vector add
77 * Vector add
92 * Vector subtraction
102 * Vector subtraction
117 * Vector subtraction
127 * Vector subtraction
142 * Vector multiplicatio
    [all...]
Double3.java 20 * Vector version of the basic double type.
44 * Vector add
60 * Vector add
71 * Vector add
82 * Vector add
98 * Vector subtraction
109 * Vector subtraction
125 * Vector subtraction
136 * Vector subtraction
152 * Vector multiplicatio
    [all...]
Float2.java 20 * Vector version of the basic float type.
41 * Vector add
56 * Vector add
66 * Vector add
76 * Vector add
91 * Vector subtraction
101 * Vector subtraction
116 * Vector subtraction
126 * Vector subtraction
141 * Vector multiplicatio
    [all...]
Float3.java 20 * Vector version of the basic float type.
44 * Vector add
60 * Vector add
71 * Vector add
82 * Vector add
98 * Vector subtraction
109 * Vector subtraction
125 * Vector subtraction
136 * Vector subtraction
152 * Vector multiplicatio
    [all...]
  /libcore/luni/src/main/java/java/util/
Vector.java 26 * Vector is an implementation of {@link List}, backed by an array and synchronized.
39 public class Vector<E> extends AbstractList<E> implements List<E>,
45 * The number of elements or the size of the vector.
50 * The elements of the vector.
55 * How many elements should be added to the vector when it is detected that
64 * Constructs a new vector using the default capacity.
66 public Vector() {
71 * Constructs a new vector using the specified capacity.
74 * the initial capacity of the new vector.
78 public Vector(int capacity)
261 Vector<E> vector = (Vector<E>) super.clone(); local
    [all...]
  /external/ceres-solver/internal/ceres/
partitioned_matrix_view_test.cc 33 #include <vector>
85 Vector x1(pmv_->num_cols_e());
86 Vector x2(pmv_->num_cols());
93 Vector y1 = Vector::Zero(pmv_->num_rows());
96 Vector y2 = Vector::Zero(pmv_->num_rows());
105 Vector x1(pmv_->num_cols_f());
106 Vector x2 = Vector::Zero(pmv_->num_cols())
    [all...]
  /external/chromium_org/base/
stl_util_unittest.cc 54 std::vector<int> vector; local
55 vector.push_back(1);
56 vector.push_back(1);
57 vector.push_back(4);
58 vector.push_back(64);
59 vector.push_back(12432);
60 EXPECT_TRUE(STLIsSorted(vector));
61 vector.back() = 1;
62 EXPECT_FALSE(STLIsSorted(vector));
    [all...]
  /external/chromium_org/cc/base/
scoped_ptr_vector.h 9 #include <vector>
18 // This type acts like a vector<scoped_ptr> based on top of std::vector. The
19 // ScopedPtrVector has ownership of all elements in the vector.
23 typedef typename std::vector<T*>::const_iterator const_iterator;
24 typedef typename std::vector<T*>::reverse_iterator reverse_iterator;
25 typedef typename std::vector<T*>::const_reverse_iterator
30 typedef typename std::vector<T*>::iterator iterator;
33 // to methods on the ScopedPtrVector class to appear in the vector.
34 class iterator : public std::vector<T*>::iterator
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
stl_util_unittest.cc 61 std::vector<int> vector; local
62 vector.push_back(1);
63 vector.push_back(1);
64 vector.push_back(4);
65 vector.push_back(64);
66 vector.push_back(12432);
67 EXPECT_TRUE(STLIsSorted(vector));
68 vector.back() = 1;
69 EXPECT_FALSE(STLIsSorted(vector));
    [all...]
  /external/chromium_org/google_apis/cup/
client_update_protocol.cc 18 base::StringPiece ByteVectorToSP(const std::vector<uint8>& vec) {
33 std::vector<uint8> Hash(const std::vector<uint8>& data) {
34 std::vector<uint8> result(HashDigestSize());
41 std::vector<uint8> Hash(const base::StringPiece& sdata) {
42 std::vector<uint8> result(HashDigestSize());
51 std::vector<uint8> SymConcat(uint8 id,
52 const std::vector<uint8>* h1,
53 const std::vector<uint8>* h2,
54 const std::vector<uint8>* h3)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
AttributeTable.java 5 import java.util.Vector;
73 Vector v;
77 v = new Vector();
84 v = (Vector)value;
112 if (value instanceof Vector)
114 return (Attribute)((Vector)value).elementAt(0);
129 * Return all the attributes matching the OBJECT IDENTIFIER oid. The vector will be
133 * @return a vector of all the attributes found of type oid.
142 if (value instanceof Vector)
144 Enumeration e = ((Vector)value).elements()
    [all...]
  /external/chromium_org/components/translate/core/browser/
translate_prefs_unittest.cc 9 #include <vector>
16 std::vector<std::string> blacklisted_languages;
24 std::vector<std::string> accept_languages;
37 std::vector<std::string> blocked_languages;
44 std::vector<std::string> expected;
56 for (std::vector<std::string>::const_iterator it = expected.begin();
66 std::vector<std::string> blacklisted_languages;
69 std::vector<std::string> accept_languages;
77 std::vector<std::string> blocked_languages;
81 std::vector<std::string> expected
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
arith_routins.h 31 * - dataQ7 : data vector in Q7
32 * - envQ8 : side info vector defining the width of the pdf
34 * - lenData : data vector length
67 * - envQ8 : side info vector defining the width of the pdf
69 * - lenData : data vector length
72 * - dataQ7 : input: dither vector, output: data vector, in Q7
91 * - data : data vector
93 * - lenData : data vector length
117 * - lenData : data vector lengt
    [all...]
  /external/deqp/framework/randomshaders/
rsgShader.hpp 33 #include <vector>
58 std::vector<Variable*> m_parameters;
76 std::vector<Scalar> m_min;
77 std::vector<Scalar> m_max;
104 std::vector<Statement*>& getGlobalStatements (void) { return m_globalStatements; }
109 std::vector<ShaderInput*>& getInputs (void) { return m_inputs; }
110 std::vector<ShaderInput*>& getUniforms (void) { return m_uniforms; }
113 const std::vector<ShaderInput*>& getInputs (void) const { return m_inputs; }
114 const std::vector<ShaderInput*>& getUniforms (void) const { return m_uniforms; }
115 void getOutputs (std::vector<const Variable*>& outputs) const
    [all...]
  /external/libcxx/test/containers/sequences/vector/vector.cons/
construct_iter_iter_alloc.pass.cpp 10 // <vector>
12 // template <class InputIter> vector(InputIter first, InputIter last,
15 #include <vector>
50 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc);
51 test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), alloc);
52 test<std::vector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an), alloc);
53 test<std::vector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an), alloc);
54 test<std::vector<int> >(a, an, alloc);
61 test<std::vector<int, min_allocator<int>> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc);
62 test<std::vector<int, min_allocator<int>> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), allo (…)
    [all...]
  /external/libcxx/test/containers/sequences/vector.bool/
construct_iter_iter_alloc.pass.cpp 10 // <vector>
11 // vector<bool>
13 // template <class InputIter> vector(InputIter first, InputIter last,
16 #include <vector>
39 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), alloc);
40 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an), alloc);
41 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an), alloc);
42 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an), alloc);
43 test<std::vector<bool> >(a, an, alloc);
48 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), allo (…)
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
arith_routins.h 31 * - dataQ7 : data vector in Q7
32 * - envQ8 : side info vector defining the width of the pdf
34 * - lenData : data vector length
67 * - envQ8 : side info vector defining the width of the pdf
69 * - lenData : data vector length
72 * - dataQ7 : input: dither vector, output: data vector, in Q7
91 * - data : data vector
93 * - lenData : data vector length
117 * - lenData : data vector lengt
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
construct_iter_iter_alloc.pass.cpp 10 // <vector>
12 // template <class InputIter> vector(InputIter first, InputIter last,
15 #include <vector>
52 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc);
53 test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), alloc);
54 test<std::vector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an), alloc);
55 test<std::vector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an), alloc);
56 test<std::vector<int> >(a, an, alloc);
63 test<std::vector<int, min_allocator<int>> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc);
64 test<std::vector<int, min_allocator<int>> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), allo (…)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
construct_iter_iter_alloc.pass.cpp 10 // <vector>
11 // vector<bool>
13 // template <class InputIter> vector(InputIter first, InputIter last,
16 #include <vector>
39 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), alloc);
40 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an), alloc);
41 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an), alloc);
42 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an), alloc);
43 test<std::vector<bool> >(a, an, alloc);
48 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), allo (…)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/debug/
vector 1 // Debugging vector implementation -*- C++ -*-
25 /** @file debug/vector
32 #include <vector>
41 /// Class std::vector with safety/checking/debug instrumentation.
44 class vector
45 : public _GLIBCXX_STD_C::vector<_Tp, _Allocator>,
46 public __gnu_debug::_Safe_sequence<vector<_Tp, _Allocator> >
48 typedef _GLIBCXX_STD_C::vector<_Tp, _Allocator> _Base;
55 typedef __gnu_debug::_Safe_sequence<vector<_Tp, _Allocator> > _Safe_base;
63 typedef __gnu_debug::_Safe_iterator<_Base_iterator,vector>
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/
vector 1 // Profiling vector implementation -*- C++ -*-
24 /** @file profile/vector
31 #include <vector>
42 class vector
43 : public _GLIBCXX_STD_C::vector<_Tp, _Allocator>
45 typedef _GLIBCXX_STD_C::vector<_Tp, _Allocator> _Base;
58 typedef __iterator_tracker<_Base_iterator, vector>
60 typedef __iterator_tracker<_Base_const_iterator, vector>
81 vector() _GLIBCXX_NOEXCEPT
89 vector(const _Allocator& __a) _GLIBCXX_NOEXCEP
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
PKCS12BagAttributeCarrierImpl.java 9 import java.util.Vector;
22 private Vector pkcs12Ordering;
24 PKCS12BagAttributeCarrierImpl(Hashtable attributes, Vector ordering)
32 this(new Hashtable(), new Vector());
71 Vector getOrdering()
82 out.writeObject(new Vector());
111 this.pkcs12Ordering = (Vector)in.readObject();

Completed in 2157 milliseconds

<<11121314151617181920>>