/external/clang/test/Modules/Inputs/submodules/ |
H A D | vector.h | 1 template<typename T> class vector { }; class
|
/external/clang/test/Modules/Inputs/ |
H A D | module_private_left.h | 16 __module_private__ class vector; 19 __module_private__ class vector { class 22 vector<float> vec_float;
|
/external/clang/test/SemaCXX/ |
H A D | libstdcxx_explicit_init_list_hack.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}}
|
H A D | for-range-unused.cpp | 19 Vector<int> vector; local 20 vector.doIt(); // expected-note {{here}}
|
/external/clang/test/CodeCompletion/ |
H A D | 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/aac/libFDK/src/mips/ |
H A D | scale.cpp | 97 * \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 D | 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/SemaTemplate/ |
H A D | 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/ |
H A D | Sample2.java | 1 package sample.vector;
|
H A D | Sample.java | 1 package sample.vector;
|
H A D | VectorAssistant.java | 1 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/v8/src/ |
H A D | type-feedback-vector.cc | 8 #include "src/type-feedback-vector-inl.h" 15 Isolate* isolate, Handle<TypeFeedbackVector> vector) { 18 isolate->factory()->CopyFixedArray(Handle<FixedArray>::cast(vector))); 14 Copy( Isolate* isolate, Handle<TypeFeedbackVector> vector) argument
|
/external/vboot_reference/tests/ |
H A D | crc32_test.c | 16 uint8_t vector[MAX_VECTOR_LEN]; member in struct:__anon16899 44 crc32 = Crc32(cases[i].vector, cases[i].len);
|
/external/webrtc/src/common_audio/signal_processing/ |
H A D | min_max_operations_neon.c | 17 // Maximum absolute value of word16 vector. 18 WebRtc_Word16 WebRtcSpl_MaxAbsValueW16(const WebRtc_Word16* vector, argument 28 __asm__("vld1.16 {d26, d27}, [%0]" : : "r"(&vector[i]) : "q13"); 38 abs_val = WEBRTC_SPL_ABS_W32((vector[i]));
|
H A D | energy.c | 20 WebRtc_Word32 WebRtcSpl_Energy(WebRtc_Word16* vector, int vector_length, int* scale_factor) argument 24 int scaling = WebRtcSpl_GetScalingSquare(vector, vector_length, vector_length); 26 WebRtc_Word16 *vectorptr = vector;
|
H A D | randomization_functions.c | 109 WebRtc_Word16 WebRtcSpl_RandUArray(WebRtc_Word16* vector, argument 116 vector[i] = WebRtcSpl_RandU(seed);
|
/external/clang/test/CodeGenCXX/ |
H A D | 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/eigen/Eigen/src/Core/ |
H A D | VectorBlock.h | 19 * \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/openfst/src/script/ |
H A D | replace.cc | 24 void Replace(const vector<pair<int64, const FstClass *> > &tuples, argument
|
H A D | relabel.cc | 37 const vector<pair<int64, int64> > &ipairs, 38 const vector<pair<int64, int64> > &opairs) { 36 Relabel(MutableFstClass *ofst, const vector<pair<int64, int64> > &ipairs, const vector<pair<int64, int64> > &opairs) argument
|
/external/aac/libFDK/src/arm/ |
H A D | scale_arm.cpp | 99 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 D | 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}{LeftAngl [all...] |
/external/clang/test/Sema/ |
H A D | 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'}} argument
|
/external/eigen/Eigen/src/StlSupport/ |
H A D | 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(iterato 69 class vector<T,EIGEN_ALIGNED_ALLOCATOR<T> > class in namespace:std [all...] |
/external/clang/test/Misc/ |
H A D | 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...] |