/external/chromium_org/chrome/browser/history/ |
history_backend_android.cc | 26 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, 36 projections, selection, selection_args, sort_order); 168 const std::vector<SearchRow::ColumnID>& projections, 177 statement = android_provider_backend_->QuerySearchTerms(projections,
|
history_backend.h | 335 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, 379 const std::vector<SearchRow::ColumnID>& projections, [all...] |
/external/chromium_org/chrome/browser/history/android/ |
android_provider_backend_unittest.cc | 426 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local 428 projections.push_back(HistoryAndBookmarkRow::ID); 429 projections.push_back(HistoryAndBookmarkRow::URL); 430 projections.push_back(HistoryAndBookmarkRow::TITLE); 431 projections.push_back(HistoryAndBookmarkRow::CREATED); 432 projections.push_back(HistoryAndBookmarkRow::LAST_VISIT_TIME); 433 projections.push_back(HistoryAndBookmarkRow::VISIT_COUNT); 434 projections.push_back(HistoryAndBookmarkRow::FAVICON); 435 projections.push_back(HistoryAndBookmarkRow::BOOKMARK); 438 projections, std::string(), std::vector<base::string16>() 546 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local 653 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local 1281 std::vector<SearchRow::ColumnID> projections; local 1316 std::vector<SearchRow::ColumnID> projections; local 1420 std::vector<SearchRow::ColumnID> projections; local 1522 std::vector<SearchRow::ColumnID> projections; local 1675 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local 1733 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local 1826 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local 1995 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local [all...] |
android_history_provider_service_unittest.cc | 168 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local 169 projections.push_back(HistoryAndBookmarkRow::ID); 172 service_->QueryHistoryAndBookmarks(projections, std::string(), 224 std::vector<SearchRow::ColumnID> projections; local 225 projections.push_back(SearchRow::ID); 228 service_->QuerySearchTerms(projections, std::string(),
|
sqlite_cursor_unittest.cc | 174 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local 175 projections.push_back(HistoryAndBookmarkRow::URL); 176 projections.push_back(HistoryAndBookmarkRow::LAST_VISIT_TIME); 177 projections.push_back(HistoryAndBookmarkRow::VISIT_COUNT); 178 projections.push_back(HistoryAndBookmarkRow::FAVICON); 181 service_->QueryHistoryAndBookmarks(projections, std::string(),
|
android_provider_backend.cc | 138 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, 142 if (projections.empty()) 152 return QueryHistoryAndBookmarksInternal(projections, selection, 495 const std::vector<SearchRow::ColumnID>& projections, 499 if (projections.empty()) 507 AppendSearchResultColumn(projections, &sql); 851 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, 854 // Attach the projections 858 projections.begin(); i != projections.end(); ++i) 953 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local [all...] |
android_provider_backend.h | 59 // the |projections| is empty. 61 // |projections| is the vector of the result columns. 66 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, 108 // |projections| specifies the result columns, can not be empty, otherwise 114 const std::vector<SearchRow::ColumnID>& projections, 267 // Append the specified result columns in |projections| to the given 272 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, 275 // Append the specified search result columns in |projections| to the given 278 const std::vector<SearchRow::ColumnID>& projections, 303 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections, [all...] |
android_history_provider_service.h | 65 // |projections| is the vector of the result columns. 70 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections, 161 // |projections| specifies the result columns, can not be empty, otherwise 167 const std::vector<history::SearchRow::ColumnID>& projections,
|
android_history_provider_service.cc | 23 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections, 36 projections, selection, selection_args, sort_order); 216 const std::vector<history::SearchRow::ColumnID>& projections, 228 &HistoryBackend::QuerySearchTerms, NULL, request, 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...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/ |
NinePatchedImageTest.java | 774 Projection[][] projections = null; local 775 projections = image.getProjections(width, height, projections); 777 assertEquals(chunks.length, projections.length); 779 assertEquals(chunks[i].length, projections[i].length); 782 for (int y = 0; y < projections.length; y++) { 783 for (int x = 0; x < projections[y].length; x++) { 784 assertEquals(projections[y][x].src, chunks[y][x].rect); 788 if (projections[y][x].chunk.type == Chunk.TYPE_FIXED) { 789 assertEquals(projections[y][x].dest.width, chunks[y][x].rect.width) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/ |
NinePatchedImage.java | 174 private static final void recycleProjections(Projection[][] projections, List<Projection> bin) { 175 int yLen = projections.length; 178 xLen = projections[0].length; 184 bin.add(projections[y][x]); 186 projections[y][x] = null; 717 public Projection[][] getProjections(int width, int height, Projection[][] projections) { 730 if (projections == null) { 731 projections = new Projection[lenY][lenX]; 733 int y = projections.length; 734 int x = projections[0].length [all...] |
/external/chromium_org/chrome/browser/android/provider/ |
chrome_browser_provider.cc | 753 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections, 759 base::Unretained(service()), projections, selection, [all...] |