HomeSort by relevance Sort by last modified time
    Searched full:vector (Results 1101 - 1125 of 20677) sorted by null

<<41424344454647484950>>

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextController.h 34 #include "wtf/Vector.h"
112 Vector<CFIndex, 64> m_coreTextIndicesVector;
116 Vector<CFIndex, 64> m_glyphEndOffsets;
117 Vector<CGGlyph, 64> m_glyphsVector;
119 Vector<CGSize, 64> m_advancesVector;
139 Vector<unsigned, 16> m_runIndices;
140 Vector<unsigned, 16> m_glyphCountFromStartToIndex;
148 Vector<String> m_stringsFor8BitRuns;
149 Vector<UChar, 256> m_smallCapsBuffer;
152 Vector<RetainPtr<CTLineRef> > m_coreTextLines
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
devicemanager.h 33 #include <vector>
88 virtual bool GetAudioInputDevices(std::vector<Device>* devices) = 0;
89 virtual bool GetAudioOutputDevices(std::vector<Device>* devices) = 0;
94 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs) = 0;
111 std::vector<talk_base::WindowDescription>* descriptions) = 0;
115 std::vector<talk_base::DesktopDescription>* descriptions) = 0;
158 virtual bool GetAudioInputDevices(std::vector<Device>* devices);
159 virtual bool GetAudioOutputDevices(std::vector<Device>* devices);
164 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs);
174 std::vector<talk_base::WindowDescription>* descriptions)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine2_unittest.h 32 #include <vector>
42 const std::vector<webrtc::VideoStream>& video_streams);
44 std::vector<webrtc::VideoStream> GetVideoStreams();
52 const std::vector<webrtc::VideoStream>& streams,
62 std::vector<webrtc::VideoStream> video_streams_;
88 void SetVideoCodecs(const std::vector<webrtc::VideoCodec> codecs);
90 std::vector<FakeVideoSendStream*> GetVideoSendStreams();
91 std::vector<FakeVideoReceiveStream*> GetVideoReceiveStreams();
98 std::vector<webrtc::VideoCodec> GetDefaultVideoCodecs();
105 const std::vector<webrtc::VideoStream>& video_streams
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
httpportallocator.h 33 #include <vector>
69 void SetStunHosts(const std::vector<talk_base::SocketAddress>& hosts) {
74 void SetRelayHosts(const std::vector<std::string>& hosts) {
81 const std::vector<talk_base::SocketAddress>& stun_hosts() const {
85 const std::vector<std::string>& relay_hosts() const {
98 std::vector<talk_base::SocketAddress> stun_hosts_;
99 std::vector<std::string> relay_hosts_;
114 const std::vector<talk_base::SocketAddress>& stun_hosts,
115 const std::vector<std::string>& relay_hosts,
143 std::vector<std::string> relay_hosts_
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
kernel.hpp 55 std::vector<uint8_t> input;
56 std::vector<void *> samplers;
57 std::vector<pipe_sampler_view *> sviews;
58 std::vector<pipe_surface *> resources;
59 std::vector<pipe_resource *> g_buffers;
60 std::vector<size_t> g_handles;
99 const std::vector<clover::module::argument> &args);
102 const std::vector<size_t> &grid_offset,
103 const std::vector<size_t> &grid_size,
104 const std::vector<size_t> &block_size)
    [all...]
  /external/chromium_org/third_party/opus/src/silk/
sort.c 41 opus_int32 *a, /* I/O Unsorted / Sorted vector */
42 opus_int *idx, /* O Index vector for the sorted elements */
43 const opus_int L, /* I Vector length */
55 /* Write start indices in index vector */
60 /* Sort vector elements by value, increasing order */
89 opus_int16 *a, /* I/O Unsorted / Sorted vector */
90 opus_int *idx, /* O Index vector for the sorted elements */
91 const opus_int L, /* I Vector length */
103 /* Write start indices in index vector */
108 /* Sort vector elements by value, decreasing order *
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
util.h 9 #include <vector>
51 const base::ListValue& list, std::vector<T>* out) {
69 std::vector<T>* out) {
77 // Creates a new vector containing |list| at |out|. Returns
83 scoped_ptr<std::vector<T> >* out) {
84 out->reset(new std::vector<T>());
97 // Creates a new vector containing |from|.|name| at |out|. Returns
104 scoped_ptr<std::vector<T> >* out) {
141 const std::vector<T>& from,
144 for (typename std::vector<T>::const_iterator it = from.begin()
    [all...]
  /external/chromium_org/ui/gfx/
font_list_impl.h 9 #include <vector>
21 // FontListImpl represents a list of fonts either in the form of Font vector or
36 FontListImpl(const std::vector<std::string>& font_names,
40 // Creates a font list from a Font vector.
41 // All fonts in this vector should have the same style and size.
42 explicit FontListImpl(const std::vector<Font>& fonts);
74 // FontListImpl is initialized by a vector of Font, use the first font's style
81 // Returns the Font vector.
82 const std::vector<Font>& GetFonts() const;
99 // A vector of Font. If FontListImpl is constructed with font descriptio
    [all...]
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialUtils.h 18 * \param[in] poly : the vector of coefficients of the polynomial ordered
20 * e.g. \f$ 1 + 3x^2 \f$ is stored as a vector \f$ [ 1, 0, 3 ] \f$.
39 * \param[in] poly : the vector of coefficients of the polynomial ordered
41 * e.g. \f$ 1 + 3x^2 \f$ is stored as a vector \f$ [ 1, 0, 3 ] \f$.
66 * \param[in] poly : the vector of coefficients of the polynomial ordered
68 * e.g. \f$ 1 + 3x^2 \f$ is stored as a vector \f$ [ 1, 0, 3 ] \f$.
92 * \param[in] poly : the vector of coefficients of the polynomial ordered
94 * e.g. \f$ 1 + 3x^2 \f$ is stored as a vector \f$ [ 1, 0, 3 ] \f$.
119 * If RootVector is a vector of complexes, Polynomial should also be a vector
    [all...]
  /external/libcxx/test/containers/sequences/vector.bool/
iterators.pass.cpp 10 // <vector>
19 #include <vector>
29 typedef std::vector<T> C;
38 typedef std::vector<T> C;
47 typedef std::vector<T> C;
57 typedef std::vector<T> C;
64 typedef std::vector<T, min_allocator<T>> C;
73 typedef std::vector<T, min_allocator<T>> C;
82 typedef std::vector<T, min_allocator<T>> C;
92 typedef std::vector<T, min_allocator<T>> C
    [all...]
  /external/libopus/silk/
sort.c 41 opus_int32 *a, /* I/O Unsorted / Sorted vector */
42 opus_int *idx, /* O Index vector for the sorted elements */
43 const opus_int L, /* I Vector length */
55 /* Write start indices in index vector */
60 /* Sort vector elements by value, increasing order */
89 opus_int16 *a, /* I/O Unsorted / Sorted vector */
90 opus_int *idx, /* O Index vector for the sorted elements */
91 const opus_int L, /* I Vector length */
103 /* Write start indices in index vector */
108 /* Sort vector elements by value, decreasing order *
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.hpp 55 std::vector<uint8_t> input;
56 std::vector<void *> samplers;
57 std::vector<pipe_sampler_view *> sviews;
58 std::vector<pipe_surface *> resources;
59 std::vector<pipe_resource *> g_buffers;
60 std::vector<size_t> g_handles;
99 const std::vector<clover::module::argument> &args);
102 const std::vector<size_t> &grid_offset,
103 const std::vector<size_t> &grid_size,
104 const std::vector<size_t> &block_size)
    [all...]
  /frameworks/base/docs/html/training/material/
drawables.jd 11 <li><a href="#VectorDrawables">Create Vector Drawables</a></li>
26 <li>Vector drawables</li>
84 <h2 id="VectorDrawables">Create Vector Drawables</h2>
86 <p>In Android 5.0 (API Level 21) and above, you can define vector drawables, which scale without
87 losing definition. You need only one asset file for a vector image, as opposed to an asset file for
88 each screen density in the case of bitmap images. To create a vector image, you define the details
89 of the shape inside a <code>&lt;vector&gt;</code> XML element.</p>
91 <p>The following example defines a vector image with the shape of a heart:</p>
95 &lt;vector xmlns:android="http://schemas.android.com/apk/res/android"
112 &lt;/vector>
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
iterators.pass.cpp 10 // <vector>
19 #include <vector>
29 typedef std::vector<T> C;
38 typedef std::vector<T> C;
47 typedef std::vector<T> C;
57 typedef std::vector<T> C;
64 typedef std::vector<T, min_allocator<T>> C;
73 typedef std::vector<T, min_allocator<T>> C;
82 typedef std::vector<T, min_allocator<T>> C;
92 typedef std::vector<T, min_allocator<T>> C
    [all...]
  /art/compiler/
oat_writer.h 79 OatWriter(const std::vector<const DexFile*>& dex_files,
108 const std::vector<DebugInfo>& GetCFIMethodInfo() const {
175 std::vector<uint32_t> methods_offsets_;
184 const std::vector<CompiledMethod*>& compiled_methods,
207 std::vector<CompiledMethod*> compiled_methods_;
213 std::vector<uint32_t> oat_method_offsets_offsets_from_oat_class_;
225 // bit vector indexed by ClassDef method index. When
237 std::vector<OatMethodOffsets> method_offsets_;
238 std::vector<OatQuickMethodHeader> method_headers_;
244 std::vector<DebugInfo> method_info_
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative/
rules_registry.cc 36 const std::vector<linked_ptr<extensions::RulesRegistry::Rule> >& rules) {
43 std::vector<linked_ptr<extensions::RulesRegistry::Rule> > RulesFromValue(
45 std::vector<linked_ptr<extensions::RulesRegistry::Rule> > rules;
97 const std::vector<linked_ptr<Rule> >& rules) {
101 for (std::vector<linked_ptr<Rule> >::const_iterator i =
117 for (std::vector<linked_ptr<Rule> >::const_iterator i =
130 const std::vector<linked_ptr<Rule> >& rules) {
143 const std::vector<std::string>& rule_identifiers) {
151 for (std::vector<std::string>::const_iterator i = rule_identifiers.begin();
191 const std::vector<std::string>& rule_identifiers
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_external_delegate_unittest.cc 5 #include <vector>
59 const std::vector<base::string16>& values,
60 const std::vector<base::string16>& labels,
61 const std::vector<base::string16>& icons,
62 const std::vector<int>& identifiers,
66 void(const std::vector<base::string16>& values,
67 const std::vector<base::string16>& lables));
153 std::vector<base::string16> autofill_item;
155 std::vector<int> autofill_ids;
177 std::vector<base::string16> data_list_items
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 25 #include <vector>
191 // A copy on write vector.
192 // The vector can be in one of three states:
205 std::vector<T> Vect;
217 // Returns true if this holds a valid vector.
220 // Returns true if this vector is writable.
223 // If this vector is not valid, initialize it to a valid vector.
230 // Destroy this vector; thus making it invalid.
241 // Make this vector writable, creating a copy if needed
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
vector.hpp 9 // Preprocessed version of "boost/mpl/vector.hpp" header
22 struct vector;
27 struct vector< struct in namespace:boost::mpl
39 struct vector< struct in namespace:boost::mpl
51 struct vector< struct in namespace:boost::mpl
63 struct vector< struct in namespace:boost::mpl
75 struct vector< struct in namespace:boost::mpl
87 struct vector< struct in namespace:boost::mpl
100 struct vector< struct in namespace:boost::mpl
113 struct vector< struct in namespace:boost::mpl
126 struct vector< struct in namespace:boost::mpl
139 struct vector< struct in namespace:boost::mpl
152 struct vector< struct in namespace:boost::mpl
166 struct vector< struct in namespace:boost::mpl
180 struct vector< struct in namespace:boost::mpl
194 struct vector< struct in namespace:boost::mpl
208 struct vector< struct in namespace:boost::mpl
222 struct vector< struct in namespace:boost::mpl
239 struct vector< struct in namespace:boost::mpl
257 struct vector< struct in namespace:boost::mpl
275 struct vector< struct in namespace:boost::mpl
293 struct vector< struct in namespace:boost::mpl
313 struct vector struct in namespace:boost::mpl
    [all...]
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
vec4.js 24 * @class 4 Dimensional Vector
32 * @returns {vec4} a new 4D vector
44 * Creates a new vec4 initialized with values from an existing vector
46 * @param {vec4} a vector to clone
47 * @returns {vec4} a new 4D vector
65 * @returns {vec4} a new 4D vector
79 * @param {vec4} out the receiving vector
80 * @param {vec4} a the source vector
94 * @param {vec4} out the receiving vector
112 * @param {vec4} out the receiving vector
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/ppc/
DNBArchImpl.cpp 352 { "vr0" , Vector, 16, VectorOfFloat32 },
353 { "vr1" , Vector, 16, VectorOfFloat32 },
354 { "vr2" , Vector, 16, VectorOfFloat32 },
355 { "vr3" , Vector, 16, VectorOfFloat32 },
356 { "vr4" , Vector, 16, VectorOfFloat32 },
357 { "vr5" , Vector, 16, VectorOfFloat32 },
358 { "vr6" , Vector, 16, VectorOfFloat32 },
359 { "vr7" , Vector, 16, VectorOfFloat32 },
360 { "vr8" , Vector, 16, VectorOfFloat32 },
361 { "vr9" , Vector, 16, VectorOfFloat32 }
    [all...]
  /external/llvm/test/Transforms/InstCombine/
2009-02-20-InstCombine-SROA.ll 8 %"struct.__gnu_cxx::__normal_iterator<int*,std::vector<int, std::allocator<int> > >" = type { i32* }
15 %"struct.std::vector<int,std::allocator<int> >" = type { %"struct.std::_Vector_base<int,std::allocator<int> >" }
17 define i32* @_Z3fooRSt6vectorIiSaIiEE(%"struct.std::vector<int,std::allocator<int> >"* %X) {
19 %0 = alloca %"struct.__gnu_cxx::__normal_iterator<int*,std::vector<int, std::allocator<int> > >"
20 %__first_addr.i.i = alloca %"struct.__gnu_cxx::__normal_iterator<int*,std::vector<int, std::allocator<int> > >"
21 %__last_addr.i.i = alloca %"struct.__gnu_cxx::__normal_iterator<int*,std::vector<int, std::allocator<int> > >"
24 %__first_addr.i = alloca %"struct.__gnu_cxx::__normal_iterator<int*,std::vector<int, std::allocator<int> > >"
26 %3 = alloca %"struct.__gnu_cxx::__normal_iterator<int*,std::vector<int, std::allocator<int> > >"
30 %5 = getelementptr %"struct.std::vector<int,std::allocator<int> >"* %X, i32 0, i32 0
34 %9 = getelementptr %"struct.__gnu_cxx::__normal_iterator<int*,std::vector<int, std::allocator<int> > >"* %3, i32 0, i32
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
vector.tcc 0 // Vector implementation (out of line) -*- C++ -*-
51 /** @file bits/vector.tcc
53 * Do not attempt to use it directly. @headername{vector}
65 vector<_Tp, _Alloc>::
69 __throw_length_error(__N("vector::reserve"));
91 vector<_Tp, _Alloc>::
106 typename vector<_Tp, _Alloc>::iterator
107 vector<_Tp, _Alloc>::
137 typename vector<_Tp, _Alloc>::iterator
138 vector<_Tp, _Alloc>:
    [all...]
  /cts/tests/tests/graphics/res/drawable/
animation_vector_drawable_grouping_1.xml 16 <animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
26 </animated-vector
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/
README.md 6 These types of applications demand high performance vector and matrix math,
10 glMatrix is designed to perform vector and matrix operations stupidly fast! By

Completed in 934 milliseconds

<<41424344454647484950>>