Searched refs:projections (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/v8/src/compiler/
H A Dnode.cc20 void Node::CollectProjections(NodeVector* projections) { argument
21 for (size_t i = 0; i < projections->size(); i++) {
22 (*projections)[i] = NULL;
27 DCHECK_LT(index, projections->size());
28 DCHECK_EQ(NULL, (*projections)[index]);
29 (*projections)[index] = *i;
H A Dnode.h60 void CollectProjections(ZoneVector<Node*>* projections);
/external/chromium_org/chrome/browser/history/
H A Dhistory_backend_android.cc20 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
27 projections, selection, selection_args, sort_order);
123 const std::vector<SearchRow::ColumnID>& projections,
129 statement = android_provider_backend_->QuerySearchTerms(projections,
19 QueryHistoryAndBookmarks( const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, const std::string& selection, const std::vector<base::string16>& selection_args, const std::string& sort_order) argument
122 QuerySearchTerms( const std::vector<SearchRow::ColumnID>& projections, const std::string& selection, const std::vector<base::string16>& selection_args, const std::string& sort_order) argument
H A Dhistory_backend.h314 // |projections| is the vector of the result columns.
319 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
381 // |projections| specifies the result columns.
386 const std::vector<SearchRow::ColumnID>& projections,
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_provider_backend_unittest.cc424 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
426 projections.push_back(HistoryAndBookmarkRow::ID);
427 projections.push_back(HistoryAndBookmarkRow::URL);
428 projections.push_back(HistoryAndBookmarkRow::TITLE);
429 projections.push_back(HistoryAndBookmarkRow::CREATED);
430 projections.push_back(HistoryAndBookmarkRow::LAST_VISIT_TIME);
431 projections.push_back(HistoryAndBookmarkRow::VISIT_COUNT);
432 projections.push_back(HistoryAndBookmarkRow::FAVICON);
433 projections.push_back(HistoryAndBookmarkRow::BOOKMARK);
436 projections, st
547 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
657 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1306 std::vector<SearchRow::ColumnID> projections; local
1344 std::vector<SearchRow::ColumnID> projections; local
1451 std::vector<SearchRow::ColumnID> projections; local
1556 std::vector<SearchRow::ColumnID> projections; local
1718 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1779 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1862 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
2040 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
[all...]
H A Dandroid_history_provider_service_unittest.cc164 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
165 projections.push_back(HistoryAndBookmarkRow::ID);
169 projections,
234 std::vector<SearchRow::ColumnID> projections; local
235 projections.push_back(SearchRow::ID);
239 projections,
H A Dsqlite_cursor_unittest.cc178 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
179 projections.push_back(HistoryAndBookmarkRow::URL);
180 projections.push_back(HistoryAndBookmarkRow::LAST_VISIT_TIME);
181 projections.push_back(HistoryAndBookmarkRow::VISIT_COUNT);
182 projections.push_back(HistoryAndBookmarkRow::FAVICON);
186 projections,
H A Dandroid_provider_backend.h60 // the |projections| is empty.
62 // |projections| is the vector of the result columns.
67 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
109 // |projections| specifies the result columns, can not be empty, otherwise
115 const std::vector<SearchRow::ColumnID>& projections,
260 // Append the specified result columns in |projections| to the given
265 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
268 // Append the specified search result columns in |projections| to the given
271 const std::vector<SearchRow::ColumnID>& projections,
296 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
[all...]
H A Dandroid_history_provider_service.h53 // |projections| is the vector of the result columns.
58 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
157 // |projections| specifies the result columns, can not be empty, otherwise
163 const std::vector<history::SearchRow::ColumnID>& projections,
H A Dandroid_provider_backend.cc205 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
209 if (projections.empty())
219 return QueryHistoryAndBookmarksInternal(projections, selection,
505 const std::vector<SearchRow::ColumnID>& projections,
509 if (projections.empty())
517 AppendSearchResultColumn(projections, &sql);
863 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
866 // Attach the projections
870 projections.begin(); i != projections
204 QueryHistoryAndBookmarks( const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, const std::string& selection, const std::vector<base::string16>& selection_args, const std::string& sort_order) argument
504 QuerySearchTerms( const std::vector<SearchRow::ColumnID>& projections, const std::string& selection, const std::vector<base::string16>& selection_args, const std::string& sort_order) argument
862 AppendBookmarkResultColumn( const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, std::string* result_column) argument
938 AppendSearchResultColumn( const std::vector<SearchRow::ColumnID>& projections, std::string* result_column) argument
965 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1090 QueryHistoryAndBookmarksInternal( const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, const std::string& selection, const std::vector<base::string16>& selection_args, const std::string& sort_order) argument
[all...]
H A Dandroid_history_provider_service.cc23 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
39 projections,
265 const std::vector<history::SearchRow::ColumnID>& projections,
281 projections,
22 QueryHistoryAndBookmarks( const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections, const std::string& selection, const std::vector<base::string16>& selection_args, const std::string& sort_order, const QueryCallback& callback, base::CancelableTaskTracker* tracker) argument
264 QuerySearchTerms( const std::vector<history::SearchRow::ColumnID>& projections, const std::string& selection, const std::vector<base::string16>& selection_args, const std::string& sort_order, const QueryCallback& callback, base::CancelableTaskTracker* tracker) argument
/external/chromium_org/chrome/browser/android/provider/
H A Dchrome_browser_provider.cc761 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
768 projections,
970 const std::vector<history::SearchRow::ColumnID>& projections,
977 projections,
760 Run( const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections, const std::string& selection, const std::vector<base::string16>& selection_args, const std::string& sort_order) argument
969 Run( const std::vector<history::SearchRow::ColumnID>& projections, const std::string& selection, const std::vector<base::string16>& selection_args, const std::string& sort_order) argument

Completed in 6520 milliseconds