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

1 2 3 4

  /external/webkit/WebCore/platform/wince/
CursorWince.cpp 34 static const Cursor& getCursor(CursorType type)
65 const Cursor& noneCursor() { return getCursor(CursorNone); }
66 const Cursor& pointerCursor() { return getCursor(CursorPointer); }
67 const Cursor& crossCursor() { return getCursor(CursorCross); }
68 const Cursor& handCursor() { return getCursor(CursorHand); }
69 const Cursor& iBeamCursor() { return getCursor(CursorBeam); }
70 const Cursor& waitCursor() { return getCursor(CursorWait); }
71 const Cursor& helpCursor() { return getCursor(CursorHelp); }
72 const Cursor& moveCursor() { return getCursor(CursorMove); }
73 const Cursor& eastResizeCursor() { return getCursor(CursorEastResize);
    [all...]
  /dalvik/dx/src/com/android/dx/util/
Output.java 31 public int getCursor();
37 * @throws RuntimeException thrown if {@code getCursor() !=
  /frameworks/base/core/java/android/widget/
CursorFilter.java 34 Cursor getCursor();
64 Cursor oldCursor = mClient.getCursor();
CursorTreeAdapter.java 106 final Cursor cursor = getChildrenCursor(mGroupCursorHelper.getCursor());
356 return mGroupCursorHelper.getCursor();
388 * @see CursorAdapter#getCursor()
390 public Cursor getCursor() {
391 return mGroupCursorHelper.getCursor();
422 Cursor getCursor() {
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoEncoder.java 372 int mark = output.getCursor();
382 annotate(output.getCursor() - mark, "line_start: " + line);
405 mark = output.getCursor();
409 annotate(output.getCursor() - mark,
421 mark = output.getCursor();
455 annotate(output.getCursor() - mark,
614 int mark = output.getCursor();
620 annotate(output.getCursor() - mark,
690 int mark = output.getCursor();
699 annotate(output.getCursor() - mark
    [all...]
Section.java 150 int cursor = out.getCursor();
DexFile.java 548 int zeroCount = one.getFileOffset() - out.getCursor();
553 out.writeZeroes(one.getFileOffset() - out.getCursor());
567 if (out.getCursor() != fileSize) {
  /packages/apps/Camera/src/com/android/camera/gallery/
BaseImageList.java 92 Cursor cursor = getCursor();
103 private Cursor getCursor() {
117 Cursor cursor = getCursor();
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImageList.java 96 Cursor cursor = getCursor();
107 private Cursor getCursor() {
121 Cursor cursor = getCursor();
197 Cursor cursor = getCursor();
  /cts/tests/tests/database/src/android/database/cts/
CursorWrapperTest.java 101 CursorWrapper cursorWrapper = new CursorWrapper(getCursor());
115 private Cursor getCursor() {
135 CursorWrapper cursorWrapper = new CursorWrapper(getCursor());
189 CursorWrapper cursorWrapper = new CursorWrapper(getCursor());
277 CursorWrapper cursorWrapper = new CursorWrapper(getCursor());
375 CursorWrapper cursorWrapper = new CursorWrapper(getCursor());
542 CursorWrapper cursorWrapper = new CursorWrapper(getCursor());
590 CursorWrapper cursor = new CursorWrapper(getCursor());
603 Cursor cursor = getCursor();
635 CursorWrapper cursorWrapper = new CursorWrapper(getCursor());
    [all...]
CursorJoinerTest.java 85 Cursor cursor1 = getCursor(TABLE_NAME_1, null, null);
86 Cursor cursor2 = getCursor(TABLE_NAME_2, null, null);
98 cursor1 = getCursor(TABLE_NAME_1, null, columnNames);
99 cursor2 = getCursor(TABLE_NAME_2, null, columnNames);
176 Cursor cursor1 = getCursor(TABLE_NAME_1, null, columnNames);
177 Cursor cursor2 = getCursor(TABLE_NAME_2, null, columnNames);
287 private Cursor getCursor(String tableName, String selection, String[] columnNames) {
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteCursorTest.java 87 SQLiteCursor cursor = getCursor();
104 SQLiteCursor cursor = getCursor();
136 SQLiteCursor cursor = getCursor();
205 SQLiteCursor cursor = getCursor();
234 SQLiteCursor cursor = getCursor();
249 SQLiteCursor cursor = getCursor();
293 private SQLiteCursor getCursor() {
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastDatabase.java 146 static Cursor getCursor(SQLiteDatabase db) {
CellBroadcastListActivity.java 73 mAdapterCursor = CellBroadcastDatabase.getCursor(mBroadcastDb);
149 Cursor cursor = mListAdapter.getCursor();
166 Cursor cursor = mListAdapter.getCursor();
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsnList.java 125 int startCursor = out.getCursor();
162 int written = (out.getCursor() - startCursor) / 2;
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader4.java 185 int hasBeenReadColumnIndex = getCursor().getColumnIndex(
187 boolean hasBeenRead = (getCursor().getInt(hasBeenReadColumnIndex) == 1 ? true : false);
MyRssReader5.java 229 int hasBeenReadColumnIndex = getCursor().getColumnIndex(RssContentProvider.HAS_BEEN_READ);
230 boolean hasBeenRead = (getCursor().getInt(hasBeenReadColumnIndex) == 1 ? true : false);
  /packages/apps/Tag/src/com/android/apps/tag/
MyTagList.java 344 if (mAdapter.getCursor() == null || mAdapter.getCursor().isClosed()) {
349 if (mAdapter.getCursor().getCount() == 0) {
372 Cursor cursor = mAdapter.getCursor();
402 Cursor cursor = mAdapter.getCursor();
469 mAdapter.getCursor());
510 Cursor cursor = mAdapter.getCursor();
552 Cursor cursor = mAdapter.getCursor();
  /cts/tests/tests/media/src/android/media/cts/
RingtoneManagerTest.java 127 method = "getCursor",
167 Cursor c = mRingtoneManager.getCursor();
212 Cursor c = mRingtoneManager.getCursor();
236 Cursor c = mRingtoneManager.getCursor();
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorAdapterTest.java 77 assertNull(adapter.getCursor());
82 assertSame(mCursor, adapter.getCursor());
87 assertSame(mCursor, adapter.getCursor());
CursorTreeAdapterTest.java 171 notes = "Test {@link CursorTreeAdapter#getCursor()}",
172 method = "getCursor",
177 assertSame(mGroupCursor, adapter.getCursor());
180 assertNull(adapter.getCursor());
183 assertSame(mGroupCursor, adapter.getCursor());
194 assertSame(mGroupCursor, adapter.getCursor());
197 assertNull(adapter.getCursor());
200 assertSame(mGroupCursor, adapter.getCursor());
226 assertNull(adapter.getCursor());
229 assertSame(mGroupCursor, adapter.getCursor());
    [all...]
CursorAdapterTest.java 132 assertNull(cursorAdapter.getCursor());
140 assertNull(cursorAdapter.getCursor());
148 assertNull(cursorAdapter.getCursor());
156 assertSame(mCursor, cursorAdapter.getCursor());
196 method = "getCursor",
202 assertNull(cursorAdapter.getCursor());
205 assertSame(mCursor, cursorAdapter.getCursor());
208 assertNull(cursorAdapter.getCursor());
ResourceCursorTreeAdapterTest.java 106 assertNull(mResourceCursorTreeAdapter.getCursor());
111 assertEquals(cursor, mResourceCursorTreeAdapter.getCursor());
  /packages/apps/Mms/tests/src/com/android/mms/ui/
MultiPartSmsTests.java 152 Cursor cursor = a.mMsgListAdapter.getCursor();
  /packages/apps/Launcher2/src/com/android/launcher2/
LiveFolderAdapter.java 56 mLauncher.startManagingCursor(getCursor());
190 final Cursor cursor = getCursor();

Completed in 432 milliseconds

1 2 3 4