Searched defs:cursor (Results 251 - 275 of 439) sorted by relevance

<<1112131415161718

/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macevents.c68 /* Show the current SDL application cursor */
75 { Cursor cursor; local
76 SetCursor(GetQDGlobalsArrow(&cursor));
/external/qemu/distrib/sdl-1.2.15/src/video/picogui/
H A DSDL_pgvideo.c54 // The implementation dependent data for the window manager cursor
56 /* Our cursor is a PicoGUI theme */
64 void PG_FreeWMCursor (_THIS, WMcursor * cursor);
66 int PG_ShowWMCursor (_THIS, WMcursor * cursor);
344 /* FIXME: The cursor stuff isn't implemented yet! */
353 void PG_FreeWMCursor (_THIS, WMcursor * cursor) argument
361 int PG_ShowWMCursor (_THIS, WMcursor * cursor) argument
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosmouse.c28 Implements mouse cursor shape definitions and positioning
44 /* Area to save cursor palette colours changed by SDL.
45 Actual values will be read before we change to the SDL cursor */
58 void RISCOS_FreeWMCursor(_THIS, WMcursor *cursor) argument
60 SDL_free(cursor->data);
61 SDL_free(cursor);
67 WMcursor *cursor; local
73 /* Check to make sure the cursor size is okay */
79 /* Allocate the cursor */
80 cursor
137 RISCOS_ShowWMCursor(_THIS, WMcursor *cursor) argument
251 WIMP_ShowWMCursor(_THIS, WMcursor *cursor) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A DSDL_epocvideo.cpp141 static void EPOC_FreeWMCursor(_THIS, WMcursor *cursor);
142 static int EPOC_ShowWMCursor(_THIS, WMcursor *cursor);
583 return (WMcursor*) 1; //hii! prevents SDL to view a std cursor
586 void EPOC_FreeWMCursor(_THIS, WMcursor* /*cursor*/)
590 int EPOC_ShowWMCursor(_THIS, WMcursor *cursor) argument
/external/qemu/ui/
H A Dinput.c62 QEMUPutKBDEntry *cursor, *cursor_next; local
64 QTAILQ_FOREACH_SAFE(cursor, &kbd_handlers, next, cursor_next) {
65 if (cursor->put_kbd_event == func && cursor->opaque == opaque) {
66 QTAILQ_REMOVE(&kbd_handlers, cursor, next);
153 QEMUPutKBDEntry *cursor; local
154 QTAILQ_FOREACH(cursor, &kbd_handlers, next) {
155 cursor->put_kbd_event(cursor->opaque, keycode);
161 QEMUPutLEDEntry *cursor; local
253 QEMUPutMouseEntry *cursor; local
284 QEMUPutMouseEntry *cursor; local
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCursorAdapter.java50 // if the cursor is null OR there are no views to dispense return null
119 * Constructor. The adapter will call requery() on the cursor whenever
122 * @param c The cursor from which to get the data.
132 * @param c The cursor from which to get the data.
135 * cursor whenever it changes so the most recent
158 * Returns the cursor.
160 * @return the cursor.
220 // throw new IllegalStateException("this should only be called when the cursor is valid");
223 // throw new IllegalStateException("couldn't move cursor to position " + position);
253 // * Makes a new view to hold the data pointed to by cursor
291 changeCursor(Cursor cursor) argument
326 convertToString(Cursor cursor) argument
[all...]
H A DShadowSimpleCursorAdapter.java35 * An easy adapter to map columns from a cursor to TextViews or ImageViews
88 * @param c The database cursor. Can be null if the cursor is not available yet.
90 * if the cursor is not available yet.
94 * parameter. Can be null if the cursor is not available yet.
105 * constructor with their corresponding cursor columns as specified in the
128 public void bindView(View view, Context context, Cursor cursor) { argument
139 bound = binder.setViewValue(v, cursor, from[i]);
143 String text = cursor.getString(from[i]);
201 * @param value the value retrieved from the cursor
309 convertToString(Cursor cursor) argument
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DDatabaseTestBase.java93 Cursor cursor = database.query("table_name", new String[]{"second_column", "first_column"}, null, null, null, null, null);
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);
118 assertThat(cursor.moveToFirst(), equalTo(true));
120 byte[] byteValueFromDatabase = cursor.getBlob(0);
121 String stringValueFromDatabase = cursor.getString(1);
142 Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null);
143 assertThat(cursor
584 assertIdAndName(Cursor cursor, long id, String name) argument
[all...]
H A DSQLiteCursorTest.java27 private SQLiteCursor cursor; field in class:SQLiteCursorTest
49 String[] columnNames = cursor.getColumnNames();
57 String[] columnNames = cursor.getColumnNames();
66 assertThat(cursor.getColumnIndex("id"), equalTo(0));
67 assertThat(cursor.getColumnIndex("name"), equalTo(1));
72 assertThat(cursor.getColumnIndex("Fred"), equalTo(-1));
79 assertThat(cursor.getColumnIndex("id"), equalTo(0));
80 assertThat(cursor.getColumnIndex("name"), equalTo(1));
85 assertThat(cursor.getColumnIndexOrThrow("id"), equalTo(0));
86 assertThat(cursor
[all...]
/external/ceres-solver/internal/ceres/
H A Dcompressed_row_sparse_matrix.cc516 int cursor = 0; local
523 const int saved_cursor = cursor;
526 cursor = saved_cursor;
531 for (int idx2 = row_begin; idx2 <= idx1; ++idx2, ++cursor) {
532 values[program[cursor]] += v1 * m_values[idx2];
540 CHECK_EQ(cursor, program.size());
/external/chromium_org/ash/drag_drop/
H A Ddrag_drop_controller.cc280 gfx::NativeCursor cursor = ui::kCursorNoDrop; local
282 cursor = ui::kCursorCopy;
284 cursor = ui::kCursorAlias;
286 cursor = ui::kCursorGrabbing;
287 ash::Shell::GetInstance()->cursor_manager()->SetCursor(cursor);
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_callbacks.cc343 void IndexedDBCallbacks::OnSuccess(scoped_refptr<IndexedDBCursor> cursor, argument
355 int32 ipc_object_id = dispatcher_host_->Add(cursor.get());
/external/chromium_org/content/plugin/
H A Dwebplugin_delegate_stub.cc278 WebCursor* cursor) {
281 cursor->InitFromCursorInfo(cursor_info);
275 OnHandleInputEvent( const blink::WebInputEvent *event, bool* handled, WebCursor* cursor) argument
/external/chromium_org/google_apis/gaia/
H A Doauth_request_signer.cc91 OAuthRequestSigner::Parameters::const_iterator cursor; local
94 for (cursor = parameters.begin(), limit = parameters.end();
95 cursor != limit;
96 ++cursor) {
101 result += OAuthRequestSigner::Encode(cursor->first);
103 result += OAuthRequestSigner::Encode(cursor->second);
130 std::string::const_iterator cursor; local
138 for (cursor = query.begin(), limit = query.end();
139 cursor != limit;
140 ++cursor) {
301 std::string::const_iterator cursor; local
339 std::string::const_iterator cursor; local
[all...]
/external/chromium_org/pdf/
H A Dpreview_mode_client.cc44 void PreviewModeClient::UpdateCursor(PP_CursorType_Dev cursor) { argument
/external/chromium_org/remoting/host/
H A Ddesktop_session_agent.cc302 // Start the video capturer and mouse cursor monitor.
333 void DesktopSessionAgent::OnMouseCursor(webrtc::MouseCursor* cursor) { argument
336 scoped_ptr<webrtc::MouseCursor> owned_cursor(cursor);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DChrome.cpp362 void Chrome::setCursor(const Cursor& cursor) argument
364 m_client->setCursor(cursor);
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBObjectStore.cpp205 exceptionState.throwDOMException(DataError, "The effective object store of this cursor uses in-line keys and evaluating the key path of the value parameter results in a different value than the cursor's effective key.");
336 // cursor success handlers are kept alive.
371 IDBCursorWithValue* cursor = 0; variable
373 cursor = cursorAny->idbCursorWithValue();
377 if (cursor && !cursor->isDeleted()) {
378 cursor->continueFunction(static_cast<IDBKey*>(0), static_cast<IDBKey*>(0), ASSERT_NO_EXCEPTION);
380 IDBKey* primaryKey = cursor->idbPrimaryKey();
381 ScriptValue value = cursor
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_tracker.h112 CursorPtr cursor; member in struct:_modesettingRec
/external/chromium_org/third_party/webrtc/base/
H A Dwin32.cc121 char* cursor = dst; local
127 *cursor++ = ':';
128 *cursor++ = ':';
130 cursor += rtc::sprintfn(cursor, INET6_ADDRSTRLEN - 2, "ffff:");
134 inet_ntop_v4(as_v4, cursor,
135 static_cast<socklen_t>(INET6_ADDRSTRLEN - (cursor - dst)));
139 cursor += rtc::sprintfn(cursor,
140 INET6_ADDRSTRLEN - (cursor
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dfile.c77 yasm_fill_helper(yasm_scanner *s, unsigned char **cursor, argument
93 *cursor -= cnt;
103 *cursor = &buf[*cursor - s->bot];
/external/chromium_org/ui/base/cursor/
H A Dcursor.h90 // Ref-counted cursor that supports both default and custom cursors.
99 Cursor(const Cursor& cursor);
118 bool operator==(const Cursor& cursor) const {
119 return native_type_ == cursor.native_type_ &&
120 platform_cursor_ == cursor.platform_cursor_ &&
121 device_scale_factor_ == cursor.device_scale_factor_;
124 bool operator!=(const Cursor& cursor) const {
125 return native_type_ != cursor.native_type_ ||
126 platform_cursor_ != cursor.platform_cursor_ ||
127 device_scale_factor_ != cursor
130 operator =(const Cursor& cursor) argument
[all...]
/external/chromium_org/ui/ozone/platform/egltest/
H A Dozone_platform_egltest.cc71 virtual void SetCursor(PlatformCursor cursor) OVERRIDE;
144 void EgltestWindow::SetCursor(PlatformCursor cursor) { argument
/external/libedit/src/
H A Del.h76 Char *cursor; /* Cursor position */ member in struct:el_line_t
H A Dhistedit.h64 const char *cursor; member in struct:lineinfo
269 const wchar_t *cursor; member in struct:lineinfow

Completed in 531 milliseconds

<<1112131415161718