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

1 2 3 4 5 6

  /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/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());
48 // CHECK-CC1: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50)
49 // CHECK-CC1: CXXConstructor:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder const T &}{Comma , }{Placeholder unsigned int n}{RightParen )} (50)
50 // CHECK-CC1: FunctionTemplate:{ResultType void}{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder InputIterator first}{Comma , }{Placeholder InputIterator last}{RightParen )} (50)
56 // CHECK-CC2: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50)
62 // CHECK-CC3: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50
    [all...]
index-templates.cpp 9 class vector { class
14 class vector<T*> { }; class
18 template class vector<Z1>;
23 class vector<Z2> { class
47 template class vector<int*>;
115 // CHECK-LOAD: index-templates.cpp:9:7: ClassTemplate=vector:9:7 (Definition) Extent=[8:1 - 11:2]
120 // CHECK-LOAD: index-templates.cpp:14:7: ClassTemplatePartialSpecialization=vector:14:7 (Definition) [Specialization of vector:9:7] Extent=[13:1 - 14:21]
123 // CHECK-LOAD: index-templates.cpp:18:16: ClassDecl=vector:18:16 (Definition) [Specialization of vector:9:7] Extent=[18:1 - 18:26
    [all...]
  /external/clang/test/Sema/
implicit-decl.c 7 int32_t *vector[16]; local
10 if (_CFCalendarDecomposeAbsoluteTimeV(compDesc, vector, compCount)) { // expected-note {{previous implicit declaration is here}} \
14 Boolean _CFCalendarDecomposeAbsoluteTimeV(const char *componentDesc, int32_t **vector, int32_t count) { // expected-error{{conflicting types for '_CFCalendarDecomposeAbsoluteTimeV'}}
  /external/clang/test/SemaCXX/
for-range-unused.cpp 6 struct Vector {
19 Vector<int> vector; local
20 vector.doIt();
friend.cpp 101 class vector { class in namespace:test6_2
103 vector(int i, const T& t = T()) {} function in class:test6_2::vector
108 friend class vector<A>;
112 vector<A> v(1);
117 class vector { class in namespace:test6_3
119 vector(int i) {} function in class:test6_3::vector
125 friend void vector<A>::f(const A&);
129 vector<A> v(1);
  /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;
instantiate-member-expr.cpp 8 struct vector { struct
14 typedef vector<S<void *> >CheckersOrdered;
19 Checkers.push_back(S<void *>()); // expected-note {{in instantiation of member function 'vector<S<void *> >::push_back' requested here}}
  /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 {
VectorAssistant.java 1 package sample.vector;
11 * <ul>import java.util.Vector by sample.vector.VectorAssistant(int)</ul>
17 * import java.util.Vector;
18 * import sample.vector.intVector;
25 * package sample.vector;
27 * public class intVector extends Vector {
39 * <code>sample.vector.Sample</code> and <code>sample.vector.Sample2</code>
44 public final String packageName = "sample.vector."
    [all...]
  /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/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;
debug-info-template.cpp 25 template<typename T> class vector {}; class
27 typedef vector<Foo*> FooVector[3];
2007-09-10-RecursiveTypeResolution.cpp 51 class vector:protected _Vector_base < _Tp,_Alloc > class in namespace:Manta
55 vector < _Tp, _Alloc > > iterator;
68 typedef vector < CallbackBase_1Data < int >*>PRCallbackMapType;
copy-assign-volatile-synthesis.cpp 12 word_t vector : 8; member in struct:ioapic_redir_t::__anon4950::__anon4951
  /external/stlport/src/
locale_impl.h 23 #include <vector>
33 //If we are using pointer specialization, vector<locale::facet*> will use
34 //the already exported vector<void*> implementation.
46 # define _STLP_NON_DBG_VECTOR _STLP_NON_DBG_NAME(vector)
53 _STLP_EXPORT_TEMPLATE_CLASS vector<locale::facet*, allocator<locale::facet*> >; variable
112 vector<locale::facet*> facets_vec;
  /ndk/sources/cxx-stl/stlport/src/
locale_impl.h 23 #include <vector>
33 //If we are using pointer specialization, vector<locale::facet*> will use
34 //the already exported vector<void*> implementation.
46 # define _STLP_NON_DBG_VECTOR _STLP_NON_DBG_NAME(vector)
53 _STLP_EXPORT_TEMPLATE_CLASS vector<locale::facet*, allocator<locale::facet*> >; variable
112 vector<locale::facet*> facets_vec;
  /external/clang/test/Misc/
diag-aka-types.cpp 33 // PR9548 - "no known conversion from 'vector<string>' to 'vector<string>'"
34 // vector<string> refers to two different types here. Make sure the message
39 namespace std {template <typename T> class vector;}
40 using std::vector;
42 void f(vector<string> v); // expected-note {{candidate function not viable: no known conversion from 'vector<string>' (aka 'std::vector<std::basic_string>') to 'vector<string>' (aka 'std::vector<versa_string>') for 1st argument}
47 template <typename T> class vector {}; class in namespace:std
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTreeAsText.h 76 TextStream& operator<<(TextStream& ts, const Vector<Item>& vector)
80 unsigned size = vector.size();
82 ts << vector[i]; local
  /external/v8/test/cctest/
test-strtod.cc 15 static Vector<const char> StringToVector(const char* str) {
16 return Vector<const char>(str, StrLength(str));
26 Vector<const char> vector; local
28 vector = StringToVector("0");
29 CHECK_EQ(0.0, Strtod(vector, 1));
30 CHECK_EQ(0.0, Strtod(vector, 2));
31 CHECK_EQ(0.0, Strtod(vector, -2));
32 CHECK_EQ(0.0, Strtod(vector, -999));
33 CHECK_EQ(0.0, Strtod(vector, +999))
    [all...]
  /external/webkit/Source/WebCore/page/
WindowFeatures.cpp 240 Vector<String> vector; local
241 string.split(';', vector);
242 size_t size = vector.size();
244 const String& featureString = vector[i];

Completed in 2899 milliseconds

1 2 3 4 5 6