Searched refs:vector (Results 1 - 25 of 107) sorted by relevance

12345

/frameworks/base/tools/localize/
H A Dres_check.h6 #include <vector>
10 int do_rescheck(const vector<string>& files);
H A Dxmb.h5 #include <vector>
9 int do_xlb_export(const string& outFile, const vector<string>& resFiles);
H A DPerforce.h5 #include <vector>
14 const vector<string>& apps, vector<string>* result,
19 static int EditFiles(const vector<string>& filename, bool printOnFailure);
20 static int AddFiles(const vector<string>& files, bool printOnFailure);
21 static int DeleteFiles(const vector<string>& files, bool printOnFailure);
H A Dlocalize.h23 vector<string> apps;
24 vector<Reject> reject;
33 const vector<string>& configs);
34 int select_files(vector<string> *resFiles, const string& config,
36 int select_files(vector<vector<string> > *allResFiles, const vector<string>& configs,
H A Dmerge_res_and_xliff.h11 int do_merge(const vector<string>& xliffFilenames);
H A DXMLHandler.h8 #include <vector>
37 static string Find(const vector<XMLAttribute>& list,
48 void AddToAttributes(vector<XMLAttribute>* attrs) const;
67 const vector<XMLAttribute>& attrs, int pretty);
90 inline const vector<XMLAttribute>& Attributes() const { return m_attrs; }
91 inline vector<XMLAttribute>& EditAttributes() { return m_attrs; }
92 inline const vector<XMLNode*>& Children() const { return m_children; }
93 inline vector<XMLNode*>& EditChildren() { return m_children; }
94 vector<XMLNode*> GetElementsByName(const string& ns, const string& name) const;
118 vector<XMLAttribut
[all...]
H A DXMLNode.h14 static string Find(const vector<XMLAttribute>& list,
H A DPerforce_test.cpp16 vector<string> results;
17 vector<string> apps;
/frameworks/base/tools/aidl/
H A Dsearch_path.h7 #include <vector>
19 void set_import_paths(const vector<string>& importPaths);
H A Doptions.h6 #include <vector>
20 vector<string> importPaths;
21 vector<string> preprocessedFiles;
28 vector<string> filesToPreprocess;
H A Dsearch_path.cpp10 static vector<string> g_importPaths;
13 set_import_paths(const vector<string>& importPaths)
32 vector<string>& paths = g_importPaths;
33 for (vector<string>::iterator it=paths.begin(); it!=paths.end(); it++) {
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Ddct64.h61 void pv_split_LC(Int32 *vector,
73 void pv_split_z(Int32 *vector);
/frameworks/base/libs/hwui/utils/
H A DSortedListImpl.cpp84 ssize_t SortedListImpl::merge(const VectorImpl& vector) { argument
86 if (!vector.isEmpty()) {
87 const void* buffer = vector.arrayImpl();
89 size_t s = vector.size();
100 ssize_t SortedListImpl::merge(const SortedListImpl& vector) { argument
101 // we've merging a sorted vector... nice!
103 if (!vector.isEmpty()) {
105 if (do_compare(vector.itemLocation(vector.size() - 1), arrayImpl()) <= 0) {
106 err = VectorImpl::insertVectorAt(static_cast<const VectorImpl&> (vector),
[all...]
H A DSortedListImpl.h36 ssize_t merge(const VectorImpl& vector);
37 ssize_t merge(const SortedListImpl& vector);
52 ssize_t insertVectorAt(const VectorImpl& vector, size_t index);
53 ssize_t appendVector(const VectorImpl& vector);
/frameworks/compile/linkloader/include/
H A DELFSectionStrTab.h23 #include <vector>
32 std::vector<char> buf;
H A DELFSectionRelTable.h24 #include <vector>
32 std::vector<ELFRelocTy *> table;
H A DELFSectionHeaderTable.h25 #include <vector>
34 std::vector<ELFSectionHeaderTy *> table;
/frameworks/base/core/java/android/gesture/
H A DInstanceLearner.java44 ArrayList<Prediction> classify(int sequenceType, int orientationType, float[] vector) { argument
51 if (sample.vector.length != vector.length) {
56 distance = GestureUtils.minimumCosineDistance(sample.vector, vector, orientationType);
58 distance = GestureUtils.squaredEuclideanDistance(sample.vector, vector);
/frameworks/base/media/jni/
H A Dandroid_media_Utils.h34 KeyedVector<String8, String8>* vector);
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DMCCacheWriter.h27 #include <vector>
38 std::vector<std::pair<char const *, size_t> > mStringPool;
52 std::vector<std::string> varNameList;
53 std::vector<std::string> funcNameList;
H A DScriptCompiled.h29 #include <vector>
54 std::vector<std::string> mExportVarsName;
55 std::vector<std::string> mExportFuncsName;
125 void getExportVarNameList(std::vector<std::string> &varList);
127 void getExportFuncNameList(std::vector<std::string> &funcList);
139 std::vector<char const *> const & getUserDefinedExternalSymbols() const {
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.h20 #include <vector>
38 typedef std::vector<Type*> TypeList;
41 typedef std::vector<std::pair<const Value*, unsigned> > ValueList;
56 std::vector<AttrListPtr> Attributes;
68 std::vector<const BasicBlock*> BasicBlocks;
117 const std::vector<const BasicBlock*> &getBasicBlocks() const {
120 const std::vector<AttrListPtr> &getAttributes() const {
/frameworks/compile/slang/
H A Dslang.h22 #include <vector>
99 std::vector<std::string> const &Features);
133 std::vector<std::string> mAdditionalDepTargets;
134 std::vector<std::string> mGeneratedFileNames;
144 std::vector<std::string> mIncludePaths;
176 const std::vector<std::string> &Features);
189 void setIncludePaths(const std::vector<std::string> &IncludePaths) {
208 std::vector<std::string> const &AdditionalDepTargets) {
/frameworks/ex/variablespeed/jni/
H A Ddecode_buffer.h23 #include <vector>
49 // This vector isn't ideal because we perform a number of queue-like
52 // vector, and therefore it's not good enough to use a std::queue.
54 std::vector<int16*> data_;
H A Dring_buffer.h20 #include <vector>
102 std::vector<int64> readers_;

Completed in 301 milliseconds

12345