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

1 2

  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
SuggestionsProvider.java 93 ArrayList<Cursor> cursors = new ArrayList<Cursor>(); local
98 cursors.add(c);
102 cursors.add(new ContactsCursor().query(query));
105 if (cursors.size() > 0) {
106 mergeCursor = new MergeCursor(cursors.toArray(new Cursor[cursors.size()]));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ProfileAndContactsLoader.java 55 List<Cursor> cursors = Lists.newArrayList(); local
57 cursors.add(loadProfile());
60 // correctly handles null cursors.
68 cursors.add(contactsCursor);
69 return new MergeCursor(cursors.toArray(new Cursor[cursors.size()])) {
  /external/chromium_org/ui/base/cursor/
cursors_aura.cc 30 const CursorData* cursors; member in struct:ui::__anon21245::CursorSet
80 // The 2x hotspots should be double of the 1x, even though the cursors are
144 // TODO(yoshiki): Replace animated cursors with big assets. crbug.com/247254
189 SearchTable(cursor_set->cursors,
198 return SearchTable(cursor_set->cursors,
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentLoader.java 59 // previously returned cursors for filtering/sorting; this currently races
199 List<Cursor> cursors = Lists.newArrayList(); local
213 cursors.add(filtered);
225 Log.d(TAG, "Found " + cursors.size() + " of " + mTasks.size() + " recent queries done");
238 if (cursors.size() > 0) {
239 merged = new MergeCursor(cursors.toArray(new Cursor[cursors.size()]));
  /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/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 195 Cursor[] cursors = (Cursor[]) results.values; local
196 onDirectoryLoadFinished(constraint, cursors[0], cursors[1]);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp 1809 CursorList* cursors = style->cursors(); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/search/
Index.java 235 final Cursor[] cursors = new Cursor[2]; local
239 cursors[0] = database.rawQuery(primarySql, null);
249 cursors[1] = database.rawQuery(secondarySql, null);
251 return new MergeCursor(cursors);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp 1056 const CursorList* cursors = style->cursors(); local
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 3311 CXCursor *cursors = 0; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 710 CursorList* cursors() const { return rareInheritedData->cursorData.get(); } function in class:blink::RenderStyle
    [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java 4155 Cursor[] cursors = new Cursor[]{vc, c}; local
    [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.swt.win32.win32.x86_3.6.1.v3657a.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.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 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 531 milliseconds

1 2