Searched refs:cursor (Results 76 - 100 of 1010) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DCodeCursor.java24 * Gets the cursor. The cursor is the offset in code units from
29 public int cursor(); method in interface:CodeCursor
32 * Gets the base address associated with the current cursor. This
33 * differs from the cursor value when explicitly set (by {@link
/external/libunwind/src/aarch64/
H A DGis_signal_frame.c35 unw_is_signal_frame (unw_cursor_t *cursor) argument
38 struct cursor *c = (struct cursor *) cursor;
/external/libunwind/src/unwind/
H A DSetIP.c31 unw_set_reg (&context->cursor, UNW_REG_IP, new_value);
H A DGetIPInfo.c36 unw_get_reg (&context->cursor, UNW_REG_IP, &val);
37 *ip_before_insn = unw_is_signal_frame (&context->cursor);
H A DSetGR.c38 unw_set_reg (&context->cursor, index, new_value);
42 unw_set_reg (&context->cursor, UNW_IA64_NAT + (index - UNW_IA64_GR), 0);
/external/libunwind/src/x86/
H A DGinit_remote.c30 unw_init_remote (unw_cursor_t *cursor, unw_addr_space_t as, void *as_arg) argument
35 struct cursor *c = (struct cursor *) cursor;
40 Debug (1, "(cursor=%p)\n", c);
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysmouse_c.h27 extern void BE_FreeWMCursor(_THIS, WMcursor *cursor);
30 extern int BE_ShowWMCursor(_THIS, WMcursor *cursor);
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemmouse_c.h27 extern void GEM_FreeWMCursor(_THIS, WMcursor *cursor);
30 extern int GEM_ShowWMCursor(_THIS, WMcursor *cursor);
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macmouse_c.h27 extern void Mac_FreeWMCursor(_THIS, WMcursor *cursor);
30 extern int Mac_ShowWMCursor(_THIS, WMcursor *cursor);
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxmouse_c.h27 void NX_FreeWMCursor (_THIS, WMcursor * cursor) ;
29 extern int NX_ShowWMCursor (_THIS, WMcursor * cursor) ;
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
H A DSDL_sysmouse_c.h27 extern void QT_FreeWMCursor(_THIS, WMcursor *cursor);
30 extern int QT_ShowWMCursor(_THIS, WMcursor *cursor);
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/
H A DSDL_vglmouse_c.h27 extern void VGL_FreeWMCursor(_THIS, WMcursor *cursor);
30 extern int VGL_ShowWMCursor(_THIS, WMcursor *cursor);
H A DSDL_vglmouse.c30 /* The implementation dependent data for the window manager cursor */
36 void VGL_FreeWMCursor(_THIS, WMcursor *cursor) argument
47 int VGL_ShowWMCursor(_THIS, WMcursor *cursor) argument
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
H A DProviderBookmarksUriTest.java74 Cursor cursor = getContentResolver().query(uri, null, null, null, null);
75 assertEquals(1, cursor.getCount());
76 assertTrue(cursor.moveToNext());
77 int index = cursor.getColumnIndex(BookmarkColumns.BOOKMARK);
79 assertEquals(0, cursor.getInt(index));
80 index = cursor.getColumnIndex(BookmarkColumns.CREATED);
82 assertEquals(createdTime, cursor.getLong(index));
83 index = cursor.getColumnIndex(BookmarkColumns.DATE);
85 assertEquals(lastUpdateTime, cursor.getLong(index));
86 index = cursor
[all...]
/external/bison/lib/
H A Dhash.c183 struct hash_entry const *cursor = bucket; local
186 while (cursor = cursor->next, cursor)
211 struct hash_entry const *cursor = bucket; local
218 while (cursor = cursor->next, cursor)
264 struct hash_entry const *cursor; local
269 for (cursor
310 struct hash_entry const *cursor; local
341 struct hash_entry const *cursor; local
373 struct hash_entry const *cursor; local
661 struct hash_entry *cursor; local
699 struct hash_entry *cursor; local
794 struct hash_entry *cursor; local
863 struct hash_entry *cursor; local
1189 struct hash_entry *cursor = table->free_entry_list; local
1218 struct hash_entry *cursor; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dtraverse_util.js110 * Moves the cursor forwards until it has crossed exactly one character.
111 * @param {cvox.Cursor} cursor The cursor location where the search should
112 * start. On exit, the cursor will be immediately to the right of the
120 cursor, elementsEntered, elementsLeft) {
124 if (!cvox.TraverseUtil.treatAsLeafNode(cursor.node)) {
125 for (var i = cursor.index; i < cursor.node.childNodes.length; i++) {
126 var node = cursor.node.childNodes[i];
140 cursor
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
H A DSDL_sysmouse.c39 /* The implementation dependent data for the window manager cursor */
40 /* For some reason when creating a windows cursor, the ands and xors memory
42 with the cursor. If we free the memory prematurely, the app crashes. :-}
77 /* Local functions to convert the SDL cursor mask into Windows format */
90 void WIN_FreeWMCursor(_THIS, WMcursor *cursor) argument
93 if ( cursor->curs == GetCursor() )
95 if ( cursor->curs != NULL )
96 DestroyCursor(cursor->curs);
97 if ( cursor->ands != NULL )
98 SDL_free(cursor
109 WMcursor *cursor; local
187 WIN_ShowWMCursor(_THIS, WMcursor *cursor) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/rexx/
H A Dscanio.c1 uchar *ScanFill(uchar *cursor){ argument
3 s->pos += cursor - s->mrk;
9 if((len = s->lim - cursor) != 0)
10 memcpy(s->eot, cursor, len);
11 cursor = s->eot;
12 s->lim = &cursor[len];
15 cursor -= cnt;
28 cursor = &buf[cursor - s->bot];
34 s->mrk = cursor;
[all...]
/external/chromium-trace/trace-viewer/src/ui/
H A Dquad_view.css13 cursor: default;
/external/chromium_org/content/renderer/
H A Dcursor_utils.h16 // Adapts our cursor info to blink::WebCursorInfo.
17 bool GetWebKitCursorInfo(const WebCursor& cursor,
20 // Adapts blink::CursorInfo to our cursor.
22 WebCursor* cursor,
/external/chromium_org/ui/views/widget/desktop_aura/
H A Dx11_move_loop.h19 // Runs the nested message loop. While the mouse is grabbed, use |cursor| as
20 // the mouse cursor. Returns true if the move-loop is completed successfully.
23 virtual bool RunMoveLoop(aura::Window* window, gfx::NativeCursor cursor) = 0;
25 // Updates the cursor while the move loop is running.
26 virtual void UpdateCursor(gfx::NativeCursor cursor) = 0;
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsmouse_c.h26 /* This is the maximum size of the cursor sprite */
33 extern void GS_FreeWMCursor(_THIS, WMcursor *cursor);
37 extern int GS_ShowWMCursor(_THIS, WMcursor *cursor);
/external/compiler-rt/lib/interception/
H A Dinterception_win.cc84 size_t cursor = 0; local
85 while (cursor < size) {
86 switch (code[cursor]) {
95 cursor++;
98 cursor += 2;
101 cursor += 5;
104 switch (*(unsigned short*)(code + cursor)) { // NOLINT
108 cursor += 2;
113 cursor += 3;
116 cursor
[all...]
/external/libedit/src/
H A Demacs.c50 * Delete character under cursor or list completions if at end of line
58 if (el->el_line.cursor == el->el_line.lastchar) {
60 if (el->el_line.cursor == el->el_line.buffer) {
77 if (el->el_line.cursor > el->el_line.lastchar)
78 el->el_line.cursor = el->el_line.lastchar;
86 * Cut from cursor to end of current word
95 if (el->el_line.cursor == el->el_line.lastchar)
98 cp = c__next_word(el->el_line.cursor, el->el_line.lastchar,
101 for (p = el->el_line.cursor, kp = el->el_chared.c_kill.buf; p < cp; p++)
106 c_delafter(el, (int)(cp - el->el_line.cursor)); /* delet
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java44 /** {@code >= 0;} current output cursor */
45 private int cursor; field in class:ByteArrayAnnotatedOutput
109 this.cursor = 0;
138 byte[] result = new byte[cursor];
139 System.arraycopy(data, 0, result, 0, cursor);
145 return cursor;
150 if (cursor != expectedCursor) {
151 throw new ExceptionWithContext("expected cursor " +
152 expectedCursor + "; actual value: " + cursor);
158 int writeAt = cursor;
[all...]

Completed in 5120 milliseconds

1234567891011>>