HomeSort by relevance Sort by last modified time
    Searched refs:vector (Results 251 - 275 of 3497) sorted by null

<<11121314151617181920>>

  /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/stlport/test/unit/
iter_test.cpp 1 #include <vector>
45 vector<const char*> v; // Vector of character strings.
48 typedef vector<const char*> vec;
65 typedef vector<const char*> Vec;
66 Vec v; // Vector of character strings.
86 vector<int> v; // Empty vector of integers.
91 vector<int>::iterator i = v.end();
113 vector<int> v1(6)
    [all...]
vector_test.cpp 5 #include <vector>
71 vector<int> v1; // Empty vector of integers.
78 v1.push_back(42); // Add an integer to the vector.
85 vector<vector<int> > vect(10);
86 vector<vector<int> >::iterator it(vect.begin()), end(vect.end());
98 vector<double> v1; // Empty vector of doubles
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
iter_test.cpp 1 #include <vector>
45 vector<const char*> v; // Vector of character strings.
48 typedef vector<const char*> vec;
65 typedef vector<const char*> Vec;
66 Vec v; // Vector of character strings.
86 vector<int> v; // Empty vector of integers.
91 vector<int>::iterator i = v.end();
113 vector<int> v1(6)
    [all...]
vector_test.cpp 5 #include <vector>
71 vector<int> v1; // Empty vector of integers.
78 v1.push_back(42); // Add an integer to the vector.
85 vector<vector<int> > vect(10);
86 vector<vector<int> >::iterator it(vect.begin()), end(vect.end());
98 vector<double> v1; // Empty vector of doubles
    [all...]
  /ndk/tests/device/test-stlport/unit/
iter_test.cpp 1 #include <vector>
45 vector<const char*> v; // Vector of character strings.
48 typedef vector<const char*> vec;
65 typedef vector<const char*> Vec;
66 Vec v; // Vector of character strings.
86 vector<int> v; // Empty vector of integers.
91 vector<int>::iterator i = v.end();
113 vector<int> v1(6)
    [all...]
vector_test.cpp 5 #include <vector>
71 vector<int> v1; // Empty vector of integers.
78 v1.push_back(42); // Add an integer to the vector.
85 vector<vector<int> > vect(10);
86 vector<vector<int> >::iterator it(vect.begin()), end(vect.end());
98 vector<double> v1; // Empty vector of doubles
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3collections.c 90 static void ANTLR3_CDECL antlr3VectorFree (pANTLR3_VECTOR vector);
91 static void antlr3VectorDel (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
92 static void * antlr3VectorGet (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
93 static void * antrl3VectorRemove (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry);
94 static void antlr3VectorClear (pANTLR3_VECTOR vector);
95 static ANTLR3_UINT32 antlr3VectorAdd (pANTLR3_VECTOR vector, void * element, void (ANTLR3_CDECL *freeptr)(void *));
96 static ANTLR3_UINT32 antlr3VectorSet (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry, void * element, void (ANTLR3_CDECL *freeptr)(void *), ANTLR3_BOOLEAN freeExisting);
97 static ANTLR3_UINT32 antlr3VectorSize (pANTLR3_VECTOR vector);
98 static ANTLR3_BOOLEAN antlr3VectorSwap (pANTLR3_VECTOR vector, ANTLR3_UINT32 entry1, ANTLR3_UINT32 entry2);
103 static void returnVector (pANTLR3_VECTOR_FACTORY factory, pANTLR3_VECTOR vector);
1056 pANTLR3_VECTOR vector; local
1530 ANTLR3_UINT32 vector; local
1640 pANTLR3_VECTOR vector; local
    [all...]
  /external/chromium/chrome/browser/autofill/
form_field.h 9 #include <vector>
89 std::vector<AutofillField*>::const_iterator* field,
94 static bool ParseText(std::vector<AutofillField*>::const_iterator* iter,
99 static bool ParseText(std::vector<AutofillField*>::const_iterator* iter,
105 static bool ParseEmptyText(std::vector<AutofillField*>::const_iterator* iter,
110 static bool ParseLabelText(std::vector<AutofillField*>::const_iterator* iter,
115 static bool ParseEmpty(std::vector<AutofillField*>::const_iterator* iter);
138 static bool ParseText(std::vector<AutofillField*>::const_iterator* iter,
145 std::vector<AutofillField*>::const_iterator* iter,
152 class FormFieldSet : public std::vector<FormField*>
    [all...]
personal_data_manager.h 10 #include <vector>
82 bool ImportFormData(const std::vector<const FormStructure*>& form_structures,
99 void SetProfiles(std::vector<AutofillProfile>* profiles);
103 void SetCreditCards(std::vector<CreditCard>* credit_cards);
146 const std::vector<AutofillProfile*>& profiles();
147 virtual const std::vector<AutofillProfile*>& web_profiles();
148 virtual const std::vector<CreditCard*>& credit_cards();
171 const std::vector<AutofillProfile*>& existing_profiles,
172 std::vector<AutofillProfile>* merged_profiles);
243 std::vector<AutofillProfile*> profiles_
    [all...]
  /external/llvm/tools/bugpoint/
ListReducer.h 20 #include <vector>
44 virtual TestResult doTest(std::vector<ElTy> &Prefix,
45 std::vector<ElTy> &Kept,
52 bool reduceList(std::vector<ElTy> &TheList, std::string &Error) {
53 std::vector<ElTy> empty;
96 std::vector<ElTy> ShuffledList(TheList);
116 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid);
117 std::vector<ElTy> Suffix(TheList.begin()+Mid, TheList.end());
159 std::vector<ElTy> EmptyList;
177 std::vector<ElTy> TestList(TheList)
    [all...]
  /external/compiler-rt/test/Unit/
comparedf2_test.c 37 int test__cmpdf2(const struct TestVector *vector) {
39 if (__eqdf2(vector->a, vector->b) != vector->eqReference) {
41 vector->a, vector->b,
42 __eqdf2(vector->a, vector->b),
43 vector->eqReference);
47 if (__gedf2(vector->a, vector->b) != vector->geReference)
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store.cc 22 void KnockoutSubs(std::vector<S>* subs,
23 std::vector<A>* adds,
25 std::vector<A>* adds_removed) {
30 typename std::vector<A>::iterator add_out = adds->begin();
31 typename std::vector<S>::iterator sub_out = subs->begin();
38 typename std::vector<A>::iterator add_iter = adds->begin();
39 typename std::vector<S>::iterator sub_iter = subs->begin();
70 void RemoveMatchingPrefixes(const std::vector<SBAddPrefix>& removes,
71 std::vector<T>* full_hashes) {
77 typename std::vector<T>::iterator out = full_hashes->begin()
    [all...]
safe_browsing_store.h 10 #include <vector>
142 void SBProcessSubs(std::vector<SBAddPrefix>* add_prefixes,
143 std::vector<SBSubPrefix>* sub_prefixes,
144 std::vector<SBAddFullHash>* add_full_hashes,
145 std::vector<SBSubFullHash>* sub_full_hashes,
151 void SBCheckPrefixMisses(const std::vector<SBAddPrefix>& add_prefixes,
178 virtual bool GetAddPrefixes(std::vector<SBAddPrefix>* add_prefixes) = 0;
182 std::vector<SBAddFullHash>* add_full_hashes) = 0;
212 virtual void GetAddChunks(std::vector<int32>* out) = 0;
215 virtual void GetSubChunks(std::vector<int32>* out) = 0
    [all...]
chunk_range.cc 28 void ChunksToRangeString(const std::vector<int>& chunks, std::string* result) {
30 std::vector<int> sorted_chunks(chunks);
35 std::vector<int>::const_iterator iter = sorted_chunks.begin();
55 void RangesToChunks(const std::vector<ChunkRange>& ranges,
56 std::vector<int>* chunks) {
67 std::vector<ChunkRange>* ranges) {
72 std::vector<std::string> chunk_parts;
76 std::vector<std::string> chunk_ranges;
94 bool IsChunkInRange(int chunk_number, const std::vector<ChunkRange>& ranges) {
  /external/chromium/chrome/browser/bookmarks/
bookmark_index.h 11 #include <vector>
52 std::vector<bookmark_utils::TitleMatch>* results);
59 typedef std::vector<Match> Matches;
64 typedef std::vector<NodeTypedCountPair> NodeTypedCountPairs;
73 // typed count into the vector |node_typed_counts|. |node_typed_counts| is
89 const std::vector<QueryNode*>& query_nodes,
90 std::vector<bookmark_utils::TitleMatch>* results);
121 std::vector<string16> ExtractQueryWords(const string16& query);
  /external/chromium/net/ftp/
ftp_directory_listing_parser_vms_unittest.cc 54 std::vector<string16> lines(GetSingleLineTestCase(good_cases[i].input));
64 std::vector<FtpDirectoryListingEntry> entries;
108 std::vector<string16> lines(GetSingleLineTestCase(bad_cases[i]));
118 std::vector<FtpDirectoryListingEntry> entries;
133 std::vector<string16> lines(
146 std::vector<FtpDirectoryListingEntry> entries;
155 std::vector<FtpDirectoryListingEntry> entries;
ftp_directory_listing_parser_windows.cc 7 #include <vector>
18 bool WindowsDateListingToTime(const std::vector<string16>& columns,
25 std::vector<string16> date_parts;
47 std::vector<string16> time_parts;
78 const std::vector<string16>& lines,
79 std::vector<FtpDirectoryListingEntry>* entries) {
84 std::vector<string16> columns;
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 41 #include <vector>
56 std::vector<std::string> CommandLine;
93 virtual std::vector<CompileCommand> getCompileCommands(
138 /// Will always return a vector with one entry that contains the directory
141 virtual std::vector<CompileCommand> getCompileCommands(
145 /// This is built up to contain a single entry vector to be returned from
147 std::vector<CompileCommand> CompileCommands;
187 virtual std::vector<CompileCommand> getCompileCommands(
207 llvm::StringMap< std::vector<CompileCommandRef> > IndexByFile;
  /external/llvm/include/llvm/CodeGen/
ResourcePriorityQueue.h 40 std::vector<SUnit> *SUnits;
42 /// NumNodesSolelyBlocking - This vector contains, for every node in the
46 std::vector<unsigned> NumNodesSolelyBlocking;
49 std::vector<SUnit*> Queue;
53 std::vector<unsigned> RegPressure;
57 std::vector<unsigned> RegLimit;
71 std::vector<SUnit*> Packet;
86 void initNodes(std::vector<SUnit> &sunits);
  /external/llvm/include/llvm/
Linker.h 19 #include <vector>
52 typedef std::vector<std::pair<std::string,bool> > ItemList;
115 const std::vector<sys::Path>& getLibPaths() const { return LibPaths; }
143 void addPaths(const std::vector<std::string>& paths);
181 const std::vector<sys::Path> & Files ///< Files to link in
207 const std::vector<std::string> & Libraries ///< Libraries to link in
296 std::vector<sys::Path> LibPaths; ///< The library search paths
  /external/openfst/src/include/fst/
topsort.h 25 #include <vector>
26 using std::vector;
46 TopOrderVisitor(vector<StateId> *order, bool *acyclic)
50 finish_ = new vector<StateId>;
76 vector<StateId> *order_;
78 vector<StateId> *finish_; // states in finishing-time order
94 vector<StateId> order;
  /frameworks/base/core/java/android/gesture/
InstanceLearner.java 44 ArrayList<Prediction> classify(int sequenceType, int orientationType, float[] vector) {
51 if (sample.vector.length != vector.length) {
56 distance = GestureUtils.minimumCosineDistance(sample.vector, vector, orientationType);
58 distance = GestureUtils.squaredEuclideanDistance(sample.vector, vector);
  /external/clang/include/clang/Frontend/
FrontendOptions.h 16 #include <vector>
139 std::vector<FrontendInputFile> Inputs;
157 std::vector<std::string> PluginArgs;
160 std::vector<std::string> AddPluginActions;
163 std::vector<std::vector<std::string> > AddPluginArgs;
166 std::vector<std::string> Plugins;
169 std::vector<std::string> ASTMergeFiles;
173 std::vector<std::string> LLVMArgs;
  /cts/suite/audio_quality/lib/include/task/
TaskProcess.h 21 #include <vector>
42 bool parseParams(std::vector<Param>& list, const char* str, bool isInput);
49 bool prepareParams(std::vector<TaskProcess::Param>& list,
86 std::vector<Param> mInput;
87 std::vector<Param> mOutput;

Completed in 698 milliseconds

<<11121314151617181920>>