Searched refs:cursor (Results 226 - 250 of 978) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/uber/
H A Duber_frame.css31 cursor: pointer;
40 cursor: default;
53 cursor: pointer;
/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/third_party/libjingle/source/talk/base/
H A Dnethelpers.cc62 struct addrinfo* cursor = result;
63 for (; cursor; cursor = cursor->ai_next) {
64 if (family == AF_UNSPEC || cursor->ai_family == family) {
66 if (IPFromAddrInfo(cursor, &ip)) {
/external/chromium_org/third_party/webrtc/base/
H A Dnethelpers.cc45 struct addrinfo* cursor = result;
46 for (; cursor; cursor = cursor->ai_next) {
47 if (family == AF_UNSPEC || cursor->ai_family == family) {
49 if (IPFromAddrInfo(cursor, &ip)) {
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dtable.css8 cursor: col-resize !important;
39 cursor: default;
59 cursor: col-resize;
/external/libedit/src/
H A Dcommon.c85 || el->el_line.cursor >= el->el_line.lastchar)
88 *el->el_line.cursor++ = c;
94 while (count-- && el->el_line.cursor < el->el_line.lastchar)
95 *el->el_line.cursor++ = c;
107 * Delete from beginning of current word to cursor
116 if (el->el_line.cursor == el->el_line.buffer)
119 cp = c__prev_word(el->el_line.cursor, el->el_line.buffer,
122 for (p = cp, kp = el->el_chared.c_kill.buf; p < el->el_line.cursor; p++)
126 c_delbefore(el, (int)(el->el_line.cursor - cp));/* delete before dot */
127 el->el_line.cursor
[all...]
H A Dhistory.c131 hentry_t *cursor; /* Current element in the list */ member in struct:history_t
217 h->cursor = h->list.next;
218 if (h->cursor != &h->list)
219 *ev = h->cursor->ev;
237 h->cursor = h->list.prev;
238 if (h->cursor != &h->list)
239 *ev = h->cursor->ev;
257 if (h->cursor == &h->list) {
262 if (h->cursor->next == &h->list) {
267 h->cursor
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_cursor.py33 it = tu.cursor.get_children()
37 for cursor in tu_nodes:
38 assert cursor.translation_unit is not None
72 cursors = list(tu.cursor.get_children())
75 cursor = cursors[0]
76 assert isinstance(cursor.translation_unit, TranslationUnit)
81 assert isinstance(cursor.translation_unit, TranslationUnit)
84 parent = cursor.semantic_parent
91 for cursor in tu.cursor
[all...]
/external/libunwind/src/arm/
H A DGstep.c36 arm_exidx_step (struct cursor *c)
82 static void adjust_ip(struct cursor *c)
113 unw_handle_signal_frame (unw_cursor_t *cursor) argument
115 struct cursor *c = (struct cursor *) cursor;
124 ret = unw_is_signal_frame (cursor);
174 /* Update the dwarf cursor.
204 unw_step (unw_cursor_t *cursor) argument
206 struct cursor *
[all...]
H A DGregs.c28 tdep_access_reg (struct cursor *c, unw_regnum_t reg, unw_word_t *valp,
76 tdep_access_fpreg (struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp,
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11mouse.c34 /* The implementation dependent data for the window manager cursor */
40 void X11_FreeWMCursor(_THIS, WMcursor *cursor) argument
44 XFreeCursor(SDL_Display, cursor->x_cursor);
48 SDL_free(cursor);
54 WMcursor *cursor; local
64 /* Allocate the cursor memory */
65 cursor = (WMcursor *)SDL_malloc(sizeof(WMcursor));
66 if ( cursor == NULL ) {
75 SDL_free(cursor);
81 SDL_free(cursor);
146 X11_ShowWMCursor(_THIS, WMcursor *cursor) argument
[all...]
/external/chromium_org/base/i18n/
H A Dfile_util_icu.cc103 int cursor = 0; // The ICU macros expect an int. local
104 while (cursor < static_cast<int>(file_name->size())) {
105 int char_begin = cursor;
109 U8_NEXT(file_name->data(), cursor, static_cast<int>(file_name->length()),
113 U16_NEXT(file_name->data(), cursor, static_cast<int>(file_name->length()),
118 unsigned char cur_char = static_cast<unsigned char>((*file_name)[cursor++]);
127 file_name->replace(char_begin, cursor - char_begin, 1, replace_char);
129 // takes one byte/word, so need to adjust the cursor to point to the next
131 cursor = char_begin + 1;
/external/chromium_org/extensions/renderer/resources/
H A Dplatform_app.css13 cursor: default;
/external/chromium_org/media/audio/sounds/
H A Dwav_audio_handler.h24 // Returns true when cursor points to the end of the track.
25 bool AtEnd(size_t cursor) const;
27 // Copies the audio data to |bus| starting from the |cursor| and in
30 bool CopyTo(AudioBus* bus, size_t cursor, size_t* bytes_written) const;
/external/chromium_org/remoting/ios/ui/
H A Dcursor_texture.h24 // The current cursor
29 // Rectangle of the most recent cursor drawn to a GL Texture. On each
30 // successive frame when a new cursor is available this region is cleared on
32 // the cursor is then redrawn.
40 - (const webrtc::MouseCursor&)cursor;
42 - (void)setCursor:(webrtc::MouseCursor*)cursor;
47 // True if the cursor has changed in a way that requires it to be redrawn
/external/libunwind/src/ia64/
H A Dregs.h31 rotate_gr (struct cursor *c, int reg)
56 rotate_fr (struct cursor *c, int reg)
/external/libunwind/src/sh/
H A DGregs.c29 tdep_access_reg (struct cursor *c, unw_regnum_t reg, unw_word_t *valp,
74 tdep_access_fpreg (struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp,
/external/libunwind/tests/
H A DGtest-dyn1.c105 unw_cursor_t cursor; local
115 unw_init_local (&cursor, &uc);
118 while (!unw_is_signal_frame (&cursor))
120 if (unw_step (&cursor) < 0)
129 unw_step (&cursor);
134 unw_get_reg (&cursor, UNW_REG_IP, &ip);
137 if (unw_get_proc_name (&cursor, name, sizeof (name), &offset) == 0
151 while (unw_step (&cursor) > 0);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cid/
H A Dcidparse.c73 if ( ft_strncmp( (char *)stream->cursor,
149 parser->root.cursor = parser->postscript;
150 parser->root.limit = parser->root.cursor + ps_len;
158 arg1 = parser->root.cursor;
161 arg2 = parser->root.cursor;
166 cur = parser->root.cursor;
182 cur = parser->root.cursor;
196 cur = parser->root.cursor;
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultResponseParser.java80 ParserCursor cursor = null;
87 cursor = new ParserCursor(0, this.lineBuf.length());
88 if (lineParser.hasProtocolVersion(this.lineBuf, cursor)) {
99 StatusLine statusline = lineParser.parseStatusLine(this.lineBuf, cursor);
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalysis_results.css13 cursor: text;
43 cursor: pointer;
/external/chromium-trace/trace-viewer/src/ui/
H A Ddrag_handle.css19 cursor: ns-resize;
32 cursor: ew-resize;
/external/chromium_org/chrome/browser/ui/views/app_list/win/
H A Dapp_list_win.h25 // exists, the position of the taskbar, and the mouse cursor. Returns the
30 const gfx::Point& cursor,
/external/chromium_org/content/renderer/pepper/
H A Dfullscreen_container.h33 // Notifies the container that the mouse cursor has changed.
34 virtual void DidChangeCursor(const blink::WebCursorInfo& cursor) = 0;
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dunirepl.h48 * output text of this object. Update the 'cursor' parameter to
49 * give the cursor position and return the length of the
56 * @param cursor output parameter for the cursor position.
67 int32_t& cursor) = 0;

Completed in 716 milliseconds

1234567891011>>