Searched defs:vector (Results 1 - 25 of 248) sorted by relevance

12345678910

/external/clang/test/Modules/Inputs/submodules/
H A Dvector.h1 template<typename T> class vector { }; class
/external/clang/test/Modules/Inputs/
H A Dmodule_private_left.h16 __module_private__ class vector;
19 __module_private__ class vector { class
22 vector<float> vec_float;
/external/clang/test/SemaCXX/
H A Dlibstdcxx_explicit_init_list_hack.cpp10 class vector { class in namespace:std::__debug
12 explicit vector() {} // expected-warning 2 {{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}}
23 decltype(new std::__debug::vector<int>[1]{}) x; // expected-note{{used in initialization here}}
H A Dfor-range-unused.cpp19 Vector<int> vector; local
20 vector.doIt(); // expected-note {{here}}
/external/clang/test/CodeCompletion/
H A Dtemplates.cpp9 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/aac/libFDK/src/mips/
H A Dscale.cpp97 * \brief Calculate max possible scale factor for input vector
105 inline INT getScalefactor(const FIXP_DBL *vector, /*!< Pointer to input vector */ argument
106 INT len) /*!< Length of input vector */
112 maxVal |= __builtin_mips_absq_s_w(*vector++);
/external/clang/test/CXX/temp/temp.decls/temp.alias/
H A Dp2.cpp15 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/SemaTemplate/
H A Dqualified-names-diag.cpp6 template<typename T> class vector { }; // expected-note{{candidate function (the implicit copy assignment operator) not viable}} class in namespace:std
18 std::vector<INT> v1;
19 vector<Real> v2;
/external/javassist/sample/vector/
H A DSample2.java1 package sample.vector;
H A DSample.java1 package sample.vector;
H A DVectorAssistant.java1 package sample.vector;
11 * <ul>import java.util.Vector by sample.vector.VectorAssistant(int)</ul>
18 * import sample.vector.intVector;
25 * package sample.vector;
39 * <code>sample.vector.Sample</code> and <code>sample.vector.Sample2</code>
44 public final String packageName = "sample.vector.";
47 * Calls <code>makeSubclass()</code> and produces a new vector class.
79 * Produces a new vector class. This method does not work if
90 CtClass c = pool.get("sample.vector
[all...]
/external/vboot_reference/tests/
H A Dcrc32_test.c16 uint8_t vector[MAX_VECTOR_LEN]; member in struct:__anon20385
44 crc32 = Crc32(cases[i].vector, cases[i].len);
/external/clang/test/CodeGenCXX/
H A Dmangle-alias-template.cpp5 template<typename T, typename A = Alloc<T>> struct vector {}; struct
7 template<typename T> using Vec = vector<T>;
16 vector<int> VI;
/external/eigen/Eigen/src/Core/
H A DVectorBlock.h19 * \brief Expression of a fixed-size or dynamic-size sub-vector
21 * \param VectorType the type of the object in which we are taking a sub-vector
22 * \param Size size of the sub-vector we are taking at compile time (optional)
24 * This class represents an expression of either a fixed-size or dynamic-size sub-vector.
28 * However, if you want to directly maniputate sub-vector expressions,
75 inline VectorBlock(VectorType& vector, Index start, Index size) argument
76 : Base(vector,
85 inline VectorBlock(VectorType& vector, Index start) argument
86 : Base(vector, IsColVector ? start : 0, IsColVector ? 0 : start)
/external/valgrind/none/tests/solaris/
H A Dproc_auxv_multiple.c44 auxv_t vector[2][4]; local
57 if (read_entry(fi[0], &vector[0][i]))
68 if (read_entry(fi[0], &vector[0][i]))
73 if (read_entry(fi[1], &vector[1][i]))
77 if (memcmp(vector[0], vector[1], 4 * sizeof(vector[0][0]))) {
/external/webrtc/webrtc/common_audio/signal_processing/
H A Denergy.c20 int32_t WebRtcSpl_Energy(int16_t* vector, argument
27 WebRtcSpl_GetScalingSquare(vector, vector_length, vector_length);
29 int16_t *vectorptr = vector;
H A Drandomization_functions.c107 int16_t WebRtcSpl_RandUArray(int16_t* vector, argument
112 vector[i] = WebRtcSpl_RandU(seed);
/external/aac/libFDK/src/arm/
H A Dscale_arm.cpp99 FIXP_DBL *vector,
108 FIXP_DBL *mySpec = vector;
98 scaleValuesWithFactor( FIXP_DBL *vector, FIXP_DBL factor, INT len, INT scalefactor ) argument
/external/clang/test/Index/
H A Dcomplete-exprs.cpp11 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}{LeftAngl
[all...]
/external/clang/test/OpenMP/
H A Dtask_depend_messages.cpp12 class vector { class
18 vector vec;
/external/clang/test/Sema/
H A Dimplicit-decl.c9 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'}} argument
/external/eigen/Eigen/src/StlSupport/
H A DStdVector.h18 * 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(iterato
69 class vector<T,EIGEN_ALIGNED_ALLOCATOR<T> > class in namespace:std
[all...]
/external/libbrillo/brillo/
H A Dmap_utils.h11 #include <vector>
24 // Given an STL map, returns a vector containing all keys from the map.
25 // The keys in the vector are sorted.
27 inline std::vector<typename T::key_type> GetMapKeysAsVector(const T& map) {
28 std::vector<typename T::key_type> keys;
35 // Given an STL map, returns a vector containing all values from the map.
37 inline std::vector<typename T::mapped_type> GetMapValues(const T& map) {
38 std::vector<typename T::mapped_type> values;
45 // Given an STL map, returns a vector of key-value pairs from the map.
47 inline std::vector<st
49 std::vector<std::pair<typename T::key_type, typename T::mapped_type>> vector; local
[all...]
/external/libchrome/base/
H A Dstl_util_unittest.cc54 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/v8/src/ic/
H A Daccess-compiler.cc63 Register PropertyAccessCompiler::vector() const { function in class:v8::internal::PropertyAccessCompiler

Completed in 1407 milliseconds

12345678910