HomeSort by relevance Sort by last modified time
    Searched refs:cursor (Results 201 - 225 of 1959) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libunwind/src/sh/
Gget_save_loc.c 29 unw_get_save_loc (unw_cursor_t *cursor, int reg, unw_save_loc_t *sloc)
31 struct cursor *c = (struct cursor *) cursor;
Gis_signal_frame.c 67 unw_is_signal_frame (unw_cursor_t *cursor)
70 struct cursor *c = (struct cursor *) cursor;
  /external/libunwind/src/unwind/
GetBSP.c 34 unw_get_reg (&context->cursor, UNW_IA64_BSP, &val);
GetCFA.c 33 unw_get_reg (&context->cursor, UNW_REG_SP, &val);
GetDataRelBase.c 34 unw_get_proc_info (&context->cursor, &pi);
GetIP.c 33 unw_get_reg (&context->cursor, UNW_REG_IP, &val);
GetLanguageSpecificData.c 34 unw_get_proc_info (&context->cursor, &pi);
GetRegionStart.c 34 unw_get_proc_info (&context->cursor, &pi);
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_sysmouse_c.h 27 extern void WIN_FreeWMCursor(_THIS, WMcursor *cursor);
30 extern int WIN_ShowWMCursor(_THIS, WMcursor *cursor);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11mouse_c.h 27 extern void X11_FreeWMCursor(_THIS, WMcursor *cursor);
30 extern int X11_ShowWMCursor(_THIS, WMcursor *cursor);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DatabaseTestBase.java 4 import android.database.Cursor;
93 Cursor cursor = database.query("table_name", new String[]{"second_column", "first_column"}, null, null, null, null, null); local
95 assertThat(cursor.moveToFirst(), equalTo(true));
97 byte[] byteValueFromDatabase = cursor.getBlob(0);
98 String stringValueFromDatabase = cursor.getString(1);
116 Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null); local
118 assertThat(cursor.moveToFirst(), equalTo(true));
120 byte[] byteValueFromDatabase = cursor.getBlob(0)
142 Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null); local
162 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable WHERE `id` = ?", new String[]{"1"}); local
168 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable", null); local
174 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable", new String[]{}); local
218 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable WHERE `id` = ?", null); local
224 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable WHERE `id` = ?", new String[]{}); local
229 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable", new String[]{"1"}); local
242 Cursor cursor = database.query("table_name", new String[]{"second_column", "first_column"}, null, null, null, null, null); local
273 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null); local
286 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null); local
300 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null); local
429 Cursor cursor = database.rawQuery("select * from exectable WHERE `name` = ?", new String[]{name}); local
444 Cursor cursor = database.rawQuery("select * from exectable", null); local
486 Cursor cursor = database.query("table_name", new String[]{"big_int"}, null, null, null, null, null); local
595 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null); local
602 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null); local
    [all...]
  /frameworks/base/core/java/android/content/
CursorLoader.java 19 import android.database.Cursor;
29 * A loader that queries the {@link ContentResolver} and returns a {@link Cursor}.
31 * querying cursors, building on {@link AsyncTaskLoader} to perform the cursor
42 public class CursorLoader extends AsyncTaskLoader<Cursor> {
51 Cursor mCursor;
56 public Cursor loadInBackground() {
64 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection, local
66 if (cursor != null) {
68 // Ensure the cursor window is filled
    [all...]
ContentQueryMap.java 20 import android.database.Cursor;
28 * Caches the contents of a cursor into a Map of String->ContentValues and optionally
29 * keeps the cache fresh by registering for updates on the content backing the cursor. The column of
33 * The cursor data is accessed by row key and column name via getValue().
36 private volatile Cursor mCursor;
47 /** Set when a cursor change notification is received and is cleared on a call to requery(). */
51 * Creates a ContentQueryMap that caches the content backing the cursor
53 * @param cursor the cursor whose contents should be cached
55 * @param keepUpdated true if the cursor's ContentProvider should be monitored for changes and
131 final Cursor cursor = mCursor; local
    [all...]
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastSearchIndexableProvider.java 21 import android.database.Cursor;
55 public Cursor queryXmlResources(String[] projection) {
56 MatrixCursor cursor = new MatrixCursor(INDEXABLES_XML_RES_COLUMNS); local
67 cursor.addRow(ref);
69 return cursor;
73 public Cursor queryRawData(String[] projection) {
74 MatrixCursor cursor = new MatrixCursor(INDEXABLES_RAW_COLUMNS); local
75 return cursor;
79 public Cursor queryNonIndexableKeys(String[] projection) {
80 MatrixCursor cursor = new MatrixCursor(NON_INDEXABLES_KEYS_COLUMNS) local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
LegacyPostalAddressListAdapter.java 21 import android.database.Cursor;
33 * A cursor adapter for the ContactMethods.CONTENT_TYPE content type.
71 return ((Cursor)getItem(position)).getString(POSTAL_DISPLAY_NAME_COLUMN_INDEX);
75 Cursor cursor = ((Cursor)getItem(position)); local
76 long id = cursor.getLong(POSTAL_ID_COLUMN_INDEX);
82 Context context, int partition, Cursor cursor, int position, ViewGroup parent) {
89 protected void bindView(View itemView, int partition, Cursor cursor, int position)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsmouse.c 33 /* The implementation dependent data for the window manager cursor */
39 void GS_FreeWMCursor(_THIS, WMcursor *cursor)
51 static void GS_MoveCursor(_THIS, SDL_Cursor *cursor, int x, int y)
69 /* Remove the cursor image from the DMA area */
85 /* Only draw the new cursor if there was one passed in */
86 if ( cursor ) {
88 cursor->area.x = (x - cursor->hot_x);
89 cursor->area.y = (y - cursor->hot_y)
134 SDL_Cursor *cursor; local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
VideoList.java 20 import android.database.Cursor;
53 protected long getImageId(Cursor cursor) {
54 return cursor.getLong(INDEX_ID);
58 protected BaseImage loadImageFromCursor(Cursor cursor) {
59 long id = cursor.getLong(INDEX_ID);
60 String dataPath = cursor.getString(INDEX_DATA_PATH);
61 long dateTaken = cursor.getLong(INDEX_DATE_TAKEN);
63 dateTaken = cursor.getLong(INDEX_DATE_MODIFIED) * 1000
    [all...]
  /external/ceres-solver/internal/ceres/
compressed_col_sparse_matrix_utils.cc 53 for (int i = 0, cursor = 0; i < num_row_blocks; ++i) {
54 row_block_starts[i] = cursor;
55 cursor += row_blocks[i];
101 for (int i = 0, cursor = 0; i < num_blocks ; ++i) {
102 block_starts[i] = cursor;
103 cursor += blocks[i];
107 int cursor = 0; local
113 (*scalar_ordering)[cursor++] = block_position++;
  /external/chromium_org/media/audio/sounds/
test_data.cc 28 void TestObserver::OnStop(size_t cursor) {
30 cursor_ = cursor;
test_data.h 32 virtual void OnStop(size_t cursor) OVERRIDE;
36 int cursor() const { return cursor_; } function in class:media::TestObserver
  /external/chromium_org/third_party/icu/source/i18n/
uni2name.cpp 88 int32_t cursor = offsets.start; local
95 while (cursor < limit) {
96 UChar32 c = text.char32At(cursor);
102 text.handleReplaceBetween(cursor, cursor+clen, str);
104 cursor += len; // advance cursor and adjust for new text
107 cursor += clen;
113 offsets.start = cursor;
  /external/icu/icu4c/source/i18n/
uni2name.cpp 89 int32_t cursor = offsets.start; local
96 while (cursor < limit) {
97 UChar32 c = text.char32At(cursor);
103 text.handleReplaceBetween(cursor, cursor+clen, str);
105 cursor += len; // advance cursor and adjust for new text
108 cursor += clen;
114 offsets.start = cursor;
  /external/libunwind/src/hppa/
unwind_i.h 42 extern int hppa_local_resume (unw_addr_space_t as, unw_cursor_t *cursor,
44 extern dwarf_loc_t hppa_scratch_loc (struct cursor *c, unw_regnum_t reg);
  /external/libunwind/src/ia64/
Ginit_local.c 32 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc)
40 set_as_arg (struct cursor *c, unw_context_t *uc)
51 get_initial_stack_pointers (struct cursor *c, unw_context_t *uc,
80 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc)
82 struct cursor *c = (struct cursor *) cursor;
89 Debug (1, "(cursor=%p)\n", c);
105 ret = unw_step (cursor);
  /external/libunwind/src/ppc64/
unwind_i.h 46 extern int ppc64_local_resume (unw_addr_space_t as, unw_cursor_t *cursor,
49 extern dwarf_loc_t ppc64_scratch_loc (struct cursor *c, unw_regnum_t reg);

Completed in 433 milliseconds

1 2 3 4 5 6 7 891011>>