/ndk/tests/device/test-gnustl-full/unit/ |
adj_test.cpp | 1 #include <vector> 55 typedef vector<int> IntVector; 68 typedef vector <const char*> CStrVector; 98 vector <int> v(10); 101 vector<int> result(v.size()); 116 vector <int> v(10); 119 vector <int> result(v.size());
|
setdiff_test.cpp | 4 #include <vector> 58 vector<int> v1(10); 60 vector<int> v2(10); 63 vector<int> diff; 110 vector<int> v1(10); 112 vector<int> v2(10); 115 vector<int> diff;
|
/ndk/tests/device/test-stlport/unit/ |
adj_test.cpp | 1 #include <vector> 55 typedef vector<int> IntVector; 68 typedef vector <const char*> CStrVector; 98 vector <int> v(10); 101 vector<int> result(v.size()); 116 vector <int> v(10); 119 vector <int> result(v.size());
|
setdiff_test.cpp | 4 #include <vector> 58 vector<int> v1(10); 60 vector<int> v2(10); 63 vector<int> diff; 110 vector<int> v1(10); 112 vector<int> v2(10); 115 vector<int> diff;
|
/external/pixman/pixman/ |
pixman-matrix.c | 207 /* input vector values must have no more than 31 bits (including sign) 313 /* input vector values must have no more than 31 bits (including sign) 345 /* input vector values must have no more than 31 bits (including sign) 383 struct pixman_vector * vector) 386 tmp.v[0] = vector->vector[0]; 387 tmp.v[1] = vector->vector[1]; 388 tmp.v[2] = vector->vector[2] [all...] |
/frameworks/base/media/jni/ |
android_media_MediaDrm.cpp | 401 static Vector<uint8_t> JByteArrayToVector(JNIEnv *env, jbyteArray const &byteArray) { 402 Vector<uint8_t> vector; local 404 vector.insertAt((size_t)0, length); 405 env->GetByteArrayRegion(byteArray, 0, length, (jbyte *)vector.editArray()); 406 return vector; 409 static jbyteArray VectorToJByteArray(JNIEnv *env, Vector<uint8_t> const &vector) { 410 size_t length = vector.size(); 413 env->SetByteArrayRegion(result, 0, length, (jbyte *)vector.array()) [all...] |
/art/compiler/sea_ir/ir/ |
instruction_nodes.h | 41 static std::vector<sea_ir::InstructionNode*> Create(const art::Instruction* in); 50 virtual std::vector<int> GetDefinitions() const; 52 virtual std::vector<int> GetUses() const; 65 virtual std::vector<InstructionNode*> GetSSAProducers() { 66 std::vector<int> uses = GetUses(); 67 std::vector<InstructionNode*> ssa_uses; 68 for (std::vector<int>::const_iterator cit = uses.begin(); cit != uses.end(); cit++) { 76 std::vector<InstructionNode*>* GetSSAConsumers() { 104 std::vector<InstructionNode*> used_in_; 171 std::vector<int> GetUses() const [all...] |
/external/chromium_org/cc/resources/ |
tile_manager.h | 12 #include <vector> 35 virtual const std::vector<PictureLayerImpl*>& GetPictureLayers() = 0; 98 std::vector<Tile*> returned_shared_tiles; 112 std::vector<PairedPictureLayerIterator> paired_iterators_; 113 std::vector<PairedPictureLayerIterator*> iterator_heap_; 144 std::vector<Tile*> returned_shared_tiles; 158 std::vector<PairedPictureLayerIterator> paired_iterators_; 159 std::vector<PairedPictureLayerIterator*> iterator_heap_; 193 void GetPairedPictureLayers(std::vector<PairedPictureLayer>* layers) const; 195 void InitializeTilesWithResourcesForTesting(const std::vector<Tile*>& tiles) [all...] |
/external/chromium_org/chrome/installer/util/ |
delete_after_reboot_helper_unittest.cc | 53 std::vector<char> buffer; 80 const std::vector<PendingMove>& string_list) { 82 std::vector<PendingMove>::const_iterator iter(string_list.begin()); 91 std::vector<PendingMove> original_pending_moves_; 114 std::vector<PendingMove> string_list; 120 std::vector<char> buffer; 132 std::vector<PendingMove> string_list; 148 std::vector<PendingMove> pending_moves; 159 std::vector<PendingMove>::const_iterator iter(pending_moves.begin()); 184 std::vector<PendingMove>::const_iterator check_iter(pending_moves.begin()) [all...] |
/external/chromium_org/components/autofill/core/browser/ |
autocomplete_history_manager_unittest.cc | 5 #include <vector> 40 MOCK_METHOD1(AddFormFields, void(const std::vector<FormFieldData>&)); 184 const std::vector<base::string16>& autofill_values, 185 const std::vector<base::string16>& autofill_labels, 186 const std::vector<base::string16>& autofill_icons, 187 const std::vector<int>& autofill_unique_ids)); 250 std::vector<base::string16>(), 251 std::vector<base::string16>(), 252 std::vector<base::string16>(), 253 std::vector<int>())) [all...] |
/external/chromium_org/components/favicon_base/ |
favicon_util.cc | 31 std::vector<gfx::ImagePNGRep> SelectFaviconFramesFromPNGsWithoutResizing( 32 const std::vector<favicon_base::FaviconRawBitmapResult>& png_data, 33 const std::vector<float>& favicon_scales, 35 std::vector<gfx::ImagePNGRep> png_reps; 87 const std::vector<SkBitmap>& input_bitmaps, 139 std::vector<float> GetFaviconScales() { 141 std::vector<ui::ScaleFactor> resource_scale_factors = 148 std::vector<float> favicon_scales(1, kScale1x); 164 const std::vector<favicon_base::FaviconRawBitmapResult>& png_data, 165 const std::vector<float>& favicon_scales [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
BisonCSSParser.h | 44 #include "wtf/Vector.h" 102 PassOwnPtr<Vector<double> > parseKeyframeKeyList(const String&); 113 Vector<OwnPtr<CSSParserSelector> >* createFloatingSelectorVector(); 114 PassOwnPtr<Vector<OwnPtr<CSSParserSelector> > > sinkFloatingSelectorVector(Vector<OwnPtr<CSSParserSelector> >*); 134 StyleRuleBase* createStyleRule(Vector<OwnPtr<CSSParserSelector> >* selectors); 171 Vector<OwnPtr<CSSParserSelector> >* reusableSelectorVector() { return &m_reusableSelectorVector; } 279 OwnPtr<Vector<unsigned> > m_lineEndings; 294 Vector<CSSParserSelector*> m_floatingSelectors; 295 Vector<Vector<OwnPtr<CSSParserSelector> >*> m_floatingSelectorVectors [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
hybridvideoengine.h | 32 #include <vector> 69 virtual bool SetRecvCodecs(const std::vector<VideoCodec>& codecs); 71 const std::vector<RtpHeaderExtension>& extensions); 73 virtual bool SetSendCodecs(const std::vector<VideoCodec>& codecs); 77 const std::vector<RtpHeaderExtension>& extensions); 105 bool SelectActiveChannel(const std::vector<VideoCodec>& codecs); 106 void SplitCodecs(const std::vector<VideoCodec>& codecs, 107 std::vector<VideoCodec>* codecs1, 108 std::vector<VideoCodec>* codecs2); 224 const std::vector<VideoCodec>& codecs() const [all...] |
/external/chromium_org/third_party/webrtc/base/ |
json.cc | 124 std::vector<T> *vec) { 148 std::vector<Json::Value>* out) { 153 std::vector<int>* out) { 158 std::vector<unsigned int>* out) { 163 std::vector<std::string>* out) { 168 std::vector<bool>* out) { 173 std::vector<double>* out) { 179 Json::Value VectorToJsonArray(const std::vector<T>& vec) { 188 Json::Value ValueVectorToJsonArray(const std::vector<Json::Value>& in) { 192 Json::Value IntVectorToJsonArray(const std::vector<int>& in) [all...] |
/external/clang/test/SemaCXX/ |
vector.cpp | 7 // Test overloading and function calls with vector types. 27 void f2(char16_e); // expected-note{{no known conversion from 'longlong16_e' (vector of 2 'long long' values) to 'char16_e' (vector of 16 'char' values) for 1st argument}} \ 28 // expected-note{{candidate function not viable: no known conversion from 'convertible_to<longlong16_e>' to 'char16_e' (vector of 16 'char' values) for 1st argument}} 39 // Test the conditional operator with vector types. 54 // Conditional operators with compatible types under -flax-vector-conversions (default) 60 // Test C++ cast'ing of vector types. 88 (void)static_cast<char16_e>(ll16e); // expected-error{{static_cast from 'longlong16_e' (vector of 2 'long long' values) to 'char16_e' (vector of 16 'char' values) is not allowed}} 187 // These 2 are convertable with -flax-vector-conversions (default [all...] |
/external/deqp/framework/referencerenderer/ |
rrShadingContext.hpp | 65 tcu::Vector<T, 4> readPointVarying (const FragmentPacket& packet, const FragmentShadingContext& context, int varyingLoc, int fragNdx) 74 tcu::Vector<T, 4> readLineVarying (const FragmentPacket& packet, const FragmentShadingContext& context, int varyingLoc, int fragNdx) 81 tcu::Vector<T, 4> readTriangleVarying (const FragmentPacket& packet, const FragmentShadingContext& context, int varyingLoc, int fragNdx) 89 tcu::Vector<T, 4> readVarying (const FragmentPacket& packet, const FragmentShadingContext& context, int varyingLoc, int fragNdx) 99 void dFdxLocal (tcu::Vector<T, Size> outFragmentdFdx[4], const tcu::Vector<T, Size> func[4]) 101 const tcu::Vector<T, Size> dFdx[2] = 114 void dFdyLocal (tcu::Vector<T, Size> outFragmentdFdy[4], const tcu::Vector<T, Size> func[4]) 116 const tcu::Vector<T, Size> dFdy[2] [all...] |
/external/libcxx/test/containers/sequences/vector/vector.modifiers/ |
emplace.pass.cpp | 10 // <vector> 18 #include <vector> 63 std::vector<A> c; 64 std::vector<A>::iterator i = c.emplace(c.cbegin(), 2, 3.5); 87 std::vector<A, stack_allocator<A, 7> > c; 88 std::vector<A, stack_allocator<A, 7> >::iterator i = c.emplace(c.cbegin(), 2, 3.5); 112 std::vector<A> c1; 113 std::vector<A> c2; 114 std::vector<A>::iterator i = c1.emplace(c2.cbegin(), 2, 3.5); 120 std::vector<A, min_allocator<A>> c [all...] |
/external/llvm/lib/Target/Mips/ |
MipsISelDAGToDAG.h | 83 /// \brief Select constant vector splats. 85 /// \brief Select constant vector splats whose value fits in a uimm1. 87 /// \brief Select constant vector splats whose value fits in a uimm2. 89 /// \brief Select constant vector splats whose value fits in a uimm3. 91 /// \brief Select constant vector splats whose value fits in a uimm4. 93 /// \brief Select constant vector splats whose value fits in a uimm5. 95 /// \brief Select constant vector splats whose value fits in a uimm6. 97 /// \brief Select constant vector splats whose value fits in a uimm8. 99 /// \brief Select constant vector splats whose value fits in a simm5. 101 /// \brief Select constant vector splats whose value is a power of 2 [all...] |
/external/neven/Embedded/common/src/b_TensorEm/ |
Flt16Vec2D.h | 34 /** 2d vector with floating point */ 58 /** initializes vector */ 61 /** destroys vector */ 80 /** creates vector from 16 bit values */ 83 /** creates vector from 16 bit vactor */ 86 /** creates vector from 32 bit values (automatic adjustment of bbp value) */ 94 /** returns square norm of vector; return bbp is ptrA->bbpE * 2 */ 97 /** returns norm of vector; return bbp is ptrA->bbpE*/ 100 /** normalizes vector; bbpA defines number of bits behind the point */ 103 /** returns normalized vector; bbpA defines number of bits behind the point * [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
prune.h | 39 vector<Weight> *idistance; 42 vector<Weight> *fdistance; 44 PruneOptions(const Weight& t, ArcFilter f, vector<Weight> *id = 0, 45 vector<Weight> *fd = 0) 70 vector<Weight> *idistance = opts.idistance; 71 vector<Weight> *fdistance = opts.fdistance; 74 idistance = new vector<Weight>(ns, Weight::Zero()); 81 fdistance = new vector<Weight>(ns, Weight::Zero()); 87 vector<StateId> dead; 158 vector<Weight> *idistance = opts.idistance [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/ |
emplace.pass.cpp | 10 // <vector> 18 #include <vector> 64 std::vector<A> c; 65 std::vector<A>::iterator i = c.emplace(c.cbegin(), 2, 3.5); 91 std::vector<A, stack_allocator<A, 7> > c; 92 std::vector<A, stack_allocator<A, 7> >::iterator i = c.emplace(c.cbegin(), 2, 3.5); 119 std::vector<A> c1; 120 std::vector<A> c2; 121 std::vector<A>::iterator i = c1.emplace(c2.cbegin(), 2, 3.5); 127 std::vector<A, min_allocator<A>> c [all...] |
/prebuilts/clang/linux-x86/host/3.4/bin/ |
tblgen | |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
IntVector.java | 122 * Append a int onto the vector. 146 * Append several int values onto the vector. 172 * Append several slots onto the vector, but do not set the values. 195 * Inserts the specified node in this vector at the specified index. 196 * Each component in this vector with an index greater or equal to 228 * Inserts the specified node in this vector at the specified index. 229 * Each component in this vector with an index greater or equal to 245 * Removes the first occurrence of the argument from this vector. 246 * If the object is found in this vector, each component in the vector [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
passwords_helper.cc | 44 explicit PasswordStoreConsumerHelper(std::vector<PasswordForm>* result) 48 const std::vector<PasswordForm*>& result) OVERRIDE { 50 for (std::vector<PasswordForm*>::const_iterator it = result.begin(); 62 std::vector<PasswordForm>* result_; 69 void ClearSyncDateField(std::vector<PasswordForm>* forms) { 70 for (std::vector<PasswordForm>::iterator it = forms->begin(); 97 void GetLogins(PasswordStore* store, std::vector<PasswordForm>& matches) { 115 std::vector<PasswordForm> forms; 117 for (std::vector<PasswordForm>::iterator it = forms.begin(); 146 std::vector<PasswordForm> verifier_forms [all...] |
/external/chromium_org/content/common/ |
plugin_list.cc | 102 std::vector<WebPluginInfo>* internal_plugins) { 105 for (std::vector<WebPluginInfo>::iterator it = internal_plugins_.begin(); 132 std::vector<WebPluginMimeType>* parsed_mime_types) { 133 std::vector<std::string> mime_types, file_extensions; 134 std::vector<base::string16> descriptions; 189 std::vector<WebPluginInfo> new_plugins; 198 std::vector<base::FilePath> plugin_paths; 201 for (std::vector<base::FilePath>::const_iterator it = plugin_paths.begin(); 213 std::vector<WebPluginInfo>* plugins, 240 void PluginList::GetPluginPathsToLoad(std::vector<base::FilePath>* plugin_paths [all...] |