Searched defs:cursor (Results 51 - 75 of 439) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_libunwind-inl.h79 unw_cursor_t cursor; variable
91 int ret = unw_init_local(&cursor, &uc);
96 if (unw_step(&cursor) <= 0) {
100 if (unw_get_reg(&cursor, UNW_REG_SP, &next_sp)) {
107 if (unw_get_reg(&cursor, UNW_REG_IP, (unw_word_t *) &ip) < 0) {
114 if (unw_step(&cursor) <= 0) {
119 if (unw_get_reg(&cursor, UNW_REG_SP, &next_sp) , 0) {
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_libunwind-inl.h79 unw_cursor_t cursor; variable
91 int ret = unw_init_local(&cursor, &uc);
96 if (unw_step(&cursor) <= 0) {
100 if (unw_get_reg(&cursor, UNW_REG_SP, &next_sp)) {
107 if (unw_get_reg(&cursor, UNW_REG_IP, (unw_word_t *) &ip) < 0) {
114 if (unw_step(&cursor) <= 0) {
119 if (unw_get_reg(&cursor, UNW_REG_SP, &next_sp) , 0) {
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dmouse_cursor.cc31 MouseCursor* MouseCursor::CopyOf(const MouseCursor& cursor) { argument
32 return cursor.image()
33 ? new MouseCursor(BasicDesktopFrame::CopyOf(*cursor.image()),
34 cursor.hotspot())
/external/chromium_org/ui/base/cursor/
H A Dcursor.cc5 #include "ui/base/cursor/cursor.h"
21 Cursor::Cursor(const Cursor& cursor) argument
22 : native_type_(cursor.native_type_),
23 platform_cursor_(cursor.platform_cursor_),
24 device_scale_factor_(cursor.device_scale_factor_) {
42 void Cursor::Assign(const Cursor& cursor) { argument
43 if (*this == cursor)
47 native_type_ = cursor.native_type_;
48 platform_cursor_ = cursor
[all...]
/external/chromium_org/ui/ozone/platform/dri/
H A Ddri_window_manager.h40 DriCursor* cursor() const { return cursor_.get(); } function in class:ui::DriWindowManager
43 // Reset the cursor location based on the list of active windows.
/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;
H A DGstep.c31 unw_handle_signal_frame (unw_cursor_t *cursor) argument
33 struct cursor *c = (struct cursor *) cursor;
41 ret = unw_is_signal_frame (cursor);
59 /* Update the dwarf cursor.
107 unw_step (unw_cursor_t *cursor) argument
109 struct cursor *c = (struct cursor *) cursor;
[all...]
/external/libunwind/src/hppa/
H A DGstep.c30 unw_step (unw_cursor_t *cursor) argument
32 struct cursor *c = (struct cursor *) cursor;
35 Debug (1, "(cursor=%p, ip=0x%08x)\n", c, (unsigned) c->dwarf.ip);
53 if (unw_is_signal_frame (cursor))
/external/libunwind/src/ia64/
H A DGget_save_loc.c34 unw_get_save_loc (unw_cursor_t *cursor, int reg, unw_save_loc_t *sloc) argument
36 struct cursor *c = (struct cursor *) cursor;
/external/libunwind/src/mi/
H A Dbacktrace.c38 unw_cursor_t cursor; local
42 if (unlikely (unw_init_local (&cursor, uc) < 0))
45 while (unw_step (&cursor) > 0)
50 if (unw_get_reg (&cursor, UNW_REG_IP, &ip) < 0)
60 unw_cursor_t cursor; local
66 if (unlikely (unw_init_local (&cursor, &uc) < 0))
69 if (unlikely (tdep_trace (&cursor, buffer, &n) < 0))
/external/libunwind/src/ppc/
H A DGis_signal_frame.c31 unw_is_signal_frame (unw_cursor_t * cursor) argument
33 struct cursor *c = (struct cursor *) cursor;
/external/libunwind/src/ppc32/
H A DGresume.c46 ppc32_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) argument
55 cursor C and establishing them as the current machine state. */
58 establish_machine_state (struct cursor *c)
65 unw_resume (unw_cursor_t *cursor) argument
67 struct cursor *c = (struct cursor *) cursor;
70 Debug (1, "(cursor=%p)\n", c);
/external/libunwind/src/ppc64/
H A DGresume.c46 ppc64_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) argument
55 cursor C and establishing them as the current machine state. */
58 establish_machine_state (struct cursor *c)
65 unw_resume (unw_cursor_t *cursor) argument
67 struct cursor *c = (struct cursor *) cursor;
70 Debug (1, "(cursor=%p)\n", c);
/external/libunwind/src/sh/
H A DGis_signal_frame.c67 unw_is_signal_frame (unw_cursor_t *cursor) argument
70 struct cursor *c = (struct cursor *) cursor;
H A DGstep.c31 unw_handle_signal_frame (unw_cursor_t *cursor) argument
33 struct cursor *c = (struct cursor *) cursor;
41 ret = unw_is_signal_frame (cursor);
66 /* Update the dwarf cursor.
98 unw_step (unw_cursor_t *cursor) argument
100 struct cursor *c = (struct cursor *) cursor;
[all...]
/external/libunwind/src/x86/
H A DGresume.c32 cursor C and establishing them as the current machine state. */
35 establish_machine_state (struct cursor *c)
50 Debug (8, "copying out cursor state\n");
70 unw_resume (unw_cursor_t *cursor) argument
72 struct cursor *c = (struct cursor *) cursor;
75 Debug (1, "(cursor=%p)\n", c);
H A DGstep.c30 unw_step (unw_cursor_t *cursor) argument
32 struct cursor *c = (struct cursor *) cursor;
35 Debug (1, "(cursor=%p, ip=0x%08x)\n", c, (unsigned) c->dwarf.ip);
59 if (unw_is_signal_frame (cursor))
61 ret = unw_handle_signal_frame(cursor);
/external/apache-http/src/org/apache/http/impl/cookie/
H A DNetscapeDraftHeaderParser.java66 final ParserCursor cursor) throws ParseException {
70 if (cursor == null) {
71 throw new IllegalArgumentException("Parser cursor may not be null");
73 NameValuePair nvp = this.nvpParser.parseNameValuePair(buffer, cursor, DELIMITERS);
75 while (!cursor.atEnd()) {
76 NameValuePair param = this.nvpParser.parseNameValuePair(buffer, cursor, DELIMITERS);
64 parseHeader( final CharArrayBuffer buffer, final ParserCursor cursor) argument
/external/apache-http/src/org/apache/http/message/
H A DHeaderValueParser.java89 * @param cursor the parser cursor containing the current position and
98 ParserCursor cursor) throws ParseException;
106 * @param cursor the parser cursor containing the current position and
115 ParserCursor cursor) throws ParseException;
192 * @param cursor the parser cursor containing the current position and
201 ParserCursor cursor) throws ParseException;
208 * @param cursor th
96 parseElements( CharArrayBuffer buffer, ParserCursor cursor) argument
113 parseHeaderElement( CharArrayBuffer buffer, ParserCursor cursor) argument
199 parseParameters( CharArrayBuffer buffer, ParserCursor cursor) argument
214 parseNameValuePair( CharArrayBuffer buffer, ParserCursor cursor) argument
[all...]
H A DLineParser.java73 * @param cursor the parser cursor containing the current position and
82 ParserCursor cursor) throws ParseException;
95 * @param cursor the cursor at which to check for a protocol version, or
106 ParserCursor cursor);
113 * @param cursor the parser cursor containing the current position and
122 ParserCursor cursor) throws ParseException;
129 * @param cursor th
80 parseProtocolVersion( CharArrayBuffer buffer, ParserCursor cursor) argument
104 hasProtocolVersion( CharArrayBuffer buffer, ParserCursor cursor) argument
120 parseRequestLine( CharArrayBuffer buffer, ParserCursor cursor) argument
136 parseStatusLine( CharArrayBuffer buffer, ParserCursor cursor) argument
[all...]
/external/chromium_org/chrome/browser/ui/views/app_list/linux/
H A Dapp_list_linux.cc55 const gfx::Point& cursor,
65 // Snap to the shelf edge. If the cursor is greater than the window
66 // width/height away, anchor to the corner. Otherwise, anchor to the cursor
78 if (positioner.GetCursorDistanceFromShelf(edge, cursor) > snap_distance)
81 return positioner.GetAnchorPointForShelfCursor(edge, cursor);
86 gfx::Point cursor = gfx::Screen::GetNativeScreen()->GetCursorScreenPoint(); local
89 gfx::Display display = screen->GetDisplayNearestPoint(cursor);
109 cursor,
53 FindAnchorPoint(const gfx::Size& view_size, const gfx::Display& display, const gfx::Point& cursor, AppListPositioner::ScreenEdge edge, bool center_window) argument
/external/chromium_org/chrome/browser/ui/views/app_list/win/
H A Dapp_list_win.cc17 // If the mouse cursor is less than this distance, in pixels, away from the
48 const gfx::Point& cursor,
65 // Snap to the taskbar edge. If the cursor is greater than kSnapDistance away,
66 // anchor to the corner. Otherwise, anchor to the cursor position.
74 if (positioner.GetCursorDistanceFromShelf(edge, cursor) > kSnapDistance)
77 return positioner.GetAnchorPointForShelfCursor(edge, cursor);
82 gfx::Point cursor = gfx::Screen::GetNativeScreen()->GetCursorScreenPoint(); local
85 gfx::Display display = screen->GetDisplayNearestPoint(cursor);
92 cursor,
46 FindAnchorPoint(const gfx::Size& view_size, const gfx::Display& display, const gfx::Point& cursor, const gfx::Rect& taskbar_rect, bool center_window) argument
/external/chromium_org/media/audio/sounds/
H A Dtest_data.h32 virtual void OnStop(size_t cursor) OVERRIDE;
36 int cursor() const { return cursor_; } function in class:media::TestObserver
/external/chromium_org/remoting/host/
H A Dipc_mouse_cursor_monitor.cc30 // Ignore. DesktopSessionAgent will capture the cursor at the same time it
36 scoped_ptr<webrtc::MouseCursor> cursor) {
38 callback_->OnMouseCursor(cursor.release());
35 OnMouseCursor( scoped_ptr<webrtc::MouseCursor> cursor) argument
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DBaseCodeCursor.java29 private int cursor; field in class:BaseCodeCursor
36 this.cursor = 0;
40 public final int cursor() { method in class:BaseCodeCursor
41 return cursor;
46 int mapped = baseAddressMap.get(cursor);
47 return (mapped >= 0) ? mapped : cursor;
56 * Advance the cursor by the indicated amount.
59 cursor += amount;

Completed in 4128 milliseconds

1234567891011>>