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

12345678

/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/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/SemaCXX/
H A Dfor-range-unused.cpp19 Vector<int> vector; local
20 vector.doIt();
/external/clang/test/SemaTemplate/
H A Dqualified-names-diag.cpp4 template<typename T> class vector { }; // expected-note{{candidate}} class in namespace:std
13 std::vector<INT> v1;
14 vector<Real> v2;
H A Dinstantiate-member-expr.cpp8 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/
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/webrtc/src/common_audio/signal_processing/
H A Dmin_max_operations_neon.c17 // 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 Denergy.c20 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 Drandomization_functions.c109 WebRtc_Word16 WebRtcSpl_RandUArray(WebRtc_Word16* vector, argument
116 vector[i] = WebRtcSpl_RandU(seed);
/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>;
20 vector<int> VI;
H A Ddebug-info-template.cpp25 template<typename T> class vector {}; class
27 typedef vector<Foo*> FooVector[3];
/external/openfst/src/script/
H A Dreplace.cc24 void Replace(const vector<pair<int64, const FstClass *> > &tuples, argument
H A Drelabel.cc37 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/srec/srec/clib/
H A Dmatx_ops.h23 imeldata *vector, int dimr, int dimc);
26 imeldata *vector, int dimr, int dimc)
32 ASSERT(vector);
34 ASSERT(outvec != vector);
39 sum += matrix[ii][jj] * vector[jj];
25 matrix_fixed_multiply_frame(imeldata *outvec, imeldata **matrix, imeldata *vector, int dimr, int dimc) argument
/external/stlport/test/unit/
H A Dbsearch_test.cpp32 int vector[100]; local
34 vector[i] = i;
35 CPPUNIT_ASSERT(binary_search(vector, vector + 100, 42));
/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/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/openfst/src/include/fst/extensions/pdt/
H A Dcompose.h47 const vector<pair<Label, Label> > &parens,
84 const vector<pair<Label, Label> > &parens) {
109 const vector<pair<typename Arc::Label,
132 const vector<pair<typename Arc::Label,
46 PdtComposeOptions(const Fst<Arc> &ifst1, const vector<pair<Label, Label> > &parens, const Fst<Arc> &ifst2) argument
82 PdtComposeOptions(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, const vector<pair<Label, Label> > &parens) argument
/external/stlport/src/
H A Dlocale_impl.h23 #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;

Completed in 729 milliseconds

12345678