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

  /external/chromium_org/chrome/browser/history/android/
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(),
223 std::vector<SearchRow::ColumnID> projections; local
224 projections.push_back(SearchRow::ID);
227 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_unittest.cc 428 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
430 projections.push_back(HistoryAndBookmarkRow::ID);
431 projections.push_back(HistoryAndBookmarkRow::URL);
432 projections.push_back(HistoryAndBookmarkRow::TITLE);
433 projections.push_back(HistoryAndBookmarkRow::CREATED);
434 projections.push_back(HistoryAndBookmarkRow::LAST_VISIT_TIME);
435 projections.push_back(HistoryAndBookmarkRow::VISIT_COUNT);
436 projections.push_back(HistoryAndBookmarkRow::FAVICON);
437 projections.push_back(HistoryAndBookmarkRow::BOOKMARK);
440 projections, std::string(), std::vector<string16>()
549 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
657 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1292 std::vector<SearchRow::ColumnID> projections; local
1327 std::vector<SearchRow::ColumnID> projections; local
1432 std::vector<SearchRow::ColumnID> projections; local
1535 std::vector<SearchRow::ColumnID> projections; local
1690 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1749 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
1842 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
2012 std::vector<HistoryAndBookmarkRow::ColumnID> projections; local
    [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...]

Completed in 145 milliseconds