HomeSort by relevance Sort by last modified time
    Searched defs:vector (Results 1 - 25 of 311) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/submodules/
vector.h 1 template<typename T> class vector { }; class
  /external/chromium_org/third_party/qcms/src/
matrix.h 27 struct vector { struct
31 struct vector matrix_eval(struct matrix mat, struct vector v);
  /external/clang/test/Modules/Inputs/
module_private_left.h 16 __module_private__ class vector;
19 __module_private__ class vector { class
22 vector<float> vec_float;
  /external/clang/test/SemaCXX/
cxx0x-initializer-stdinitializerlist-system-header.cpp 10 class vector { class in namespace:std::__debug
12 explicit vector() {} // expected-warning{{should not be explicit}} function in class:std::__debug::vector
21 struct { int a, b; std::__debug::vector<int> c; } e[] = { {1, 1} }; // expected-note{{used in initialization here}}
for-range-unused.cpp 6 struct Vector {
19 Vector<int> vector; local
20 vector.doIt(); // expected-note {{here}}
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
vector.hpp 9 // Preprocessed version of "boost/mpl/vector.hpp" header
22 struct vector;
27 struct vector< struct in namespace:boost::mpl
39 struct vector< struct in namespace:boost::mpl
51 struct vector< struct in namespace:boost::mpl
63 struct vector< struct in namespace:boost::mpl
75 struct vector< struct in namespace:boost::mpl
87 struct vector< struct in namespace:boost::mpl
100 struct vector< struct in namespace:boost::mpl
113 struct vector< struct in namespace:boost::mpl
126 struct vector< struct in namespace:boost::mpl
139 struct vector< struct in namespace:boost::mpl
152 struct vector< struct in namespace:boost::mpl
166 struct vector< struct in namespace:boost::mpl
180 struct vector< struct in namespace:boost::mpl
194 struct vector< struct in namespace:boost::mpl
208 struct vector< struct in namespace:boost::mpl
222 struct vector< struct in namespace:boost::mpl
239 struct vector< struct in namespace:boost::mpl
257 struct vector< struct in namespace:boost::mpl
275 struct vector< struct in namespace:boost::mpl
293 struct vector< struct in namespace:boost::mpl
313 struct vector struct in namespace:boost::mpl
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.alias/
p2.cpp 15 template<class T, class A> struct vector { /* ... */ }; struct in namespace:StdExample
19 template<class T> using Vec = vector<T, Alloc<T>>;
27 void process(vector<T, Alloc<T>>& w) // expected-error {{redefinition of 'process'}}
38 g(v); // OK: TT = vector
42 // v's type is same as vector<int, Alloc<int>>.
43 using VTest = vector<int, Alloc<int>>;
  /external/clang/test/CodeCompletion/
templates.cpp 9 class vector : Alloc { class in namespace:std
14 template<typename Alloc> class vector<bool, Alloc>;
18 std::vector<int> v;
22 // CHECK-CC1-NEXT: vector<<#typename T#>{#, <#typename Alloc#>#}>
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/test/util/
stl_util_unittest.cc 11 #include <vector>
30 std::vector<int> vector; local
31 vector.push_back(1);
32 vector.push_back(1);
33 vector.push_back(4);
34 vector.push_back(64);
35 vector.push_back(12432);
36 EXPECT_TRUE(STLIsSorted(vector));
37 vector.back() = 1
    [all...]
  /external/clang/test/SemaTemplate/
qualified-names-diag.cpp 4 template<typename T> class vector { }; // expected-note{{candidate}} class in namespace:std
13 std::vector<INT> v1;
14 vector<Real> v2;
  /external/javassist/sample/vector/
Sample.java 1 package sample.vector;
3 public class Sample extends java.util.Vector {
Sample2.java 1 package sample.vector;
3 public class Sample2 extends java.util.Vector {
  /external/stlport/test/unit/
bsearch_test.cpp 32 int vector[100]; local
34 vector[i] = i;
35 CPPUNIT_ASSERT(binary_search(vector, vector + 100, 42));
  /ndk/tests/device/test-gnustl-full/unit/
bsearch_test.cpp 32 int vector[100]; local
34 vector[i] = i;
35 CPPUNIT_ASSERT(binary_search(vector, vector + 100, 42));
  /ndk/tests/device/test-stlport/unit/
bsearch_test.cpp 32 int vector[100]; local
34 vector[i] = i;
35 CPPUNIT_ASSERT(binary_search(vector, vector + 100, 42));
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextStream.h 31 #include "wtf/Vector.h"
80 TextStream& operator<<(TextStream& ts, const Vector<Item>& vector)
84 unsigned size = vector.size();
86 ts << vector[i]; local
  /external/clang/test/CodeGenCXX/
mangle-alias-template.cpp 5 template<typename T, typename A = Alloc<T>> struct vector {}; struct
7 template<typename T> using Vec = vector<T>;
16 vector<int> VI;
  /external/clang/test/Index/
complete-exprs.cpp 11 class vector { class
13 vector(const T &, unsigned n);
15 vector(InputIterator first, InputIterator last);
18 template<typename T> void vector<T>::push_back(const T&) { }
26 vector<int>(foo(), foo());
59 // CHECK-CC1: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50)
60 // CHECK-CC1: CXXConstructor:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder const T &}{Comma , }{Placeholder unsigned int n}{RightParen )} (50)
61 // CHECK-CC1: FunctionTemplate:{ResultType void}{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder InputIterator first}{Comma , }{Placeholder InputIterator last}{RightParen )} (50)
67 // CHECK-CC2: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50)
73 // CHECK-CC3: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50
    [all...]
  /external/clang/test/Sema/
implicit-decl.c 9 int32_t *vector[16]; local
12 if (_CFCalendarDecomposeAbsoluteTimeV(compDesc, vector, compCount)) { // expected-note {{previous implicit declaration is here}} \
21 Boolean _CFCalendarDecomposeAbsoluteTimeV(const char *componentDesc, int32_t **vector, int32_t count) { // expected-error{{conflicting types for '_CFCalendarDecomposeAbsoluteTimeV'}}
  /external/eigen/Eigen/src/StlSupport/
StdVector.h 18 * std::vector such that for data types with alignment issues the correct allocator
25 class vector<__VA_ARGS__, std::allocator<__VA_ARGS__> > \
26 : public vector<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > \
28 typedef vector<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > vector_base; \
34 explicit vector(const allocator_type& a = allocator_type()) : vector_base(a) {} \
36 vector(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : vector_base(first, last, a) {} \
37 vector(const vector& c) : vector_base(c) {} \
38 explicit vector(size_type num, const value_type& val = value_type()) : vector_base(num, val) {} \
39 vector(iterator start, iterator end) : vector_base(start, end) {}
69 class vector<T,EIGEN_ALIGNED_ALLOCATOR<T> > class in namespace:std
    [all...]
  /system/core/libutils/tests/
Vector_test.cpp 19 #include <utils/Vector.h>
40 Vector<int> vector; local
41 Vector<int> other;
42 vector.setCapacity(8);
44 vector.add(1);
45 vector.add(2);
46 vector.add(3);
48 EXPECT_EQ(vector.size(), 3);
50 // copy the vector
    [all...]
  /external/chromium_org/base/
stl_util_unittest.cc 54 std::vector<int> vector; local
55 vector.push_back(1);
56 vector.push_back(1);
57 vector.push_back(4);
58 vector.push_back(64);
59 vector.push_back(12432);
60 EXPECT_TRUE(STLIsSorted(vector));
61 vector.back() = 1;
62 EXPECT_FALSE(STLIsSorted(vector));
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_var_manager.cc 81 FakeArrayType& vector = var_data->array_value; local
82 for (FakeArrayType::iterator it = vector.begin();
83 it != vector.end(); ++it) {
86 vector.clear();
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
CompactHTMLToken.cpp 37 Vector<Attribute> vector; member in struct:WebCore::SameSizeAsCompactHTMLToken
57 // size of CompactHTMLToken, we just use the m_attributes vector.
66 for (Vector<HTMLToken::Attribute>::const_iterator it = token->attributes().begin(); it != token->attributes().end(); ++it)
95 for (Vector<Attribute>::const_iterator it = m_attributes.begin(); it != m_attributes.end(); ++it) {
  /external/chromium_org/third_party/WebKit/Source/wtf/
RefVector.h 10 #include "wtf/Vector.h"
30 const Vector<T>& vector() const { return m_vector; } function in class:WebCore::RefVector
33 Vector<T> m_vector;

Completed in 1568 milliseconds

1 2 3 4 5 6 7 8 91011>>