HomeSort by relevance Sort by last modified time
    Searched defs:vector (Results 1 - 25 of 48) sorted by null

1 2

  /external/stlport/test/unit/
bsearch_test.cpp 32 int vector[100]; local
34 vector[i] = i;
35 CPPUNIT_ASSERT(binary_search(vector, vector + 100, 42));
ptrspec_test.cpp 1 #include <vector>
55 TEST_INSTANCIATE_CONTAINER(vector); variable
83 vector<void*> void_vect;
93 vector<FType> func_vector;
100 vector<MFType> mem_func_vector;
105 vector<int*> pint_vect;
106 vector<int*> pint_vect2;
107 vector<int const*> pcint_vect;
121 vector<int*> pint_vect_from_list(pint_list.begin(), pint_list.end());
229 vector<Func> fs
    [all...]
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
GroupImpl.java 23 import java.util.Vector;
30 private Vector groupMembers;
34 groupMembers = new Vector(50, 100);
84 Vector vector = new Vector(10); local
85 return isMemberRecurse(principal, vector);
93 boolean isMemberRecurse(Principal principal, Vector vector) {
101 vector.addElement(this);
    [all...]
AclImpl.java 34 private Vector zeroSet;
43 zeroSet = new Vector(1, 1);
141 Vector vector = new Vector(20, 20); local
142 for(; enumeration.hasMoreElements(); vector.addElement(enumeration.nextElement()));
147 if(!vector.contains(obj))
148 vector.addElement(obj);
150 return vector.elements();
154 Vector vector = new Vector(20, 20); local
    [all...]
  /external/stlport/src/
locale_impl.h 23 #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;
dll_main.cpp 42 #include <vector>
107 * For the vector class we do not use any MSVC6 workaround even if we export it from
109 * a template method. Moreover the exported class is an instanciation of vector with
126 template class _STLP_CLASS_DECLSPEC _STLP_NON_DBG_NAME(vector)<_Slist_node_base*,
131 template class _STLP_CLASS_DECLSPEC vector<_STLP_PRIV _Slist_node_base*, variable in typeref:class:_STLP_CLASS_DECLSPEC
147 # define _STLP_NON_DBG_VECTOR _STLP_NON_DBG_NAME(vector)
154 template class _STLP_CLASS_DECLSPEC vector<locale::facet*, allocator<locale::facet*> >; variable in typeref:class:_STLP_CLASS_DECLSPEC
167 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(vector)<void*, allocator<void*> >;
  /packages/apps/IM/libwbxml/include/
wbxml_stl.h 24 #include <utils/Vector.h>
26 using android::Vector;
85 class vector: public Vector<T> class in inherits:Vector
90 return Vector<T>::editTop();
94 return Vector<T>::top();
98 Vector<T>::push(val);
102 Vector<T>::pop();
106 return Vector<T>::isEmpty();
113 #include <vector>
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
VectorTest.java 22 import java.util.Vector;
26 * Basic Performance Tests for java.util.Vector
32 private Vector<Integer> mVector;
33 private Vector<String> mStrVector;
39 mVector = new Vector();
40 mStrVector = new Vector();
54 Vector<Integer> vector = new Vector(); local
56 vector.add(i)
70 Vector<Integer> vector = new Vector(); local
87 Vector<Integer> vector = mVector; local
106 Vector<Integer> vector = mVector; local
124 Vector<Integer> vector = mVector; local
142 Vector<Integer> vector = mVector; local
160 Vector<Integer> vector = mVector; local
176 Vector<Integer> vector = mVector; local
194 Vector<Integer> vector = mVector; local
211 Vector<Integer> vector = mVector; local
228 Vector<Integer> vector = new Vector(mVector); local
244 Vector<Integer> vector = new Vector(mVector); local
260 Vector<Integer> vector = new Vector(mVector); local
276 Vector<Integer> vector = new Vector(), vector1 = mVector; local
294 Vector<String> vector = mStrVector; local
320 Vector<Integer> vector = mEmptyVector; local
337 Vector<Integer> vector = mVector; local
354 Vector<Integer> vector = mVector; local
371 Vector<Integer> vector = mVector; local
388 Vector<Integer> vector = mVector; local
405 Vector<Integer> vector = mVector; local
422 Vector<Integer> vector = mVector; local
439 Vector<String> vector = mStrVector; local
456 Vector<Integer> vector = mVector; local
473 Vector<Integer> vector = mVector; local
489 Vector<Integer> vector = mVector; local
507 Vector<Integer> vector = mVector; local
524 Vector<Integer> vector = mVector; local
540 Vector<String> vector = mStrVector; local
    [all...]
  /external/webkit/WebKit/win/
WebKitStatistics.cpp 145 Vector<UChar> vector; local
147 append(vector, String::format("%4u", current->second));
148 vector.append('\t');
149 append(vector, static_cast<String>(current->first));
150 vector.append('\n');
152 *output = BString(String::adopt(vector)).release();
  /external/quake/quake/src/QW/server/
progs.h 28 float vector[3]; member in union:eval_s
  /external/quake/quake/src/WinQuake/
progs.h 28 float vector[3]; member in union:eval_s
  /external/stlport/stlport/stl/
_vector.c 41 { __stl_throw_length_error("vector"); }
45 { __stl_throw_out_of_range("vector"); }
48 # define vector _STLP_PTR_IMPL_NAME(vector) macro
50 # define vector _STLP_NON_DBG_NAME(vector) macro
58 # define __iterator__ _STLP_TYPENAME_ON_RETURN_TYPE vector<_Tp, _Alloc>::iterator
62 void vector<_Tp, _Alloc>::reserve(size_type __n) {
81 void vector<_Tp, _Alloc>::_M_insert_overflow_aux(pointer __pos, const _Tp& __x, const __false_type& /*DO NOT USE!!*/,
108 void vector<_Tp, _Alloc>::_M_insert_overflow(pointer __pos, const _Tp& __x, const __true_type& /*_TrivialCopy* (…)
232 # undef vector macro
    [all...]
_vector.h 51 // The vector base class serves one purpose, its constructor and
101 # define vector _STLP_PTR_IMPL_NAME(vector) macro
103 # define vector _STLP_NON_DBG_NAME(vector) macro
109 class vector : protected _STLP_PRIV _Vector_base<_Tp, _Alloc> class in inherits:_STLP_PRIV_Vector_base,__stlport_class
110 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (vector)
111 , public __stlport_class<vector<_Tp, _Alloc> >
116 typedef vector<_Tp, _Alloc> _Self;
214 explicit vector(const allocator_type& __a = allocator_type() function in class:vector
230 explicit vector(size_type __n) function in class:vector
233 vector(size_type __n, const _Tp& __val, const allocator_type& __a = allocator_type()) function in class:vector
246 vector(const _Self& __x) function in class:vector
253 vector(__move_source<_Self> src) function in class:vector
277 vector(_InputIterator __first, _InputIterator __last, function in class:vector
286 vector(_InputIterator __first, _InputIterator __last) function in class:vector
294 vector(const _Tp* __first, const _Tp* __last, function in class:vector
710 # undef vector macro
    [all...]
  /external/stlport/stlport/stl/debug/
_vector.h 37 #define _STLP_NON_DBG_VECTOR _STLP_PRIV _STLP_NON_DBG_NAME(vector) <_Tp, _Alloc>
98 class vector : class in inherits:_STLP_PRIV__construct_checker,__stlport_class
104 , public __stlport_class<vector<_Tp, _Alloc> >
109 typedef vector<_Tp, _Alloc> _Self;
174 explicit vector(const allocator_type& __a = allocator_type())
178 explicit vector(size_type __n, const _Tp& __x = _Tp(),
180 vector(size_type __n, const _Tp& __x,
186 explicit vector(size_type __n)
190 vector(const _Self& __x)
194 vector(__move_source<_Self> src
    [all...]
  /frameworks/base/core/java/android/gesture/
Instance.java 35 // the feature vector
36 final float[] vector; field in class:Instance
46 vector = sample;
51 float[] sample = vector;
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uvector.h 18 /// \class vector uvector.h ustl.h
21 /// \brief STL vector equivalent.
29 class vector { class in namespace:ustl
44 inline vector (void);
45 inline explicit vector (size_type n);
46 vector (size_type n, const T& v);
47 vector (const vector<T>& v);
48 vector (const_iterator i1, const_iterator i2);
49 ~vector (void) throw()
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
io_apic_32.h 70 __u32 vector : 8, member in struct:IO_APIC_route_entry
  /dalvik/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
mySSLSession.java 8 import java.util.Vector;
158 Vector vector = new Vector(); local
161 vector.addElement(enumeration.nextElement());
163 String as[] = new String[vector.size()];
164 vector.copyInto(as);
  /external/kernel-headers/original/asm-x86/
io_apic_32.h 68 __u32 vector : 8, member in struct:IO_APIC_route_entry
  /external/ppp/pppd/plugins/radius/
sendserver.c 40 unsigned char *buf, *vector, *lenptr; local
107 vector = (char *)auth->vector;
111 memcpy ((char *) md5buf + secretlen, vector,
116 vector = buf;
143 memcpy ((char *) md5buf + secretlen, (char *) auth->vector,
210 unsigned char vector[AUTH_VECTOR_LEN]; local
272 memset((char *) auth->vector, 0, AUTH_VECTOR_LEN);
275 rc_md5_calc (vector, (char *) auth, total_length + secretlen);
276 memcpy ((char *) auth->vector, (char *) vector, AUTH_VECTOR_LEN)
    [all...]
  /external/stlport/stlport/stl/pointers/
_vector.h 29 #define VECTOR_IMPL _STLP_PTR_IMPL_NAME(vector)
37 # define vector _STLP_NON_DBG_NAME(vector) macro
42 class vector class in inherits:__stlport_class
43 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (vector)
44 : public __stlport_class<vector<_Tp, _Alloc> >
47 /* In the vector implementation iterators are pointer which give a number
50 * So vector implementation will always use a qualified void pointer type and
56 typedef vector<_Tp, _Alloc> _Self;
106 explicit vector(const allocator_type& __a = allocator_type() function in class:vector
110 explicit vector(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), function in class:vector
119 explicit vector(size_type __n) function in class:vector
123 vector(const _Self& __x) function in class:vector
127 explicit vector(__move_source<_Self> src) function in class:vector
133 vector(_InputIterator __first, _InputIterator __last, function in class:vector
140 vector(_InputIterator __first, _InputIterator __last) function in class:vector
145 vector(const_iterator __first, const_iterator __last, function in class:vector
235 # undef vector macro
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
AndroidGlyphVector.java 40 public Glyph[] vector; field in class:AndroidGlyphVector
53 // FontRenderContext for this vector.
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
io_apic_32.h 70 __u32 vector : 8, member in struct:IO_APIC_route_entry
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
io_apic_32.h 70 __u32 vector : 8, member in struct:IO_APIC_route_entry
  /dalvik/libcore/luni/src/main/java/java/util/
Vector.java 26 * Vector is an implementation of {@link List}, backed by an array and synchronized.
39 public class Vector<E> extends AbstractList<E> implements List<E>,
45 * The number of elements or the size of the vector.
50 * The elements of the vector.
55 * How many elements should be added to the vector when it is detected that
64 * Constructs a new vector using the default capacity.
66 public Vector() {
71 * Constructs a new vector using the specified capacity.
74 * the initial capacity of the new vector.
78 public Vector(int capacity)
262 Vector<E> vector = (Vector<E>) super.clone(); local
    [all...]

Completed in 466 milliseconds

1 2