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

1 2 3 45 6 7 8 91011>>

  /system/core/include/utils/
Vector.h 37 * The main templated vector class ensuring type safety
43 class Vector : private VectorImpl
52 Vector();
53 Vector(const Vector<TYPE>& rhs);
54 explicit Vector(const SortedVector<TYPE>& rhs);
55 virtual ~Vector();
58 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
59 Vector<TYPE>& operator = (const Vector<TYPE>& rhs);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
VectorTest.cpp 32 #include "wtf/Vector.h"
39 Vector<int> intVector;
47 Vector<int> intVector;
71 Vector<int> intVector;
77 Vector<int>::iterator it = intVector.begin();
78 Vector<int>::iterator end = intVector.end();
95 Vector<int> intVector;
101 Vector<int>::reverse_iterator it = intVector.rbegin();
102 Vector<int>::reverse_iterator end = intVector.rend();
132 typedef WTF::Vector<OwnPtr<DestructCounter> > OwnPtrVector
137 OwnPtrVector vector; local
    [all...]
  /external/libcxx/test/containers/sequences/vector/vector.cons/
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/vector.cons/
move.pass.cpp 10 // <vector>
12 // vector(vector&& c);
14 #include <vector>
25 std::vector<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5));
26 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
36 std::vector<MoveOnly, test_allocator<MoveOnly> > l2 = std::move(l);
43 std::vector<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5));
44 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5));
54 std::vector<MoveOnly, other_allocator<MoveOnly> > l2 = std::move(l)
    [all...]
  /external/chromium_org/chrome/renderer/media/
chrome_key_systems.h 8 #include <vector>
12 void AddChromeKeySystems(std::vector<content::KeySystemInfo>* key_systems_info);
  /external/chromium_org/remoting/host/linux/
unicode_to_keysym.h 8 #include <vector>
14 void GetKeySymsForUnicode(uint32_t code_point, std::vector<uint32_t>* keysyms);
  /external/chromium_org/sync/syncable/
blob.h 8 #include <vector>
15 typedef std::vector<uint8> Blob;
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
MacroExpander.h 12 #include <vector>
43 std::vector<Token> *replacements);
45 typedef std::vector<Token> MacroArg;
48 std::vector<MacroArg> *args);
50 const std::vector<MacroArg> &args,
51 std::vector<Token> *replacements);
57 std::vector<Token> replacements;
84 std::vector<MacroContext *> mContextStack;
  /external/chromium_org/third_party/ots/src/
loca.h 8 #include <vector>
15 std::vector<uint32_t> offsets;
ltsh.h 8 #include <vector>
16 std::vector<uint8_t> ypels;
  /external/chromium_org/tools/clang/plugins/tests/
nested_class_inline_ctor.h 9 #include <vector>
18 std::vector<std::string> a;
  /external/chromium_org/tools/gyp/test/mac/framework/TestFramework/
ObjCVectorInternal.h 5 #include <vector>
8 std::vector<id> v;
  /external/clang/test/CodeGen/
debug-info-vector.c 6 // Test that we get an array type that's also a vector out of debug.
7 // CHECK: [ DW_TAG_array_type ] [line 0, size 128, align 128, offset 0] [vector] [from int]
  /external/clang/test/Index/
targeted-top.h 17 } Vector;
19 static inline int vector_get_x(Vector v) {
  /external/clang/test/Sema/
big-endian-neon-initializers.c 6 int32x4_t x = {1, 2, 3, 4}; // expected-warning{{vector initializers are not compatible with NEON intrinsics}} expected-note{{consider using vld1q_s32() to initialize a vector from memory, or vcombine_s32(vcreate_s32(), vcreate_s32()) to initialize from integer constants}}
7 int16x4_t y = {1, 2, 3, 4}; // expected-warning{{vector initializers are not compatible with NEON intrinsics}} expected-note{{consider using vld1_s16() to initialize a vector from memory, or vcreate_s16() to initialize from an integer constant}}
8 int64x2_t z = {1, 2}; // expected-warning{{vector initializers are not compatible with NEON intrinsics}} expected-note{{consider using vld1q_s64() to initialize a vector from memory, or vcombine_s64(vcreate_s64(), vcreate_s64()) to initialize from integer constants}}
9 float32x2_t b = {1, 2}; // expected-warning{{vector initializers are not compatible with NEON intrinsics}} expected-note{{consider using vld1_f32() to initialize a vector from memory, or vcreate_f32() to initialize from an integer constant}}
  /external/eigen/doc/snippets/
Jacobi_makeGivens.cpp 4 cout << "Here is the vector v:" << endl << v << endl;
6 cout << "Here is the vector J' * v:" << endl << v << endl
MatrixBase_end_int.cpp 2 cout << "Here is the vector v:" << endl << v << endl;
5 cout << "Now the vector v is:" << endl << v << endl;
MatrixBase_segment_int_int.cpp 2 cout << "Here is the vector v:" << endl << v << endl;
5 cout << "Now the vector v is:" << endl << v << endl;
MatrixBase_start_int.cpp 2 cout << "Here is the vector v:" << endl << v << endl;
5 cout << "Now the vector v is:" << endl << v << endl;
MatrixBase_template_int_end.cpp 2 cout << "Here is the vector v:" << endl << v << endl;
5 cout << "Now the vector v is:" << endl << v << endl;
MatrixBase_template_int_segment.cpp 2 cout << "Here is the vector v:" << endl << v << endl;
5 cout << "Now the vector v is:" << endl << v << endl;
MatrixBase_template_int_start.cpp 2 cout << "Here is the vector v:" << endl << v << endl;
5 cout << "Now the vector v is:" << endl << v << endl;
  /external/javassist/sample/vector/
Sample2.java 1 package sample.vector;
3 public class Sample2 extends java.util.Vector {
  /external/libcxx/test/containers/sequences/vector/vector.special/
Android.mk 17 test_makefile := external/libcxx/test/containers/sequences/vector/vector.special/Android.mk
19 test_name := containers/sequences/vector/vector.special/swap
23 test_name := containers/sequences/vector/vector.special/swap_noexcept
27 test_name := containers/sequences/vector/vector.special/db_swap_1
  /external/lldb/test/functionalities/data-formatter/data-formatter-disabling/
main.cpp 1 #include <vector>
8 std::vector<int> numbers;

Completed in 2849 milliseconds

1 2 3 45 6 7 8 91011>>