HomeSort by relevance Sort by last modified time
    Searched defs:vector (Results 51 - 75 of 311) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/eigen/Eigen/src/Geometry/
Translation.h 38 /** corresponding vector type */
70 /** Constructs and initialize the translation transformation from a vector of translation coefficients */
71 explicit inline Translation(const VectorType& vector) : m_coeffs(vector) {}
87 const VectorType& vector() const { return m_coeffs; } function in class:Eigen::Translation
88 VectorType& vector() { return m_coeffs; } function in class:Eigen::Translation
132 /** Applies translation to vector */
159 { m_coeffs = other.vector().template cast<Scalar>(); }
  /external/javassist/sample/vector/
VectorAssistant.java 1 package sample.vector;
11 * <ul>import java.util.Vector by sample.vector.VectorAssistant(int)</ul>
17 * import java.util.Vector;
18 * import sample.vector.intVector;
25 * package sample.vector;
27 * public class intVector extends Vector {
39 * <code>sample.vector.Sample</code> and <code>sample.vector.Sample2</code>
44 public final String packageName = "sample.vector."
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 59 GLfloat vector[6]; local
60 vector[SWIZZLE_X] = texel[0];
61 vector[SWIZZLE_Y] = texel[1];
62 vector[SWIZZLE_Z] = texel[2];
63 vector[SWIZZLE_W] = texel[3];
64 vector[SWIZZLE_ZERO] = 0.0F;
65 vector[SWIZZLE_ONE] = 1.0F;
66 colorOut[0] = vector[GET_SWZ(swizzle, 0)];
67 colorOut[1] = vector[GET_SWZ(swizzle, 1)];
68 colorOut[2] = vector[GET_SWZ(swizzle, 2)]
    [all...]
  /external/qemu/target-i386/
svm_helper.c 237 uint8_t vector = event_inj & SVM_EVTINJ_VEC_MASK; local
245 env->exception_index = vector;
251 do_interrupt_x86_hardirq(env, vector, 1);
262 env->exception_index = vector;
270 env->exception_index = vector;
  /external/chromium_org/base/prefs/
pref_member_unittest.cc 193 std::vector<std::string> expected_vector;
231 // Set the vector to an initial good value.
232 std::vector<std::string> expected_vector;
238 std::vector<std::string> vector; local
239 EXPECT_TRUE(subtle::PrefMemberVectorStringUpdate(list, &vector));
240 EXPECT_EQ(expected_vector, vector);
242 // Now try to add an invalid list. |vector| should not be changed.
244 EXPECT_FALSE(subtle::PrefMemberVectorStringUpdate(list, &vector));
245 EXPECT_EQ(expected_vector, vector);
    [all...]
  /external/chromium_org/components/url_matcher/
url_matcher_unittest.cc 35 std::vector<std::string> filter2_content;
49 std::vector<URLMatcherPortFilter::Range> ranges;
467 std::vector<URLMatcherPortFilter::Range> ranges;
545 URLMatcherConditionSet::Vector vector; local
546 vector.push_back(condition_set);
547 matcher.AddConditionSets(vector);
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/
array.h 12 #include <vector>
89 const std::vector<StorageType>& storage() const {
92 operator const std::vector<StorageType>&() const {
100 void Swap(std::vector<StorageType>* other) {
106 typedef std::vector<StorageType> Array::*Testable;
117 std::vector<StorageType> vec_;
122 class TypeConverter<Array<T>, std::vector<E> > {
124 static Array<T> ConvertFrom(const std::vector<E>& input) {
130 static std::vector<E> ConvertTo(const Array<T>& input) {
131 std::vector<E> result
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCollection.h 32 #include "wtf/Vector.h"
54 void namedPropertyEnumerator(Vector<String>& names, ExceptionState&);
96 OwnPtrWillBeMember<WillBeHeapVector<RawPtrWillBeMember<Element> > >& vector = map.add(key.impl(), nullptr).storedValue->value; local
97 if (!vector)
98 vector = adoptPtrWillBeNoop(new WillBeHeapVector<RawPtrWillBeMember<Element> >);
99 vector->append(element);
109 virtual void supportedPropertyNames(Vector<String>& names);
  /external/chromium_org/third_party/WebKit/Source/wtf/
VectorTest.cpp 32 #include "wtf/Vector.h"
39 Vector<int> intVector;
47 Vector<int> intVector;
71 Vector<int> intVector;
77 Vector<int>::iterator it = intVector.begin();
78 Vector<int>::iterator end = intVector.end();
95 Vector<int> intVector;
101 Vector<int>::reverse_iterator it = intVector.rbegin();
102 Vector<int>::reverse_iterator end = intVector.rend();
132 typedef WTF::Vector<OwnPtr<DestructCounter> > OwnPtrVector
137 OwnPtrVector vector; local
    [all...]
  /external/chromium_org/v8/src/
uri.h 19 static INLINE(Vector<const Char> GetCharVector(Handle<String> string));
23 Vector<const uint8_t> GetCharVector(Handle<String> string) {
31 Vector<const uc16> GetCharVector(Handle<String> string) {
54 static INLINE(int UnescapeChar(Vector<const Char> vector,
92 Vector<const Char> vector = GetCharVector<Char>(string); local
95 if (UnescapeChar(vector, i, length, &step) >
114 Vector<const Char> vector = GetCharVector<Char>(string) local
126 Vector<const Char> vector = GetCharVector<Char>(string); local
234 Vector<const Char> vector = GetCharVector<Char>(string); local
262 Vector<const Char> vector = GetCharVector<Char>(string); local
    [all...]
  /external/clang/test/Index/
annotate-nested-name-specifier.cpp 4 struct vector { struct in namespace:outer::inner
14 using outer_alias::inner::vector;
16 struct X_vector : outer_alias::inner::vector<X> {
17 using outer_alias::inner::vector<X>::iterator;
38 struct X2 : outer::inner::vector<T> {
40 using typename outer::inner::vector<type>::iterator;
41 using outer::inner::vector<type>::push_back;
57 t->::outer_alias::inner::template vector<T>::~vector<T>();
100 typedef typename outer_alias::inner::vector<type>::iterator iter_type
    [all...]
  /external/clang/test/SemaCXX/
nested-name-spec-locations.cpp 152 template<typename T> class vector { class in namespace:PR9388::std
155 template<typename T> static void foo(std::vector<T*> &V) {
158 void bar(std::vector<int*> &Blocks) {
  /external/clang/test/SemaTemplate/
deduction.cpp 30 template<typename T, typename Alloc = allocator<T> > struct vector {}; struct
81 int array2[is_same<Replace<vector<_1>, int, float>::type, vector<int> >::value? 1 : -1];
82 int array3[is_same<Replace<vector<const _1>, int, float>::type, vector<const int> >::value? 1 : -1];
83 int array4[is_same<Replace<vector<int, _2>, double, float>::type, vector<int, float> >::value? 1 : -1];
  /external/eigen/blas/
common.h 109 Map<Matrix<T,Dynamic,1>, 0, InnerStride<Dynamic> > vector(T* data, int size, int incr) function
115 Map<Matrix<T,Dynamic,1> > vector(T* data, int size) function
127 if(incx<0) vector(ret,n) = vector(x,n,-incx).reverse();
128 else vector(ret,n) = vector(x,n, incx);
138 if(incx<0) vector(x,n,-incx).reverse() = vector(x_cpy,n);
139 else vector(x,n, incx) = vector(x_cpy,n)
    [all...]
  /external/qemu/hw/intc/
ioapic.c 58 uint8_t vector; local
79 vector = pic_read_irq(isa_pic);
81 vector = entry & 0xff;
84 vector, polarity, trig_mode);
90 void ioapic_set_irq(void *opaque, int vector, int level)
98 if (vector == 0)
99 vector = 2;
101 if (vector >= 0 && vector < IOAPIC_NUM_PINS) {
102 uint32_t mask = 1 << vector;
    [all...]
  /external/stlport/src/
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*> >;
  /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...]
  /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...]
  /external/zlib/src/examples/
enough.c 113 size_t len; /* length of bit vector in char's */
114 char *vec; /* allocated bit vector */
157 vector is of a variable size, and grows as needed to accommodate the visited
255 bit vector to indicate visiting this state. Each (syms,len,left) state
256 has a variable size bit vector indexed by (mem,rem). The bit vector is
260 size_t index; /* index for this state's bit vector */
261 size_t offset; /* offset in this state's bit vector */
263 size_t length; /* length of the bit vector in bytes */
264 char *vector; /* new or enlarged bit vector * local
    [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/ml/bordeaux/service/src/android/bordeaux/services/
LocationCluster.java 72 double[] vector = getLocationVector(location); local
81 newCenter[i] += vector[i] * duration;
116 double[] vector = new double[VECTOR_LENGTH]; local
124 vector[i] = mCenter[i] - dot * cluster.mCenter[i];
125 norm += vector[i] * vector[i];
132 (vector[i] / norm) * Math.sin(radian);
  /ndk/sources/cxx-stl/stlport/src/
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*> >;
  /ndk/sources/cxx-stl/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...]
  /ndk/sources/cxx-stl/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...]
  /ndk/sources/host-tools/make-3.81/
hash.c 291 /* Dump all items into a NULL-terminated vector. Use the
292 user-supplied vector, or malloc one. */
297 void **vector; local
303 vector = vector_0;
307 *vector++ = *slot;
308 *vector = 0;

Completed in 1888 milliseconds

1 23 4 5 6 7 8 91011>>