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

1 2

  /packages/apps/Contacts/src/com/android/contacts/list/
ProfileAndContactsLoader.java 55 List<Cursor> cursors = Lists.newArrayList(); local
57 cursors.add(loadProfile());
60 cursors.add(contactsCursor);
61 return new MergeCursor(cursors.toArray(new Cursor[cursors.size()])) {
  /external/clang/bindings/python/tests/cindex/
util.py 61 """Obtain all cursors from a source object with a specific spelling.
63 This provides a convenient search mechanism to find all cursors with specific
67 If no cursors are found, an empty list is returned.
69 cursors = []
79 cursors.append(cursor)
82 cursors.extend(get_cursors(cursor, spelling))
84 return cursors
test_cursor.py 79 cursors = list(tu.cursor.get_children())
80 assert len(cursors) > 0
82 cursor = cursors[0]
97 cursors = []
100 cursors.append(cursor)
102 assert len(cursors) == 3
103 assert cursors[1].canonical == cursors[2].canonical
236 """Ensure we can map cursors back to tokens."""
  /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 68 SuggestionCursor... cursors) {
70 for (SuggestionCursor cursor : cursors) {
SuggestionCursorUtil.java 138 public static ListSuggestionCursor concat(SuggestionCursor... cursors) {
139 ListSuggestionCursor out = new ListSuggestionCursor(cursors[0].getUserQuery());
140 for (SuggestionCursor cursor : cursors) {
  /cts/tests/tests/database/src/android/database/cts/
MergeCursorTest.java 83 // if the items are not null, getCount() will return the sum of all cursors' count.
105 Cursor[] cursors = new Cursor[2]; local
106 cursors[0] = mDatabase.query(TABLE5_NAME, null, null, null, null, null, null);
107 assertEquals(1, cursors[0].getCount());
109 cursors[1] = mCursors[1];
110 assertTrue(cursors[1].getCount() > 0);
111 MergeCursor mergeCursor = new MergeCursor(cursors);
112 // MergeCursor should points to cursors[0] after moveToFirst.
119 // MergeCursor should points to cursors[1] moveToNext.
145 // Get cursors
    [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.
243 // All of the cursors may be empty, but they can still return
  /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.
243 // All of the cursors may be empty, but they can still return
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 195 Cursor[] cursors = (Cursor[]) results.values; local
196 onDirectoryLoadFinished(constraint, cursors[0], cursors[1]);
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 2615 CXCursor *cursors = 0; local
    [all...]
  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.cpp 1080 CursorList* cursors = style->cursors(); local
    [all...]
CSSStyleSelector.cpp     [all...]
  /external/webkit/Source/WebCore/page/
EventHandler.cpp 1183 const CursorList* cursors = style->cursors(); local
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 634 CursorList* cursors() const { return rareInheritedData->cursorData.get(); } function in class:WebCore::RenderStyle
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 
  /prebuilts/tools/windows/swt/
swt.jar 
  /prebuilts/tools/windows-x86_64/swt/
swt.jar 

Completed in 443 milliseconds

1 2