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 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_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_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...]
  /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 151 milliseconds