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

<<11121314151617181920>>

  /cts/apps/CtsVerifier/jni/cameraanalyzer/
com_android_cts_verifier_camera_analyzer_AutoLockTest.cpp 22 #include <vector>
55 std::vector<std::vector< Vec2f > >* checkerCenter =
56 (std::vector<std::vector< Vec2f > >*) (long) checkercenterAddress;
57 std::vector<std::vector< float > >* checkerRadius =
58 (std::vector<std::vector< float > >*) (long) checkerradiusAddress;
83 const std::vector<bool>* nativeComparisonResults
    [all...]
com_android_cts_verifier_camera_analyzer_ExposureCompensationTest.cpp 20 #include <vector>
61 std::vector<std::vector< Vec2f > >* checkerCenter =
62 (std::vector<std::vector< Vec2f > >*) (long) checkerCenterAddress;
63 std::vector<std::vector< float > >* checkerRadius =
64 (std::vector<std::vector< float > >*) (long) checkerRadiusAddress;
66 const std::vector<Vec3f>* checkerValue
    [all...]
  /external/chromium/chrome/browser/
autocomplete_history_manager.h 9 #include <vector>
43 const std::vector<string16>& autofill_values,
44 const std::vector<string16>& autofill_labels,
45 const std::vector<string16>& autofill_icons,
46 const std::vector<int>& autofill_unique_ids);
58 void SendSuggestions(const std::vector<string16>* suggestions);
74 std::vector<string16> autofill_values_;
75 std::vector<string16> autofill_labels_;
76 std::vector<string16> autofill_icons_;
77 std::vector<int> autofill_unique_ids_
    [all...]
  /external/chromium_org/chrome/browser/history/
query_parser.h 8 #include <vector>
46 virtual bool HasMatchIn(const std::vector<QueryWord>& words,
50 virtual bool HasMatchIn(const std::vector<QueryWord>& words) const = 0;
53 virtual void AppendWords(std::vector<string16>* words) const = 0;
79 void ParseQueryWords(const string16& query, std::vector<string16>* words);
84 void ParseQueryNodes(const string16& query, std::vector<QueryNode*>* nodes);
90 const std::vector<QueryNode*>& nodes,
95 bool DoesQueryMatch(const std::vector<QueryWord>& words,
96 const std::vector<QueryNode*>& nodes);
99 void ExtractQueryWords(const string16& text, std::vector<QueryWord>* words)
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autocomplete_history_manager.h 8 #include <vector>
47 const std::vector<base::string16>& autofill_values,
48 const std::vector<base::string16>& autofill_labels,
49 const std::vector<base::string16>& autofill_icons,
50 const std::vector<int>& autofill_unique_ids);
64 void SendSuggestions(const std::vector<base::string16>* suggestions);
83 std::vector<base::string16> autofill_values_;
84 std::vector<base::string16> autofill_labels_;
85 std::vector<base::string16> autofill_icons_;
86 std::vector<int> autofill_unique_ids_
    [all...]
  /external/chromium_org/ppapi/proxy/
extensions_common_resource.h 35 const std::vector<PP_Var>& input_args,
36 const std::vector<PP_Var*>& output_args,
39 const std::vector<PP_Var>& args) OVERRIDE;
41 const std::vector<PP_Var>& input_args,
42 const std::vector<PP_Var*>& output_args,
45 const std::vector<PP_Var>& args) OVERRIDE;
50 const std::vector<PP_Var>& input_args,
51 const std::vector<PP_Var*>& output_args,
55 const std::vector<PP_Var>& args);
57 void OnPluginMsgCallReply(const std::vector<PP_Var*>& output_args
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
move.pass.cpp 10 // <vector>
12 // vector(vector&& c);
14 #include <vector>
23 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5));
24 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
30 std::vector<bool, test_allocator<bool> > l2 = std::move(l);
36 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5));
37 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
43 std::vector<bool, other_allocator<bool> > l2 = std::move(l)
    [all...]
assign_move.pass.cpp 10 // <vector>
12 // vector& operator=(vector&& c);
14 #include <vector>
23 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5));
24 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
30 std::vector<bool, test_allocator<bool> > l2(test_allocator<bool>(5));
37 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5));
38 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
44 std::vector<bool, test_allocator<bool> > l2(test_allocator<bool>(6))
    [all...]
move_alloc.pass.cpp 10 // <vector>
12 // vector(vector&& c, const allocator_type& a);
14 #include <vector>
23 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5));
24 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
30 std::vector<bool, test_allocator<bool> > l2(std::move(l), test_allocator<bool>(6));
36 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5));
37 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
43 std::vector<bool, test_allocator<bool> > l2(std::move(l), test_allocator<bool>(5))
    [all...]
swap.pass.cpp 10 // <vector>
11 // vector<bool>
13 // void swap(vector& x);
15 #include <vector>
23 std::vector<bool> v1(100);
24 std::vector<bool> v2(200);
33 std::vector<bool, A> v1(100, true, A(1));
34 std::vector<bool, A> v2(200, false, A(2));
45 std::vector<bool, A> v1(100, true, A(1));
46 std::vector<bool, A> v2(200, false, A(2))
    [all...]
  /external/chromium/base/
string_split.h 11 #include <vector>
18 // Splits |str| into a vector of strings delimited by |s|. Append the results
28 std::vector<std::wstring>* r);
32 std::vector<string16>* r);
39 std::vector<std::string>* r);
44 std::string* key, std::vector<std::string>* values);
50 std::vector<std::pair<std::string, std::string> >* kv_pairs);
55 std::vector<string16>* r);
58 std::vector<std::string>* r);
64 std::vector<string16>* r)
    [all...]
  /external/chromium_org/ppapi/cpp/
array_output.h 8 #include <vector>
29 const std::vector<PP_Resource>& input,
30 std::vector<ResourceObjectType>* output) {
70 // structure as writing to a given vector object.
78 // Example that allows the browser to write into a given vector:
79 // void DoFoo(std::vector<int>* results) {
86 ArrayOutputAdapter(std::vector<T>* output) : output_(output) {}
91 void set_output(std::vector<T>* output) { output_ = output; }
105 std::vector<T>* output_;
109 // structure as writing resources to a given vector object
    [all...]
  /external/chromium_org/remoting/protocol/
session_config.h 9 #include <vector>
50 // std::vector<ChannelConfig>.
105 const std::vector<ChannelConfig>& control_configs() const {
109 std::vector<ChannelConfig>* mutable_control_configs() {
113 const std::vector<ChannelConfig>& event_configs() const {
117 std::vector<ChannelConfig>* mutable_event_configs() {
121 const std::vector<ChannelConfig>& video_configs() const {
125 std::vector<ChannelConfig>* mutable_video_configs() {
129 const std::vector<ChannelConfig>& audio_configs() const {
133 std::vector<ChannelConfig>* mutable_audio_configs()
    [all...]
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_clock_test.cc 38 ThreadClock vector; local
40 CHECK_EQ(vector.size(), 0);
42 vector.acquire(&chunked);
43 CHECK_EQ(vector.size(), 0);
45 vector.release(&chunked);
46 CHECK_EQ(vector.size(), 0);
48 vector.acq_rel(&chunked);
49 CHECK_EQ(vector.size(), 0);
73 ThreadClock vector; local
74 vector.tick(i)
80 ThreadClock vector; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
bilin_scaler.c 60 static const vector float vec_255 = { 255.0f, 255.0f, 255.0f, 255.0f };
61 static const vector float vec_0_1 = { 0.1f, 0.1f, 0.1f, 0.1f };
63 void bilinear_scale_line_w8(unsigned char* src, unsigned char* dst_, unsigned int dst_width, vector float vf_x_scale, vector float vf_NSweight, unsigned int src_linestride);
64 void bilinear_scale_line_w16(unsigned char* src, unsigned char* dst_, unsigned int dst_width, vector float vf_x_scale, vector float vf_NSweight, unsigned int src_linestride);
107 * converts a float vector to an unsinged int vector using saturated
110 * @param vec_s float vector for conversion
111 * @returns converted unsigned int vector
    [all...]
  /build/tools/atree/
files.h 6 #include <vector>
42 vector<FileRecord>* files,
43 vector<string>* excludes);
44 int locate(FileRecord* rec, const vector<string>& search);
47 int list_dir(const FileRecord& rec, const vector<string>& excludes,
48 vector<FileRecord>* files);
  /cts/apps/CtsVerifier/include/colorchecker/
testingimage.h 19 #include <vector>
53 const std::vector<Vec3f>* getColorChecker(
55 const std::vector<std::vector< Vec2f > >* centerAddress,
56 const std::vector<std::vector< float > >* radiusAddress) const;
  /external/ceres-solver/internal/ceres/
block_structure.h 41 #include <vector>
76 vector<Cell> cells;
83 vector<Block> cols;
84 vector<CompressedRow> rows;
88 vector<Block> rows;
89 vector<CompressedColumn> cols;
  /external/chromium/base/win/
i18n_unittest.cc 18 std::vector<std::wstring> languages;
20 EXPECT_NE(static_cast<std::vector<std::wstring>::size_type>(0),
22 for (std::vector<std::wstring>::const_iterator scan = languages.begin(),
30 std::vector<std::wstring> languages;
32 EXPECT_NE(static_cast<std::vector<std::wstring>::size_type>(0),
34 for (std::vector<std::wstring>::const_iterator scan = languages.begin(),
  /external/chromium/chrome/browser/chromeos/login/
mock_owner_key_utils.h 9 #include <vector>
26 std::vector<uint8>* output));
28 const std::vector<uint8> signature,
29 const std::vector<uint8> public_key));
31 std::vector<uint8>* OUT_signature,
34 crypto::RSAPrivateKey*(const std::vector<uint8>& key));
owner_key_utils.h 9 #include <vector>
50 std::vector<uint8>* output) = 0;
56 const std::vector<uint8> signature,
57 const std::vector<uint8> public_key) = 0;
62 std::vector<uint8>* OUT_signature,
69 const std::vector<uint8>& key) = 0;
  /external/chromium/chrome/browser/safe_browsing/
chunk_range.h 19 #include <vector>
46 void RangesToChunks(const std::vector<ChunkRange>& ranges,
47 std::vector<int>* chunks);
53 std::vector<ChunkRange>* ranges);
57 void ChunksToRangeString(const std::vector<int>& chunks, std::string* result);
59 // Tests if a chunk number is contained a sorted vector of ChunkRanges.
60 bool IsChunkInRange(int chunk_number, const std::vector<ChunkRange>& ranges);
  /external/chromium_org/base/win/
i18n_unittest.cc 18 std::vector<std::wstring> languages;
20 EXPECT_NE(static_cast<std::vector<std::wstring>::size_type>(0),
22 for (std::vector<std::wstring>::const_iterator scan = languages.begin(),
30 std::vector<std::wstring> languages;
32 EXPECT_NE(static_cast<std::vector<std::wstring>::size_type>(0),
34 for (std::vector<std::wstring>::const_iterator scan = languages.begin(),
  /external/chromium_org/chrome/browser/safe_browsing/
chunk_range.h 18 #include <vector>
45 void RangesToChunks(const std::vector<ChunkRange>& ranges,
46 std::vector<int>* chunks);
52 std::vector<ChunkRange>* ranges);
56 void ChunksToRangeString(const std::vector<int>& chunks, std::string* result);
58 // Tests if a chunk number is contained a sorted vector of ChunkRanges.
59 bool IsChunkInRange(int chunk_number, const std::vector<ChunkRange>& ranges);
  /external/chromium_org/net/android/
keystore.h 11 #include <vector>
44 std::vector<uint8>* modulus);
54 std::vector<uint8>* q);
64 std::vector<uint8>* order);
73 std::vector<uint8>* encoded);
87 std::vector<uint8>* signature);

Completed in 4113 milliseconds

<<11121314151617181920>>