HomeSort by relevance Sort by last modified time
    Searched refs:vector (Results 226 - 250 of 10854) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/base/strings/
string_split.h 10 #include <vector>
17 // Splits |str| into a vector of strings delimited by |s|, placing the results
25 std::vector<string16>* r);
32 std::vector<std::string>* r);
37 std::vector<std::string>* values);
39 typedef std::vector<std::pair<std::string, std::string> > StringPairs;;
50 std::vector<string16>* r);
53 std::vector<std::string>* r);
59 std::vector<string16>* r);
66 std::vector<std::string>* r)
    [all...]
  /external/chromium_org/crypto/
ec_private_key.h 9 #include <vector>
56 const std::vector<uint8>& encrypted_private_key_info,
57 const std::vector<uint8>& subject_public_key_info);
68 const std::vector<uint8>& encrypted_private_key_info,
69 const std::vector<uint8>& subject_public_key_info);
101 std::vector<uint8>* output);
104 bool ExportPublicKey(std::vector<uint8>* output);
108 bool ExportValue(std::vector<uint8>* output);
109 bool ExportECParams(std::vector<uint8>* output);
125 const std::vector<uint8>& encrypted_private_key_info
    [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>
45 test0<std::vector<int> >();
46 test0<std::vector<NotConstructible> >();
47 test1<std::vector<int, test_allocator<int> > >(test_allocator<int>(3));
48 test1<std::vector<NotConstructible, test_allocator<NotConstructible> > >
52 std::vector<int, stack_allocator<int, 10> > v;
57 test0<std::vector<int, min_allocator<int>> >();
58 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...]
move.pass.cpp 10 // <vector>
12 // vector(vector&& c);
14 #include <vector>
24 std::vector<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5));
25 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
31 std::vector<MoveOnly, test_allocator<MoveOnly> > l2 = std::move(l);
37 std::vector<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5));
38 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5));
44 std::vector<MoveOnly, other_allocator<MoveOnly> > l2 = std::move(l)
    [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...]
  /external/chromium/chrome/browser/autofill/
name_field.h 9 #include <vector>
17 static NameField* Parse(std::vector<AutofillField*>::const_iterator* iter,
33 std::vector<AutofillField*>::const_iterator* iter);
46 std::vector<AutofillField*>::const_iterator* iter);
48 std::vector<AutofillField*>::const_iterator* iter);
50 std::vector<AutofillField*>::const_iterator* iter);
52 std::vector<AutofillField*>::const_iterator* iter, bool is_ecml);
  /external/chromium/chrome/browser/history/
query_parser.h 12 #include <vector>
50 virtual bool HasMatchIn(const std::vector<QueryWord>& words,
54 virtual void AppendWords(std::vector<string16>* words) const = 0;
81 std::vector<QueryNode*>* nodes);
88 std::vector<string16>* words);
94 const std::vector<QueryNode*>& nodes,
105 std::vector<QueryWord>* words);
  /external/chromium/chrome/browser/safe_browsing/
prefix_set.h 53 #include <vector>
63 explicit PrefixSet(const std::vector<SBPrefix>& sorted_prefixes);
73 // Regenerate the vector of prefixes passed to the constructor into
75 void GetPrefixes(std::vector<SBPrefix>* prefixes) const;
105 PrefixSet(std::vector<std::pair<SBPrefix,size_t> > *index,
106 std::vector<uint16> *deltas);
112 std::vector<std::pair<SBPrefix,size_t> > index_;
117 std::vector<uint16> deltas_;
  /external/chromium_org/chrome/browser/safe_browsing/
prefix_set.h 52 #include <vector>
64 explicit PrefixSet(const std::vector<SBPrefix>& sorted_prefixes);
74 // Regenerate the vector of prefixes passed to the constructor into
76 void GetPrefixes(std::vector<SBPrefix>* prefixes) const;
86 PrefixSet(std::vector<std::pair<SBPrefix,size_t> > *index,
87 std::vector<uint16> *deltas);
93 std::vector<std::pair<SBPrefix,size_t> > index_;
98 std::vector<uint16> deltas_;
  /external/chromium_org/net/quic/test_tools/
simple_quic_framer.h 8 #include <vector>
39 const std::vector<QuicAckFrame>& ack_frames() const;
40 const std::vector<QuicConnectionCloseFrame>& connection_close_frames() const;
41 const std::vector<QuicCongestionFeedbackFrame>& feedback_frames() const;
42 const std::vector<QuicGoAwayFrame>& goaway_frames() const;
43 const std::vector<QuicRstStreamFrame>& rst_stream_frames() const;
44 const std::vector<QuicStreamFrame>& stream_frames() const;
  /external/chromium_org/ppapi/thunk/
extensions_common_api.h 9 #include <vector>
25 const std::vector<PP_Var>& input_args,
26 const std::vector<PP_Var*>& output_args,
29 const std::vector<PP_Var>& args) = 0;
31 const std::vector<PP_Var>& input_args,
32 const std::vector<PP_Var*>& output_args,
35 const std::vector<PP_Var>& args) = 0;
  /external/chromium_org/third_party/ots/src/
cmap.h 8 #include <vector>
34 std::vector<OpenTypeCMAPSubtableVSRange> ranges;
35 std::vector<OpenTypeCMAPSubtableVSMapping> mappings;
55 std::vector<OpenTypeCMAPSubtableVSRecord> subtable_0_5_14;
65 std::vector<OpenTypeCMAPSubtableRange> subtable_3_10_12;
67 std::vector<OpenTypeCMAPSubtableRange> subtable_3_10_13;
69 std::vector<uint8_t> subtable_1_0_0;
  /external/chromium_org/tools/gn/
ninja_build_writer.h 9 #include <vector>
25 const std::vector<const Settings*>& all_settings,
26 const std::vector<const Target*>& default_toolchain_targets);
30 const std::vector<const Settings*>& all_settings,
31 const std::vector<const Target*>& default_toolchain_targets,
42 std::vector<const Settings*> all_settings_;
43 std::vector<const Target*> default_toolchain_targets_;
  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 19 #include <vector>
44 std::vector<MVT::SimpleValueType> RetVTs;
47 std::vector<Record*> RetTypeDefs;
53 std::vector<MVT::SimpleValueType> ParamVTs;
56 std::vector<Record*> ParamTypeDefs;
84 std::vector<std::pair<unsigned, ArgAttribute> > ArgumentAttributes;
91 std::vector<CodeGenIntrinsic> LoadIntrinsics(const RecordKeeper &RC,
  /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.pass.cpp 10 // <vector>
14 #include <vector>
23 std::vector<int> l1(a1, a1+3);
24 std::vector<int>::iterator i = l1.erase(l1.cbegin(), l1.cbegin());
30 std::vector<int> l1(a1, a1+3);
31 std::vector<int>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin()));
35 assert(l1 == std::vector<int>(a1+1, a1+3));
38 std::vector<int> l1(a1, a1+3);
39 std::vector<int>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 2));
43 assert(l1 == std::vector<int>(a1+2, a1+3))
    [all...]
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
  /art/compiler/
compiled_method.h 21 #include <vector>
39 const std::vector<uint8_t>& code);
49 const std::vector<uint8_t>& GetCode() const {
53 void SetCode(const std::vector<uint8_t>& code);
77 const std::vector<uint32_t>& GetOatdataOffsetsToCompliledCodeOffset() const;
87 std::vector<uint8_t>* code_;
96 std::vector<uint32_t> oatdata_offsets_to_compiled_code_offset_;
104 const std::vector<uint8_t>& code,
108 const std::vector<uint8_t>& mapping_table,
109 const std::vector<uint8_t>& vmap_table
    [all...]
  /external/chromium_org/content/common/
plugin_list.h 11 #include <vector>
68 void GetPluginDirectories(std::vector<base::FilePath>* plugin_dirs);
83 void GetInternalPlugins(std::vector<WebPluginInfo>* plugins);
93 // vector.
99 std::vector<WebPluginMimeType>* parsed_mime_types);
102 void GetPlugins(std::vector<WebPluginInfo>* plugins,
107 bool GetPluginsNoRefresh(std::vector<WebPluginInfo>* plugins);
126 std::vector<WebPluginInfo>* info,
127 std::vector<std::string>* actual_mime_types);
132 std::vector<WebPluginInfo>* plugins
    [all...]
  /cts/apps/CtsVerifier/jni/cameraanalyzer/
com_android_cts_verifier_camera_analyzer_MeteringTest.cpp 22 #include <vector>
56 std::vector<std::vector< Vec2f > >* checkerCenter =
57 (std::vector<std::vector< Vec2f > >*) (long) checkercenterAddress;
58 std::vector<std::vector< float > >* checkerRadius =
59 (std::vector<std::vector< float > >*) (long) checkerradiusAddress;
82 const std::vector<bool>* nativeComparisonResults
    [all...]

Completed in 937 milliseconds

1 2 3 4 5 6 7 8 91011>>