HomeSort by relevance Sort by last modified time
    Searched refs:vector (Results 251 - 275 of 7855) sorted by null

<<11121314151617181920>>

  /system/bt/vendor_libs/test_vendor_lib/include/
dual_mode_controller.h 22 #include <vector>
39 // single const std::vector<uint8_t>& argument. After implementing the
57 const std::vector<uint8_t> GetBdAddress();
64 const std::vector<uint8_t> GetBufferSize();
69 const std::vector<uint8_t> GetLocalExtendedFeatures(uint8_t page_number);
74 const std::vector<uint8_t> GetLocalName();
79 const std::vector<uint8_t> GetLocalSupportedCommands();
85 const std::vector<uint8_t> GetLocalVersionInformation();
103 std::vector<uint8_t> bd_address_;
119 const std::vector<std::string>& args)
    [all...]
  /external/libcxx/test/std/containers/sequences/vector.bool/
construct_iter_iter.pass.cpp 10 // <vector>
11 // vector<bool>
13 // template <class InputIter> vector(InputIter first, InputIter last);
15 #include <vector>
36 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
37 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
38 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
39 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
40 test<std::vector<bool> >(a, an);
42 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an))
    [all...]
assign_copy.pass.cpp 10 // <vector>
12 // vector& operator=(const vector& c);
14 #include <vector>
22 std::vector<bool, test_allocator<bool> > l(3, 2, test_allocator<bool>(5));
23 std::vector<bool, test_allocator<bool> > l2(l, test_allocator<bool>(3));
29 std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5));
30 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3));
37 std::vector<bool, min_allocator<bool> > l(3, 2, min_allocator<bool>());
38 std::vector<bool, min_allocator<bool> > l2(l, min_allocator<bool>())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
construct_default.pass.cpp 10 // <vector>
12 // vector(const Alloc& = Alloc());
14 #include <vector>
55 test0<std::vector<int> >();
56 test0<std::vector<NotConstructible> >();
57 test1<std::vector<int, test_allocator<int> > >(test_allocator<int>(3));
58 test1<std::vector<NotConstructible, test_allocator<NotConstructible> > >
62 std::vector<int, stack_allocator<int, 10> > v;
67 test0<std::vector<int, min_allocator<int>> >();
68 test0<std::vector<NotConstructible, min_allocator<NotConstructible>> >()
    [all...]
assign_copy.pass.cpp 10 // <vector>
12 // vector& operator=(const vector& c);
14 #include <vector>
22 std::vector<int, test_allocator<int> > l(3, 2, test_allocator<int>(5));
23 std::vector<int, test_allocator<int> > l2(l, test_allocator<int>(3));
29 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3));
37 std::vector<int, min_allocator<int> > l(3, 2, min_allocator<int>());
38 std::vector<int, min_allocator<int> > l2(l, min_allocator<int>())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
construct_iter_iter.pass.cpp 10 // <vector>
11 // vector<bool>
13 // template <class InputIter> vector(InputIter first, InputIter last);
15 #include <vector>
36 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
37 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
38 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
39 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
40 test<std::vector<bool> >(a, an);
42 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an))
    [all...]
assign_copy.pass.cpp 10 // <vector>
12 // vector& operator=(const vector& c);
14 #include <vector>
22 std::vector<bool, test_allocator<bool> > l(3, 2, test_allocator<bool>(5));
23 std::vector<bool, test_allocator<bool> > l2(l, test_allocator<bool>(3));
29 std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5));
30 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3));
37 std::vector<bool, min_allocator<bool> > l(3, 2, min_allocator<bool>());
38 std::vector<bool, min_allocator<bool> > l2(l, min_allocator<bool>())
    [all...]
  /system/netd/server/
ResolverController.h 20 #include <vector>
47 int getDnsInfo(unsigned netId, std::vector<std::string>* servers,
48 std::vector<std::string>* domains, __res_params* params,
49 std::vector<android::net::ResolverStats>* stats);
53 int setResolverConfiguration(int32_t netId, const std::vector<std::string>& servers,
54 const std::vector<std::string>& domains, const std::vector<int32_t>& params);
56 int getResolverInfo(int32_t netId, std::vector<std::string>* servers,
57 std::vector<std::string>* domains, std::vector<int32_t>* params
    [all...]
  /bionic/tools/relocation_packer/src/
sleb128.h 17 #include <vector>
35 // Add a vector of values to the encoding stream.
36 // |values| is the vector of signed ints to add.
37 void EnqueueAll(const std::vector<int_t>& values);
40 // |encoding| is the returned vector of encoded data.
41 void GetEncoding(std::vector<uint8_t>* encoding) { *encoding = encoding_; }
44 // Growable vector holding the encoded LEB128 stream.
45 std::vector<uint8_t> encoding_;
53 // |encoding| is the vector of encoded data.
54 explicit Sleb128Decoder(const std::vector<uint8_t>& encoding, size_t start_with)
    [all...]
  /build/kati/
rule.h 18 #include <vector>
38 vector<Symbol> outputs;
39 vector<Symbol> inputs;
40 vector<Symbol> order_only_inputs;
41 vector<Symbol> output_patterns;
44 vector<Value*> cmds;
55 vector<Symbol> outputs;
  /external/libchrome/crypto/
rsa_private_key.h 12 #include <vector>
55 bool Export(std::vector<uint8_t>* output);
59 bool ExportPublicKeyInfo(std::vector<uint8_t>* output);
63 bool ExportPublicKey(std::vector<uint8_t>* output);
69 bool Import(const std::vector<uint8_t>& input);
73 std::vector<uint8_t>* modulus() { return &modulus_; }
74 std::vector<uint8_t>* public_exponent() { return &public_exponent_; }
75 std::vector<uint8_t>* private_exponent() { return &private_exponent_; }
76 std::vector<uint8_t>* prime1() { return &prime1_; }
77 std::vector<uint8_t>* prime2() { return &prime2_;
    [all...]
  /external/libcxx/test/std/containers/sequences/vector/vector.cons/
assign_copy.pass.cpp 10 // <vector>
12 // vector& operator=(const vector& c);
14 #include <vector>
22 std::vector<int, test_allocator<int> > l(3, 2, test_allocator<int>(5));
23 std::vector<int, test_allocator<int> > l2(l, test_allocator<int>(3));
29 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3));
37 std::vector<int, min_allocator<int> > l(3, 2, min_allocator<int>());
38 std::vector<int, min_allocator<int> > l2(l, min_allocator<int>())
    [all...]
  /external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
erase_iter_db2.pass.cpp 10 // <vector>
18 #include <vector>
29 std::vector<int> l1(a1, a1+3);
30 std::vector<int> l2(a1, a1+3);
31 std::vector<int>::const_iterator i = l2.begin();
38 std::vector<int, min_allocator<int>> l1(a1, a1+3);
39 std::vector<int, min_allocator<int>> l2(a1, a1+3);
40 std::vector<int, min_allocator<int>>::const_iterator i = l2.begin();
erase_iter_iter_db1.pass.cpp 10 // <vector>
18 #include <vector>
29 std::vector<int> l1(a1, a1+3);
30 std::vector<int> l2(a1, a1+3);
31 std::vector<int>::iterator i = l1.erase(l2.cbegin(), l1.cbegin()+1);
37 std::vector<int, min_allocator<int>> l1(a1, a1+3);
38 std::vector<int, min_allocator<int>> l2(a1, a1+3);
39 std::vector<int, min_allocator<int>>::iterator i = l1.erase(l2.cbegin(), l1.cbegin()+1);
erase_iter_iter_db2.pass.cpp 10 // <vector>
18 #include <vector>
29 std::vector<int> l1(a1, a1+3);
30 std::vector<int> l2(a1, a1+3);
31 std::vector<int>::iterator i = l1.erase(l1.cbegin(), l2.cbegin()+1);
37 std::vector<int, min_allocator<int>> l1(a1, a1+3);
38 std::vector<int, min_allocator<int>> l2(a1, a1+3);
39 std::vector<int, min_allocator<int>>::iterator i = l1.erase(l1.cbegin(), l2.cbegin()+1);
erase_iter_iter_db3.pass.cpp 10 // <vector>
18 #include <vector>
29 std::vector<int> l1(a1, a1+3);
30 std::vector<int> l2(a1, a1+3);
31 std::vector<int>::iterator i = l1.erase(l2.cbegin(), l2.cbegin()+1);
37 std::vector<int, min_allocator<int>> l1(a1, a1+3);
38 std::vector<int, min_allocator<int>> l2(a1, a1+3);
39 std::vector<int, min_allocator<int>>::iterator i = l1.erase(l2.cbegin(), l2.cbegin()+1);
  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 19 #include <vector>
45 std::vector<MVT::SimpleValueType> RetVTs;
48 std::vector<Record*> RetTypeDefs;
54 std::vector<MVT::SimpleValueType> ParamVTs;
57 std::vector<Record*> ParamTypeDefs;
92 std::vector<std::pair<unsigned, ArgAttribute> > ArgumentAttributes;
99 std::vector<CodeGenIntrinsic> LoadIntrinsics(const RecordKeeper &RC,
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_SymbolDict.h 11 #include <vector>
32 const std::vector<JBig2ArithCtx>& GbContext() const { return m_gbContext; }
33 const std::vector<JBig2ArithCtx>& GrContext() const { return m_grContext; }
35 void SetGbContext(const std::vector<JBig2ArithCtx>& gbContext) {
38 void SetGrContext(const std::vector<JBig2ArithCtx>& grContext) {
43 std::vector<JBig2ArithCtx> m_gbContext;
44 std::vector<JBig2ArithCtx> m_grContext;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/
erase_iter_db2.pass.cpp 10 // <vector>
18 #include <vector>
29 std::vector<int> l1(a1, a1+3);
30 std::vector<int> l2(a1, a1+3);
31 std::vector<int>::const_iterator i = l2.begin();
38 std::vector<int, min_allocator<int>> l1(a1, a1+3);
39 std::vector<int, min_allocator<int>> l2(a1, a1+3);
40 std::vector<int, min_allocator<int>>::const_iterator i = l2.begin();
erase_iter_iter_db1.pass.cpp 10 // <vector>
18 #include <vector>
29 std::vector<int> l1(a1, a1+3);
30 std::vector<int> l2(a1, a1+3);
31 std::vector<int>::iterator i = l1.erase(l2.cbegin(), l1.cbegin()+1);
37 std::vector<int, min_allocator<int>> l1(a1, a1+3);
38 std::vector<int, min_allocator<int>> l2(a1, a1+3);
39 std::vector<int, min_allocator<int>>::iterator i = l1.erase(l2.cbegin(), l1.cbegin()+1);
erase_iter_iter_db2.pass.cpp 10 // <vector>
18 #include <vector>
29 std::vector<int> l1(a1, a1+3);
30 std::vector<int> l2(a1, a1+3);
31 std::vector<int>::iterator i = l1.erase(l1.cbegin(), l2.cbegin()+1);
37 std::vector<int, min_allocator<int>> l1(a1, a1+3);
38 std::vector<int, min_allocator<int>> l2(a1, a1+3);
39 std::vector<int, min_allocator<int>>::iterator i = l1.erase(l1.cbegin(), l2.cbegin()+1);
erase_iter_iter_db3.pass.cpp 10 // <vector>
18 #include <vector>
29 std::vector<int> l1(a1, a1+3);
30 std::vector<int> l2(a1, a1+3);
31 std::vector<int>::iterator i = l1.erase(l2.cbegin(), l2.cbegin()+1);
37 std::vector<int, min_allocator<int>> l1(a1, a1+3);
38 std::vector<int, min_allocator<int>> l2(a1, a1+3);
39 std::vector<int, min_allocator<int>>::iterator i = l1.erase(l2.cbegin(), l2.cbegin()+1);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
vector.hpp 13 // $Id: vector.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
18 # include <boost/mpl/limits/vector.hpp>
28 BOOST_PP_CAT(vector, BOOST_MPL_LIMIT_VECTOR_SIZE).hpp \
32 BOOST_PP_CAT(vector, BOOST_MPL_LIMIT_VECTOR_SIZE)##.hpp \
36 # include BOOST_PP_STRINGIZE(boost/mpl/vector/AUX778076_VECTOR_HEADER)
45 # define BOOST_MPL_PREPROCESSED_HEADER vector.hpp
50 # include <boost/mpl/limits/vector.hpp>
52 # define AUX778076_SEQUENCE_NAME vector
  /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/opencv3/modules/stitching/include/opencv2/stitching/detail/
motion_estimators.hpp 77 bool operator ()(const std::vector<ImageFeatures> &features,
78 const std::vector<MatchesInfo> &pairwise_matches,
79 std::vector<CameraParams> &cameras)
91 virtual bool estimate(const std::vector<ImageFeatures> &features,
92 const std::vector<MatchesInfo> &pairwise_matches,
93 std::vector<CameraParams> &cameras) = 0;
105 virtual bool estimate(const std::vector<ImageFeatures> &features,
106 const std::vector<MatchesInfo> &pairwise_matches,
107 std::vector<CameraParams> &cameras);
146 virtual bool estimate(const std::vector<ImageFeatures> &features
    [all...]

Completed in 3527 milliseconds

<<11121314151617181920>>