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

  /frameworks/base/core/java/android/database/
MergeCursor.java 20 * A convience class that lets you present an array of Cursors as a single linear Cursor.
21 * The schema of the cursors presented is entirely up to the creator of the MergeCursor, and
42 public MergeCursor(Cursor[] cursors)
44 mCursors = cursors;
45 mCursor = cursors[0];
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MultiSourceCorpusTest.java 64 SuggestionCursor... cursors) {
66 for (SuggestionCursor cursor : cursors) {
  /cts/tests/tests/database/src/android/database/cts/
MergeCursorTest.java 100 // if the items are not null, getCount() will return the sum of all cursors' count.
124 " between different single cursors",
134 Cursor[] cursors = new Cursor[2]; local
135 cursors[0] = mDatabase.query(TABLE5_NAME, null, null, null, null, null, null);
136 assertEquals(1, cursors[0].getCount());
138 cursors[1] = mCursors[1];
139 assertTrue(cursors[1].getCount() > 0);
140 MergeCursor mergeCursor = new MergeCursor(cursors);
141 // MergeCursor should points to cursors[0] after moveToFirst.
148 // MergeCursor should points to cursors[1] moveToNext
    [all...]
  /frameworks/base/core/java/com/android/internal/database/
SortCursor.java 25 * A variant of MergeCursor that sorts the cursors being merged. If decent
55 public SortCursor(Cursor[] cursors, String sortcolumn)
57 mCursors = cursors;
112 * is used to avoid having to search all cursors from the start.
256 // All of the cursors may be empty, but they can still return
  /packages/apps/Email/src/com/android/exchange/provider/
GalEmailAddressAdapter.java 333 * errors when multiple cursors are in flight.
339 public MyMergeCursor(Cursor[] cursors) {
340 super(cursors);
  /packages/apps/Music/src/com/android/music/
SortCursor.java 25 * A variant of MergeCursor that sorts the cursors being merged. If decent
55 public SortCursor(Cursor[] cursors, String sortcolumn)
57 mCursors = cursors;
112 * is used to avoid having to search all cursors from the start.
238 // All of the cursors may be empty, but they can still return
  /packages/apps/Gallery3D/src/com/cooliris/cache/
CacheService.java 868 Cursor[] cursors = new Cursor[2]; local
950 Cursor[] cursors = new Cursor[2]; local
1097 final Cursor[] cursors = new Cursor[2]; local
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
SortCursor.java 30 * A variant of MergeCursor that sorts the cursors being merged. If decent
63 public SortCursor(Cursor[] cursors, String sortcolumn, int type, boolean ascending) {
65 mCursors = cursors;
134 * simple cache strategy is used to avoid having to search all cursors
281 // All of the cursors may be empty, but they can still return
  /external/webkit/WebCore/css/
CSSComputedStyleDeclaration.cpp 829 CursorList* cursors = style->cursors(); local
    [all...]
CSSStyleSelector.cpp     [all...]
  /external/webkit/WebCore/page/
EventHandler.cpp 1006 const CursorList* cursors = style->cursors(); local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
AccountFolderList.java 274 * Build the group and child cursors that support the summary views (aka "at a glance").
735 Cursor[] cursors = new Cursor[] { mailboxesCursor, accountsCursor };
736 Cursor mc = new MergeCursor(cursors);
    [all...]
  /external/webkit/WebCore/rendering/style/
RenderStyle.h 587 CursorList* cursors() const { return inherited->cursorData.get(); } function in class:WebCore::RenderStyle
    [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 
  /prebuilt/common/jython/
jython.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 460 milliseconds