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

  /external/chromium_org/chrome/browser/history/android/
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,
106 // |projections| specifies the result columns, can not be empty, otherwise
112 const std::vector<SearchRow::ColumnID>& projections,
264 // Append the specified result columns in |projections| to the given
269 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
272 // Append the specified search result columns in |projections| to the given
275 const std::vector<SearchRow::ColumnID>& projections,
300 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
    [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...]
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_history_provider_service.h 65 // |projections| is the vector of the result columns.
70 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
159 // |projections| specifies the result columns, can not be empty, otherwise
165 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,
  /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 356 const std::vector<HistoryAndBookmarkRow::ColumnID>& projections,
398 const std::vector<SearchRow::ColumnID>& projections,
    [all...]
  /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 752 const std::vector<history::HistoryAndBookmarkRow::ColumnID>& projections,
758 base::Unretained(service()), projections, selection,
    [all...]

Completed in 280 milliseconds