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

<<21222324252627282930>>

  /external/chromium_org/ui/display/types/chromeos/
touchscreen_device_manager.h 8 #include <vector>
22 virtual std::vector<TouchscreenDevice> GetDevices() = 0;
  /external/chromium_org/ui/snapshot/test/
snapshot_desktop.h 8 #include <vector>
21 std::vector<unsigned char>* png_representation);
  /external/chromium_org/ui/views/focus/
focus_manager_test.h 33 virtual void GetAccessiblePanes(std::vector<View*>* panes) OVERRIDE;
44 void SetAccessiblePanes(const std::vector<View*>& panes);
50 std::vector<View*> accessible_panes_;
63 const std::vector<ViewPair>& focus_changes() const { return focus_changes_; }
73 // A vector of which views lost/gained focus.
74 std::vector<ViewPair> focus_changes_;
87 const std::vector<NativeViewPair>& focus_changes() const {
99 std::vector<NativeViewPair> focus_changes_;
  /external/chromium_org/win8/metro_driver/ime/
input_scope.h 9 #include <vector>
18 CreteInputScope(const std::vector<InputScope>& input_scopes);
  /external/clang/test/Modules/Inputs/submodules/
module.map 2 module vector { header "vector.h" }
  /external/clang/test/Parser/
opencl-astype.cl 14 double4 d4 = __builtin_astype(f4, double4); // expected-error{{invalid reinterpretation: sizes of 'double4' (vector of 4 'double' values) and 'float4' (vector of 4 'float' values) must match}}
  /external/libcxx/test/containers/sequences/vector/vector.cons/
construct_size.pass.cpp 10 // <vector>
12 // explicit vector(size_type n);
14 #include <vector>
61 test<std::vector<int> >(50);
62 test<std::vector<DefaultOnly> >(500);
65 test<std::vector<int, min_allocator<int>> >(50);
66 test<std::vector<DefaultOnly, min_allocator<DefaultOnly>> >(500);
67 test2<std::vector<DefaultOnly, test_allocator<DefaultOnly>> >( 100, test_allocator<DefaultOnly>(23));
  /external/libcxx/test/containers/sequences/vector/vector.modifiers/
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/lldb/include/lldb/Symbol/
Symtab.h 14 #include <vector>
27 typedef std::vector<uint32_t> IndexCollection;
50 void Dump(Stream *s, Target *target, std::vector<uint32_t>& indexes) const;
60 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
61 uint32_t AppendSymbolIndexesWithTypeAndFlagsValue (lldb::SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
62 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
63 uint32_t AppendSymbolIndexesWithName (const ConstString& symbol_name, std::vector<uint32_t>& matches);
64 uint32_t AppendSymbolIndexesWithName (const ConstString& symbol_name, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches);
65 uint32_t AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, std::vector<uint32_t>& matches);
66 uint32_t AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches)
    [all...]
  /external/llvm/include/llvm/ADT/
SmallSet.h 35 SmallVector<T, N> Vector;
44 return Vector.empty() && Set.empty();
48 return isSmall() ? Vector.size() : Set.size();
55 return vfind(V) == Vector.end() ? 0 : 1;
68 if (I != Vector.end()) // Don't reinsert if it already exists.
70 if (Vector.size() < N) {
71 Vector.push_back(V);
75 // Otherwise, grow from vector to set.
76 while (!Vector.empty()) {
77 Set.insert(Vector.back())
    [all...]
  /external/llvm/test/CodeGen/ARM/
2012-09-25-InlineAsmScalarToVectorConv.ll 4 ; CHECK: non-trivial scalar-to-vector conversion, possible invalid constraint for vector type
2012-09-25-InlineAsmScalarToVectorConv2.ll 4 ; CHECK: scalar-to-vector conversion failed, possible invalid constraint for vector type
  /external/llvm/test/Transforms/LoopUnroll/
pr14167.ll 12 br i1 false, label %middle.block, label %vector.ph
14 vector.ph: ; preds = %for.cond2.preheader
15 br label %vector.body
17 vector.body: ; preds = %vector.body, %vector.ph
18 br i1 undef, label %middle.block.loopexit, label %vector.body
20 middle.block.loopexit: ; preds = %vector.body
  /external/llvm/test/Transforms/LoopVectorize/X86/
unroll-small-loops.ll 1 ; RUN: opt < %s -loop-vectorize -mtriple=x86_64-apple-macosx10.8.0 -mcpu=corei7-avx -force-vector-width=4 -force-vector-unroll=0 -dce -S \
2 ; RUN: | FileCheck %s --check-prefix=CHECK-VECTOR
3 ; RUN: opt < %s -loop-vectorize -mtriple=x86_64-apple-macosx10.8.0 -mcpu=corei7-avx -force-vector-width=1 -force-vector-unroll=0 -dce -S \
11 ; CHECK-VECTOR-LABEL: @foo(
12 ; CHECK-VECTOR: load <4 x i32>
13 ; CHECK-VECTOR-NOT: load <4 x i32>
14 ; CHECK-VECTOR: store <4 x i32>
15 ; CHECK-VECTOR-NOT: store <4 x i32
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
module.hpp 48 const clover::compat::vector<char> &data) :
55 clover::compat::vector<char> data;
79 symbol(const clover::compat::vector<char> &name, resource_id section,
80 size_t offset, const clover::compat::vector<argument> &args) :
84 clover::compat::vector<char> name;
87 clover::compat::vector<argument> args;
101 clover::compat::vector<symbol> syms;
102 clover::compat::vector<section> secs;
  /external/regex-re2/re2/
filtered_re2.cc 43 void FilteredRE2::Compile(vector<string>* atoms) {
66 const vector<int>& atoms) const {
71 vector<int> regexps;
81 const vector<int>& atoms,
82 vector<int>* matching_regexps) const {
84 vector<int> regexps;
92 void FilteredRE2::RegexpsGivenStrings(const vector<int>& matched_atoms,
93 vector<int>* passed_regexps) {
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
connect.h 44 SccVisitor(vector<StateId> *scc, vector<bool> *access,
45 vector<bool> *coaccess, uint64 *props)
59 coaccess_ = new vector<bool>;
68 dfnumber_ = new vector<StateId>;
69 lowlink_ = new vector<StateId>;
70 onstack_ = new vector<bool>;
71 scc_stack_ = new vector<StateId>;
178 vector<StateId> *scc_; // State's scc number
179 vector<bool> *access_; // State's accessibilit
    [all...]
  /external/stlport/test/unit/
advance_test.cpp 1 #include <vector>
30 typedef vector <int> IntVector;
  /frameworks/av/drm/mediadrm/plugins/clearkey/
DrmPlugin.cpp 32 status_t DrmPlugin::openSession(Vector<uint8_t>& sessionId) {
38 status_t DrmPlugin::closeSession(const Vector<uint8_t>& sessionId) {
45 const Vector<uint8_t>& scope,
46 const Vector<uint8_t>& initData,
50 Vector<uint8_t>& request,
63 const Vector<uint8_t>& scope,
64 const Vector<uint8_t>& response,
65 Vector<uint8_t>& keySetId) {
  /frameworks/base/tools/layoutlib/bridge/resources/bars/v21/xhdpi/
stat_sys_wifi_signal_4_fully.xml 0 <vector xmlns:android="http://schemas.android.com/apk/res/android"
9 </vector>
  /frameworks/rs/
rsScriptGroup.h 35 Vector<ObjectBaseRef<ScriptKernelID> > mKernels;
52 Vector<const ScriptKernelID *> mKernels;
53 Vector<Link *> mOutputs;
54 Vector<Link *> mInputs;
68 Vector<Link *> mLinks;
69 Vector<Node *> mNodes;
70 Vector<IO *> mInputs;
71 Vector<IO *> mOutputs;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
construct_size.pass.cpp 10 // <vector>
12 // explicit vector(size_type n);
14 #include <vector>
64 test<std::vector<int> >(50);
65 test<std::vector<DefaultOnly> >(500);
68 test<std::vector<int, min_allocator<int>> >(50);
69 test<std::vector<DefaultOnly, min_allocator<DefaultOnly>> >(500);
70 test2<std::vector<DefaultOnly, test_allocator<DefaultOnly>> >( 100, test_allocator<DefaultOnly>(23));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/
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);

Completed in 1835 milliseconds

<<21222324252627282930>>