HomeSort by relevance Sort by last modified time
    Searched defs:vector (Results 51 - 75 of 291) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
lpad-linetable.cpp 9 # 1 "/usr/include/c++/4.2.1/vector" 1 3
38 class vector class in namespace:std
46 vector(const allocator_type& __a = allocator_type()) function in class:std::vector
61 std::vector<long> longs;
62 std::vector<short> shorts;
thunk-use-after-free.cpp 26 allocator < _Tp > >struct vector:_Vector_base < _Tp, _Alloc > { }; struct in inherits:_Vector_base
34 template < class SSS > struct EEE:vector < HHH < SSS > > { };
39 vector < HHH < X1 > >aaa;
  /external/clang/test/Index/
comment-cplus-decls.cpp 129 template<class T> class vector { class in namespace:test3
131 vector(int i) {} function in class:test3::vector
142 friend void vector<A>::f(const A&);
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*>;
128 // CHECK-LOAD: index-templates.cpp:9:7: ClassTemplate=vector:9:7 (Definition) Extent=[8:1 - 11:2]
133 // CHECK-LOAD: index-templates.cpp:14:7: ClassTemplatePartialSpecialization=vector:14:7 (Definition) [Specialization of vector:9:7] Extent=[13:1 - 14:21]
136 // CHECK-LOAD: index-templates.cpp:18:16: ClassDecl=vector:18:16 (Definition) [Specialization of vector:9:7] Extent=[18:1 - 18:26
    [all...]
annotate-nested-name-specifier.cpp 4 struct vector { struct in namespace:outer::inner
14 using outer_alias::inner::vector;
16 struct X_vector : outer_alias::inner::vector<X> {
17 using outer_alias::inner::vector<X>::iterator;
38 struct X2 : outer::inner::vector<T> {
40 using typename outer::inner::vector<type>::iterator;
41 using outer::inner::vector<type>::push_back;
57 t->::outer_alias::inner::template vector<T>::~vector<T>();
100 typedef typename outer_alias::inner::vector<type>::iterator iter_type
    [all...]
  /external/clang/test/Misc/
diag-template-diffing-color.cpp 21 template<typename> class vector {}; class
23 void set15(vector<const vector<int> >) {}
25 set15(vector<const vector<const int> >());
27 // CHECK: {{.*}}candidate function not viable: no known conversion from 'vector<const vector<[[CYAN]]const{{ ?}}[[RESET]]{{ ?}}int>>' to 'vector<const vector<int>>' for 1st argument
29 // TREE: vector<
    [all...]
  /external/clang/test/SemaTemplate/
derived.cpp 5 template<typename T> class vector : vector2<T> {}; class in inherits:vector2
8 template<typename T> void Foo(vector<const T*> V) {} // expected-note {{candidate template ignored: cannot deduce a type for 'T' that would make 'const T' equal 'int'}}
12 Foo(vector<int*>()); // expected-error{{no matching function for call to 'Foo'}}
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/eigen/Eigen/src/Geometry/
Translation.h 38 /** corresponding vector type */
70 /** Constructs and initialize the translation transformation from a vector of translation coefficients */
71 EIGEN_DEVICE_FUNC explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {}
87 EIGEN_DEVICE_FUNC const VectorType& vector() const { return m_coeffs; } function in class:Eigen::Translation
88 EIGEN_DEVICE_FUNC VectorType& vector() { return m_coeffs; } function in class:Eigen::Translation
132 /** Applies translation to vector */
161 { m_coeffs = other.vector().template cast<Scalar>(); }
  /external/javassist/sample/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/libchrome/base/
stl_util_unittest.cc 17 #include <vector>
115 std::vector<int> vector; local
116 vector.push_back(1);
117 vector.push_back(1);
118 vector.push_back(4);
119 vector.push_back(64);
120 vector.push_back(12432);
121 EXPECT_TRUE(STLIsSorted(vector));
122 vector.back() = 1
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 60 GLfloat vector[6]; local
61 vector[SWIZZLE_X] = texel[0];
62 vector[SWIZZLE_Y] = texel[1];
63 vector[SWIZZLE_Z] = texel[2];
64 vector[SWIZZLE_W] = texel[3];
65 vector[SWIZZLE_ZERO] = 0.0F;
66 vector[SWIZZLE_ONE] = 1.0F;
67 colorOut[0] = vector[GET_SWZ(swizzle, 0)];
68 colorOut[1] = vector[GET_SWZ(swizzle, 1)];
69 colorOut[2] = vector[GET_SWZ(swizzle, 2)]
    [all...]
  /external/v8/src/builtins/
builtins-handler.cc 22 Node* vector = Parameter(Descriptor::kVector); local
37 vector);
46 Node* vector = Parameter(Descriptor::kVector); local
50 vector);
80 Node* vector = Parameter(Descriptor::kVector); local
83 TailCallRuntime(Runtime::kKeyedStoreIC_Miss, context, value, slot, vector,
94 Node* vector = Parameter(Descriptor::kVector); local
99 TailCallRuntime(Runtime::kKeyedStoreIC_Slow, context, value, slot, vector,
108 Node* vector = Parameter(Descriptor::kVector); local
111 TailCallRuntime(Runtime::kLoadGlobalIC_Miss, context, name, slot, vector);
119 Node* vector = Parameter(Descriptor::kVector); local
135 Node* vector = Parameter(Descriptor::kVector); local
164 Node* vector = Parameter(Descriptor::kVector); local
217 Node* vector = Parameter(Descriptor::kVector); local
231 Node* vector = Parameter(Descriptor::kVector); local
    [all...]
  /cts/tests/tests/rscpp/librscpptest/
rs_jni_script.cpp 138 // Define some reasonable types for use with the vector invoke testing.
146 vector->invoke_vector_test_##L(temp_##L); \
148 vector->invoke_vector_test_##L##2(temp_##L##2); \
150 vector->invoke_vector_test_##L##3(temp_##L##3); \
152 vector->invoke_vector_test_##L##4(temp_##L##4);
156 * Test that vector invoke C++ reflection is working/present.
170 sp<ScriptC_vector> vector = new ScriptC_vector(mRS); local
  /external/clang/test/SemaCXX/
nested-name-spec-locations.cpp 152 template<typename T> class vector { class in namespace:PR9388::std
155 template<typename T> static void foo(std::vector<T*> &V) {
158 void bar(std::vector<int*> &Blocks) {
  /external/freetype/include/freetype/internal/
ftcalc.h 297 FT_Vector_Transform_Scaled( FT_Vector* vector,
303 * This function normalizes a vector and returns its original length.
304 * The normalized vector is a 16.16 fixed-point unit vector with length
311 FT_Vector_NormLen( FT_Vector* vector ); variable
  /external/libchrome/base/trace_event/
memory_usage_estimator_unittest.cc 134 TEST(EstimateMemoryUsageTest, Vector) {
135 std::vector<Data> vector; local
136 vector.reserve(1000);
138 // For an empty vector we should return memory usage of its buffer
139 size_t capacity = vector.capacity();
141 EXPECT_EQ(expected_size, EstimateMemoryUsage(vector));
143 // If vector is not empty, its size should also include memory usages
146 vector.push_back(Data(i));
147 expected_size += EstimateMemoryUsage(vector.back())
    [all...]
  /external/libese/libapdu/include/apdu/
apdu.h 23 #include <vector>
31 * The command bytes are stored sequentially in the same manner as std::vector.
39 using iterator = std::vector<uint8_t>::iterator;
40 using const_iterator = std::vector<uint8_t>::const_iterator;
55 const std::vector<uint8_t>& vector() const { return mCommand; } function in class:android::CommandApdu
58 std::vector<uint8_t> mCommand;
59 std::vector<uint8_t>::iterator mDataBegin;
60 std::vector<uint8_t>::iterator mDataEnd;
  /external/ltp/testcases/kernel/syscalls/mincore/
mincore01.c 27 * Invoke mincore() when the vector points to an invalid address. EFAULT
69 unsigned char *vector; member in struct:test_case_t
106 tc->vector = global_vec;
128 tc->vector = t;
136 tc->vector = global_vec;
147 tc->vector = global_vec;
196 TEST(mincore(tc->addr, tc->len, tc->vector));
  /external/swiftshader/src/OpenGL/libGL/
VertexDataManager.cpp 255 float *vector = (float*)mVertexBuffer->lock(sw::PUBLIC); local
257 vector[0] = x;
258 vector[1] = y;
259 vector[2] = z;
260 vector[3] = w;
  /external/swiftshader/src/OpenGL/libGLES_CM/
VertexDataManager.cpp 249 float *vector = (float*)mVertexBuffer->lock(sw::PUBLIC); local
251 vector[0] = x;
252 vector[1] = y;
253 vector[2] = z;
254 vector[3] = w;
  /external/swiftshader/src/OpenGL/libGLESv2/
VertexDataManager.cpp 277 float *vector = (float*)mVertexBuffer->lock(sw::PUBLIC); local
279 vector[0] = x;
280 vector[1] = y;
281 vector[2] = z;
282 vector[3] = w;
  /external/v8/src/debug/
debug-coverage.cc 70 FeedbackVector* vector = FeedbackVector::cast(list->Get(i)); local
71 SharedFunctionInfo* shared = vector->shared_function_info();
73 uint32_t count = static_cast<uint32_t>(vector->invocation_count());
74 if (reset_count) vector->clear_invocation_count();
83 FeedbackVector* vector = FeedbackVector::cast(current_obj); local
84 SharedFunctionInfo* shared = vector->shared_function_info();
86 uint32_t count = static_cast<uint32_t>(vector->invocation_count());
87 if (reset_count) vector->clear_invocation_count();
103 std::vector<CoverageFunction>* functions = &result->back().functions;
105 std::vector<SharedFunctionInfo*> sorted
151 FeedbackVector* vector = FeedbackVector::cast(current_obj); local
    [all...]
  /external/v8/src/ic/
accessor-assembler.h 56 Node* vector)
61 vector(vector) {}
67 Node* vector; member in struct:v8::internal::AccessorAssembler::LoadICParameters
71 Node* vector, Node* slot, ExitPoint* exit_point, Label* try_handler,
81 Node* slot, Node* vector)
82 : LoadICParameters(context, receiver, name, slot, vector),
106 // Checks monomorphic case. Returns {feedback} entry of the vector.
107 Node* TryMonomorphicCase(Node* slot, Node* vector, Node* receiver_map,
  /external/zlib/src/examples/
enough.c 113 size_t len; /* length of bit vector in char's */
114 char *vec; /* allocated bit vector */
157 vector is of a variable size, and grows as needed to accommodate the visited
255 bit vector to indicate visiting this state. Each (syms,len,left) state
256 has a variable size bit vector indexed by (mem,rem). The bit vector is
260 size_t index; /* index for this state's bit vector */
261 size_t offset; /* offset in this state's bit vector */
263 size_t length; /* length of the bit vector in bytes */
264 char *vector; /* new or enlarged bit vector * local
    [all...]

Completed in 1208 milliseconds

1 23 4 5 6 7 8 91011>>