Searched defs:cursor (Results 76 - 100 of 439) 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 DGresume.c33 aarch64_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) argument
36 struct cursor *c = (struct cursor *) cursor;
132 establish_machine_state (struct cursor *c)
140 Debug (8, "copying out cursor state\n");
159 unw_resume (unw_cursor_t *cursor) argument
161 struct cursor *c = (struct cursor *) cursor;
[all...]
/external/libunwind/src/arm/
H A DGresume.c37 arm_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) argument
40 struct cursor *c = (struct cursor *) cursor;
113 establish_machine_state (struct cursor *c)
121 Debug (8, "copying out cursor state\n");
140 unw_resume (unw_cursor_t *cursor) argument
142 struct cursor *c = (struct cursor *) cursor;
[all...]
/external/libunwind/src/hppa/
H A DGis_signal_frame.c29 unw_is_signal_frame (unw_cursor_t *cursor) argument
32 struct cursor *c = (struct cursor *) cursor;
68 Debug (1, "(cursor=%p, ip=0x%08lx) -> %d\n", c, (unsigned) ip, ret);
H A DGresume.c54 hppa_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) argument
57 struct cursor *c = (struct cursor *) cursor;
87 cursor C and establishing them as the current machine state. */
90 establish_machine_state (struct cursor *c)
105 Debug (8, "copying out cursor state\n");
125 unw_resume (unw_cursor_t *cursor) argument
127 struct cursor *c = (struct cursor *) curso
[all...]
/external/libunwind/src/ia64/
H A DGinit_local.c32 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) argument
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) argument
82 struct cursor *c = (struct cursor *) cursor;
89 Debug (1, "(cursor=%p)\n", c);
105 ret = unw_step (cursor);
/external/libunwind/src/ppc32/
H A DGstep.c53 unw_step (unw_cursor_t * cursor) argument
55 struct cursor *c = (struct cursor *) cursor;
61 Debug (1, "(cursor=%p, ip=0x%016lx)\n", c, (unsigned long) c->dwarf.ip);
65 /* Unless the cursor or stack is corrupt or uninitialized,
82 if (likely (!unw_is_signal_frame (cursor)))
108 /* Unless the cursor or stack is corrupt or uninitialized we've most
/external/libunwind/src/sh/
H A DGresume.c33 sh_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) argument
36 struct cursor *c = (struct cursor *) cursor;
120 establish_machine_state (struct cursor *c)
128 Debug (8, "copying out cursor state\n");
147 unw_resume (unw_cursor_t *cursor) argument
149 struct cursor *c = (struct cursor *) cursor;
[all...]
/external/libunwind/src/x86_64/
H A DGresume.c36 x86_64_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) argument
38 struct cursor *c = (struct cursor *) cursor;
49 x86_64_sigreturn(cursor);
64 cursor C and establishing them as the current machine state. */
67 establish_machine_state (struct cursor *c)
82 Debug (8, "copying out cursor state\n");
102 unw_resume (unw_cursor_t *cursor) argument
104 struct cursor *
[all...]
/external/libunwind/tests/
H A DGtest-nomalloc.c57 unw_cursor_t cursor; local
63 if (unw_init_local (&cursor, &uc) < 0)
68 unw_get_reg (&cursor, UNW_REG_IP, &ip);
69 unw_get_reg (&cursor, UNW_REG_SP, &sp);
71 ret = unw_step (&cursor);
H A Dia64-test-sig.c41 unw_cursor_t cursor, cursor2; local
49 if (unw_init_local (&cursor, &uc) < 0)
52 /* get cursor for caller of sighandler: */
53 if (unw_step (&cursor) < 0)
56 cursor2 = cursor;
75 unw_resume (&cursor); /* update context & return to caller of sighandler() */
H A Dtest-init-remote.c52 unw_cursor_t cursor; local
57 if (unw_init_remote (&cursor, unw_local_addr_space, &uc) < 0)
62 unw_get_reg (&cursor, UNW_REG_IP, &ip);
63 unw_get_reg (&cursor, UNW_REG_SP, &sp);
65 if (unw_get_proc_name (&cursor, name, sizeof (name), &off) == 0)
75 ret = unw_step (&cursor);
78 unw_get_reg (&cursor, UNW_REG_IP, &ip);
H A Dtest-mem.c46 unw_cursor_t cursor; local
52 if (unw_init_local (&cursor, &uc) < 0)
57 unw_get_reg (&cursor, UNW_REG_IP, &ip);
58 unw_get_reg (&cursor, UNW_REG_SP, &sp);
63 ret = unw_step (&cursor);
66 unw_get_reg (&cursor, UNW_REG_IP, &ip);
77 unw_cursor_t cursor; local
81 memset (&cursor, 0, sizeof (cursor));
83 return sprintf (string, "hello %p %p\n", &cursor,
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxmouse.c32 // The implementation dependent data for the window manager cursor
40 WMcursor * cursor ; local
44 cursor = (WMcursor *) SDL_malloc (sizeof (WMcursor)) ;
45 if (cursor == NULL) {
51 return cursor ;
54 void NX_FreeWMCursor (_THIS, WMcursor * cursor) argument
57 SDL_free (cursor) ;
75 int NX_ShowWMCursor (_THIS, WMcursor * cursor) argument
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
H A DSDL_sysmouse.cc30 /* The implementation dependent data for the window manager cursor */
42 int QT_ShowWMCursor(_THIS, WMcursor *cursor) argument
47 void QT_FreeWMCursor(_THIS, WMcursor *cursor) argument
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/
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/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/database/
H A DSimpleTestCursorTest.java21 private SimpleTestCursor cursor; field in class:SimpleTestCursorTest
29 cursor = new SimpleTestCursor();
30 shadowContentResolver.setCursor(uri, cursor);
34 cursor.setColumnNames(columnNames);
40 assertThat(cursor.uri, equalTo(uri));
41 assertThat(cursor.projection[0], equalTo("projection"));
42 assertThat(cursor.selection, equalTo("selection"));
43 assertThat(cursor.selectionArgs[0], equalTo("selection"));
44 assertThat(cursor.sortOrder, equalTo("sortOrder"));
49 cursor
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DRewriteRuleElementStream.cs47 * break the cursor tracking I believe.
59 * Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(),
63 protected int cursor = 0; field in class:Antlr.Runtime.Tree.RewriteRuleElementStream
118 cursor = 0;
156 if ( dirty || ( cursor >= n && n == 1 ) )
182 if ( cursor >= n )
194 cursor++; // move cursor even for single element list
198 object o = ToTree( elements[cursor] );
199 cursor
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderElementIterator.java63 private ParserCursor cursor = null; field in class:BasicHeaderElementIterator
88 this.cursor = null;
94 this.cursor = new ParserCursor(0, this.buffer.length());
95 this.cursor.updatePos(((FormattedHeader) h).getValuePos());
102 this.cursor = new ParserCursor(0, this.buffer.length());
111 while (this.headerIt.hasNext() || this.cursor != null) {
112 if (this.cursor == null || this.cursor.atEnd()) {
117 if (this.cursor != null) {
119 while (!this.cursor
[all...]
/external/chromium_org/base/win/
H A Dwrapped_window_proc.cc39 HCURSOR cursor,
52 class_out->hCursor = cursor;
33 InitializeWindowClass( const char16* class_name, WNDPROC window_proc, UINT style, int class_extra, int window_extra, HCURSOR cursor, HBRUSH background, const char16* menu_name, HICON large_icon, HICON small_icon, WNDCLASSEX* class_out) argument
/external/chromium_org/components/autofill/core/browser/
H A Daddress_field.cc39 const size_t cursor = scanner->SaveCursor(); local
65 begin_trailing_non_labeled_fields = cursor;
/external/chromium_org/third_party/freetype/src/base/
H A Dftstream.c42 stream->cursor = 0;
203 *pbytes = (FT_Byte*)stream->cursor;
206 stream->cursor = 0;
242 FT_ASSERT( stream && stream->cursor == 0 );
282 stream->cursor = stream->base;
283 stream->limit = stream->cursor + count;
300 /* set cursor */
301 stream->cursor = stream->base + stream->pos;
302 stream->limit = stream->cursor + count;
314 /* IMPORTANT: The assertion stream->cursor !
728 FT_Byte* cursor; local
[all...]
/external/chromium_org/ui/base/cursor/
H A Dcursor_loader_ozone.cc5 #include "ui/base/cursor/cursor_loader_ozone.h"
9 #include "ui/base/cursor/cursor.h"
10 #include "ui/base/cursor/cursor_util.h"
53 void CursorLoaderOzone::SetPlatformCursor(gfx::NativeCursor* cursor) { argument
54 int native_type = cursor->native_type();
58 // An image cursor is loaded for this type.
61 // The platform cursor was already set via WebCursor::GetPlatformCursor.
62 platform = cursor->platform();
64 // Use default cursor o
[all...]
/external/chromium_org/ui/ozone/platform/dri/
H A Ddri_cursor.cc7 #include "ui/base/cursor/ozone/bitmap_cursor_factory_ozone.h"
31 scoped_refptr<BitmapCursorOzone> cursor = local
33 if (cursor_ == cursor || cursor_window_ != widget)
36 cursor_ = cursor;
/external/chromium_org/ui/ozone/public/
H A Dcursor_factory_ozone.cc49 void CursorFactoryOzone::RefImageCursor(PlatformCursor cursor) { argument
53 void CursorFactoryOzone::UnrefImageCursor(PlatformCursor cursor) { argument

Completed in 485 milliseconds

1234567891011>>