HomeSort by relevance Sort by last modified time
    Searched refs:projections (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/v8/src/compiler/
node.cc 20 void Node::CollectProjections(NodeVector* projections) {
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;
node.h 60 void CollectProjections(ZoneVector<Node*>* projections);
  /external/chromium_org/chrome/browser/history/
history_backend_android.cc 20 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,
history_backend.h 314 // |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,
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_provider_backend.h 60 // 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...]
android_provider_backend_unittest.cc 424 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, std::string(), std::vector<base::string16>()
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...]
android_history_provider_service_unittest.cc 164 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,
sqlite_cursor_unittest.cc 178 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,
android_history_provider_service.h 53 // |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,
android_provider_backend.cc 205 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.end(); ++i)
965 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
    [all...]
android_history_provider_service.cc 23 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
39 projections,
265 const std::vector<history::SearchRow::ColumnID>& projections,
281 projections,
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 56 * Each row is then populated with columns that are also defined as XPath-like projections. These
57 * projections fetch attributes values or text in the matching row node or its children.
123 * <p>Defining the projections as <code>/title</code>, <code>/author</code> and <code>@id</code>
340 public XMLCursor(String selection, String[] projections) {
341 super(projections);
342 // The first column in projections is used for the _ID
343 mNumberOfProjections = projections.length - 1;
345 createProjectionPattern(projections);
353 private void createProjectionPattern(String[] projections) {
362 String projection = projections[i + 1]; // +1 to skip the _ID colum
    [all...]
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.cc 761 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
768 projections,
    [all...]

Completed in 689 milliseconds