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

1 2 3 4 56 7 8 91011>>

  /external/v8/tools/clang/plugins/tests/
ipc.cpp 33 struct vector {}; struct in namespace:std
196 typedef std::vector<long> long1D;
197 typedef std::vector<long1D> long2D;
202 IPC_TEST_MESSAGE(__COUNTER__, (std::vector<std::vector<long&>&>&)) // ERROR
253 CALL_WRITEPARAM(std::vector<long>) // ERROR
254 CALL_WRITEPARAM(std::vector<size_t>) // ERROR
276 CALL_WRITEPARAM(std::vector<char>) // OK
277 CALL_WRITEPARAM(std::vector<my_long>) // OK
292 const std::vector<size_t>& get_sizes() const { return sizes_data;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_vector.h 0 // Vector implementation -*- C++ -*-
53 * Do not attempt to use it directly. @headername{vector}
203 * In some terminology a %vector can be described as a dynamic
210 class vector : protected _Vector_base<_Tp, _Alloc> class in inherits:_Vector_base
227 typedef __gnu_cxx::__normal_iterator<pointer, vector> iterator;
228 typedef __gnu_cxx::__normal_iterator<const_pointer, vector>
248 vector() function in class:vector
252 * @brief Creates a %vector with no elements.
256 vector(const allocator_type& __a) function in class:vector
261 * @brief Creates a %vector with default constructed elements
269 vector(size_type __n, const allocator_type& __a = allocator_type()) function in class:vector
281 vector(size_type __n, const value_type& __value, function in class:vector
295 vector(size_type __n, const value_type& __value = value_type(), function in class:vector
310 vector(const vector& __x) function in class:vector
331 vector(const vector& __x, const allocator_type& __a) function in class:vector
340 vector(vector&& __rv, const allocator_type& __m) function in class:vector
364 vector(initializer_list<value_type> __l, function in class:vector
392 vector(_InputIterator __first, _InputIterator __last, function in class:vector
398 vector(_InputIterator __first, _InputIterator __last, function in class:vector
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_vector.h 0 // Vector implementation -*- C++ -*-
53 * Do not attempt to use it directly. @headername{vector}
203 * In some terminology a %vector can be described as a dynamic
210 class vector : protected _Vector_base<_Tp, _Alloc> class in inherits:_Vector_base
227 typedef __gnu_cxx::__normal_iterator<pointer, vector> iterator;
228 typedef __gnu_cxx::__normal_iterator<const_pointer, vector>
248 vector() function in class:vector
252 * @brief Creates a %vector with no elements.
256 vector(const allocator_type& __a) function in class:vector
261 * @brief Creates a %vector with default constructed elements
269 vector(size_type __n, const allocator_type& __a = allocator_type()) function in class:vector
281 vector(size_type __n, const value_type& __value, function in class:vector
295 vector(size_type __n, const value_type& __value = value_type(), function in class:vector
310 vector(const vector& __x) function in class:vector
331 vector(const vector& __x, const allocator_type& __a) function in class:vector
340 vector(vector&& __rv, const allocator_type& __m) function in class:vector
364 vector(initializer_list<value_type> __l, function in class:vector
392 vector(_InputIterator __first, _InputIterator __last, function in class:vector
398 vector(_InputIterator __first, _InputIterator __last, function in class:vector
    [all...]
  /art/runtime/
common_runtime_test.cc 310 std::vector<std::unique_ptr<const DexFile>> dex_files;
469 std::vector<std::string> CommonRuntimeTestImpl::GetLibCoreDexFileNames() {
470 return std::vector<std::string>({GetDexFileName("core-oj", IsHost()),
509 std::vector<std::unique_ptr<const DexFile>> CommonRuntimeTestImpl::OpenTestDexFiles(
515 std::vector<std::unique_ptr<const DexFile>> dex_files;
530 std::vector<std::unique_ptr<const DexFile>> vector = OpenTestDexFiles(name); local
531 EXPECT_EQ(1U, vector.size());
532 return std::move(vector[0]);
535 std::vector<const DexFile*> CommonRuntimeTestImpl::GetDexFiles(jobject jclass_loader)
    [all...]
  /cts/tests/tests/media/libmediandkjni/
native-mediadrm-jni.cpp 24 #include <vector>
41 typedef std::vector<uint8_t> Uuid;
112 static std::vector<uint8_t> jbyteArrayToVector(
116 std::vector<uint8_t> vector; local
118 vector.push_back(buffer[i]);
120 return vector;
769 std::vector<std::vector<uint8_t> > sids;
784 sids.push_back(std::vector<uint8_t>(sessionId.length))
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3collections.h 203 pANTLR3_VECTOR vector; member in struct:ANTLR3_STACK_struct
218 /* Structure that represents a vector element
228 /* Structure that represents a vector collection. A vector is a simple list
237 /** Array of pointers to vector elements
245 /** Many times, a vector holds just a few nodes in an AST and it
255 * case only the factory can free the memory for the actual vector,
256 * though the vector free function is called and will recurse through its
265 void (ANTLR3_CDECL *free) (struct ANTLR3_VECTOR_struct * vector);
266 void (*del) (struct ANTLR3_VECTOR_struct * vector, ANTLR3_UINT32 entry)
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3collections.c 90 static void ANTLR3_CDECL antlr3VectorFree (pANTLR3_VECTOR vector);
91 static void antlr3VectorDel (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
92 static void * antlr3VectorGet (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
93 static void * antrl3VectorRemove (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
94 static void antlr3VectorClear (pANTLR3_VECTOR vector);
95 static ANTLR3_UINT32 antlr3VectorAdd (pANTLR3_VECTOR vector, void * element, void (ANTLR3_CDECL *freeptr)(void *));
96 static ANTLR3_UINT32 antlr3VectorSet (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry, void * element, void (ANTLR3_CDECL *freeptr)(void *), ANTLR3_BOOLEAN freeExisting);
97 static ANTLR3_UINT32 antlr3VectorSize (pANTLR3_VECTOR vector);
98 static ANTLR3_BOOLEAN antlr3VectorSwap (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry1, ANTLR3_UINT32 entry2);
103 static void returnVector (pANTLR3_VECTOR_FACTORY factory, pANTLR3_VECTOR vector);
1056 pANTLR3_VECTOR vector; local
1530 ANTLR3_UINT32 vector; local
1640 pANTLR3_VECTOR vector; local
    [all...]
  /external/clang/test/SemaTemplate/
dependent-names.cpp 138 template<typename T> struct vector {}; struct in namespace:std::inner
140 using inner::vector;
237 std::ostream &print(std::ostream &out, std::vector<ns2::Data>); // expected-note {{should be declared prior to the call site or in namespace 'PR10053::my_file2_a::ns2'}}
243 Dump(std::vector<ns2::Data>()); // expected-note {{requested here}}
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_target.h 198 unsigned int vector : 1; member in struct:nv50_ir::Target::OpInfo
  /external/mtpd/
l2tp.c 239 uint8_t *vector = NULL; local
257 vector = p->value;
271 if (!secret || !vector || length < 2) {
282 MD5_Update(&ctx, vector, vector_length);
  /external/tensorflow/tensorflow/core/grappler/optimizers/
layout_optimizer_test.cc 803 auto vector = ops::Const(s.WithOpName("vector"), {3.0f, 7.0f}, {2}); local
827 auto vector = ops::Const(s.WithOpName("vector"), {3.0f, 7.0f}, {2}); local
958 auto vector = ops::Const(s.WithOpName("vector"), 3.0f, {7}); local
1085 auto vector = ops::Const(s.WithOpName("vector"), 3.0f, {2}); local
    [all...]
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
TensorTest.java 345 double[] vector = {1.414, 2.718, 3.1415}; local
346 try (Tensor<Double> t = Tensors.create(vector)) {
352 assertArrayEquals(vector, t.copyTo(got), EPSILON);
418 byte[] vector = new byte[] {1, 2, 3, 4};
419 try (Tensor<UInt8> t = Tensor.create(vector, UInt8.class)) {
425 assertArrayEquals(vector, got);
431 Integer[] vector = new Integer[] {1, 2, 3, 4}; local
432 try (Tensor<Integer> t = Tensor.create(vector, Integer.class)) {
  /external/v8/include/
v8-profiler.h 9 #include <vector>
31 template class V8_EXPORT std::vector<v8::CpuProfileDeoptFrame>; member in class:std
39 std::vector<CpuProfileDeoptFrame> stack;
45 template class V8_EXPORT std::vector<v8::CpuProfileDeoptInfo>; member in class:std
218 const std::vector<CpuProfileDeoptInfo>& GetDeoptInfos() const;
600 std::vector<Node*> children;
605 std::vector<Allocation> allocations;
635 typedef std::vector<std::pair<v8::RetainedObjectInfo*, RetainerChildren>>
637 typedef std::vector<std::pair<const v8::PersistentBase<v8::Value>*,
  /external/v8/src/builtins/
builtins-constructor.cc 176 Node* vector = Parameter(FastNewClosureDescriptor::kVector); local
178 Return(EmitFastNewClosure(shared, vector, slot, context));
  /external/v8/src/ic/
ic.h 9 #include "src/feedback-vector.h"
76 // The ICs that don't pass slot and vector through the stack have to
116 // Configure the vector for MONOMORPHIC.
119 // Configure the vector for POLYMORPHIC.
122 // Configure the vector for POLYMORPHIC with transitions (only for element
207 Handle<FeedbackVector> vector() const { return nexus()->vector_handle(); } function in class:v8::internal::IC
366 return nexus()->vector()->GetLanguageMode(nexus()->slot());
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 271 float[] vector = new float[vectorLength]; local
279 vector[index] = lstPointX;
281 vector[index] = lstPointY;
301 vector[index] = nx;
303 vector[index] = ny;
318 vector[i] = lstPointX;
319 vector[i + 1] = lstPointY;
321 return vector;
  /frameworks/native/include/android/
sensor.h 363 ASensorVector vector; member in union:ASensorEvent::__anon46218::__anon46219
  /system/libhidl/base/include/hidl/
HidlSupport.h 34 #include <vector>
352 hidl_vec(const std::vector<T> &other) : hidl_vec() {
393 details::logAlwaysFatal("external vector size exceeds 2^32 elements.");
437 // copy from an std::vector.
438 hidl_vec &operator=(const std::vector<T> &other) {
446 // cast to an std::vector.
447 operator std::vector<T>() const {
448 std::vector<T> v(mSize);
  /external/clang/lib/AST/
TypePrinter.cpp 223 case Type::Vector:
1280 const VectorType *vector = T->getEquivalentType()->getAs<VectorType>(); local
    [all...]
  /external/clang/test/CodeGenCXX/
visibility.cpp 987 template<typename _Tp > struct vector { struct in namespace:test53
996 struct vector<int> { struct in namespace:test53
1000 vector<unsigned>::_M_fill_insert();
1001 vector<int>::_M_fill_insert();
1002 vector<zed>::_M_fill_insert();
    [all...]
  /external/clang/test/Misc/
diag-template-diffing.cpp 6 // PR9548 - "no known conversion from 'vector<string>' to 'vector<string>'"
7 // vector<string> refers to two different types here. Make sure the message
12 namespace std {template <typename T> class vector;}
13 using std::vector;
15 void f(vector<string> v);
20 template <typename T> class vector {}; class in namespace:std
22 vector<string> v;
27 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'vector<std::basic_string>' to 'vector<versa_string>' for 1st argumen
1056 template <typename T, typename A = allocator<const Atom *> > class vector {}; class in namespace:PR17510
    [all...]
  /external/opencv/cvaux/src/
cvhmm.cpp 63 // obs_size - length of observation vector
445 float* vector = obs->obs; local
447 for (i = 0; i < num_obs; i++, vector+=obs->obs_size )
451 samples[state][counter[state]] = vector;
479 /* for every vector number of mixture is assigned */
506 // Purpose: The function computes the Gaussian pdf for a sample vector
508 // Parameters: obsVeq - pointer to the sample vector
509 // mu - pointer to the mean vector of the Gaussian pdf
510 // var - pointer to the variance vector of the Gaussian pdf
511 // VecSize - the size of sample vector
1432 float* vector = info->obs; local
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 15 SkVector vector; local
16 x.store(&vector);
17 return vector;
121 // zero tangent vector when t is 0 or 1, and the control point is equal
321 // The derivative equation returns a zero tangent vector when t is 0 or 1, and the
    [all...]
  /external/skqp/src/core/
SkGeometry.cpp 15 SkVector vector; local
16 x.store(&vector);
17 return vector;
121 // zero tangent vector when t is 0 or 1, and the control point is equal
321 // The derivative equation returns a zero tangent vector when t is 0 or 1, and the
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
Program.cpp 1427 int vector[MAX_UNIFORM_VECTORS][4]; local
1456 int vector[MAX_UNIFORM_VECTORS][4]; local
1485 int vector[MAX_UNIFORM_VECTORS][4]; local
1514 int vector[MAX_UNIFORM_VECTORS][4]; local
1543 float vector[MAX_UNIFORM_VECTORS][4]; local
1572 float vector[MAX_UNIFORM_VECTORS][4]; local
1601 float vector[MAX_UNIFORM_VECTORS][4]; local
1719 float vector[MAX_UNIFORM_VECTORS][4]; local
1780 float vector[MAX_UNIFORM_VECTORS][4]; local
1809 float vector[MAX_UNIFORM_VECTORS][4]; local
1838 float vector[MAX_UNIFORM_VECTORS][4]; local
    [all...]

Completed in 2051 milliseconds

1 2 3 4 56 7 8 91011>>