Searched refs:cursor (Results 276 - 300 of 1010) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
H A Dscreen_capturer_win_gdi.cc21 #include "webrtc/modules/desktop_capture/win/cursor.h"
135 // Check for cursor shape update.
288 LOG_F(LS_ERROR) << "Unable to get cursor info. Error = " << GetLastError();
298 scoped_ptr<MouseCursorShape> cursor(new MouseCursorShape);
299 cursor->hotspot = cursor_image->hotspot();
300 cursor->size = cursor_image->image()->size();
303 cursor->data.append(current_row,
309 // Compare the current cursor with the last one we sent to the client. If
310 // they're the same, then don't bother sending the cursor again.
311 if (last_cursor_.size.equals(cursor
[all...]
/external/libunwind/src/aarch64/
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/chromium_org/ui/ozone/platform/dri/
H A Ddri_surface_factory_unittest.cc140 SkBitmap cursor; local
141 // Buffers 0 and 1 are the cursor buffers.
142 cursor.setInfo(dri_->buffers()[1]->getCanvas()->imageInfo());
143 EXPECT_TRUE(dri_->buffers()[1]->getCanvas()->readPixels(&cursor, 0, 0));
146 for (int i = 0; i < cursor.height(); ++i) {
147 for (int j = 0; j < cursor.width(); ++j) {
149 EXPECT_EQ(SK_ColorWHITE, cursor.getColor(j, i));
152 cursor.getColor(j, i));
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/views/corewm/
H A Dcursor_height_provider_win.cc75 // Gets the vertical offset between specified cursor's hotpoint and it's bottom.
77 // Gets the cursor image data and extract cursor's visible height.
78 // Based on that get's what should be the vertical offset between cursor's
127 CURSORINFO cursor = {0}; local
128 cursor.cbSize = sizeof(cursor);
129 GetCursorInfo(&cursor);
135 cached_heights->find(cursor.hCursor);
139 const int height = CalculateCursorHeight(cursor
[all...]
/external/qemu/util/
H A Dpath.c118 follow_path(const struct pathelem *cursor, const char *name) argument
126 return cursor->pathname;
129 return follow_path(cursor->parent, name + namelen);
132 return follow_path(cursor, name + namelen);
134 for (i = 0; i < cursor->num_entries; i++)
135 if (strneq(name, namelen, cursor->entries[i]->name))
136 return follow_path(cursor->entries[i], name + namelen);
/external/clang/tools/libclang/
H A DCXCursor.cpp82 // Check if cursor points to a selector id.
503 // Check if cursor points to a selector id.
865 void cxcursor::getOverriddenCursors(CXCursor cursor, argument
867 assert(clang_isDeclaration(cursor.kind));
868 const NamedDecl *D = dyn_cast_or_null<NamedDecl>(getCursorDecl(cursor));
872 CXTranslationUnit TU = getCursorTU(cursor);
883 cxcursor::getSelectorIdentifierIndexAndLoc(CXCursor cursor) { argument
884 if (cursor.kind == CXCursor_ObjCMessageExpr) {
885 if (cursor.xdata != -1)
886 return std::make_pair(cursor
900 getSelectorIdentifierCursor(int SelIdx, CXCursor cursor) argument
923 getTypeRefCursor(CXCursor cursor) argument
982 clang_Cursor_isNull(CXCursor cursor) argument
986 clang_Cursor_getTranslationUnit(CXCursor cursor) argument
1060 getHashValue(const CXCursor &cursor) argument
1081 clang_CXCursorSet_contains(CXCursorSet set, CXCursor cursor) argument
1088 clang_CXCursorSet_insert(CXCursorSet set, CXCursor cursor) argument
1103 clang_getCursorCompletionString(CXCursor cursor) argument
1160 clang_getOverriddenCursors(CXCursor cursor, CXCursor **overridden, unsigned *num_overridden) argument
[all...]
H A DCXCursor.h66 /// \brief Unpack an ObjCSuperClassRef cursor into the interface it references
76 /// \brief Unpack an ObjCProtocolRef cursor into the protocol it references
86 /// \brief Unpack an ObjCClassRef cursor into the class it references
95 /// \brief Unpack a TypeRef cursor into the class it references
103 /// \brief Unpack a TemplateRef cursor into the template it references and
113 /// \brief Unpack a NamespaceRef cursor into the namespace or namespace alias
121 /// \brief Unpack a VariableRef cursor into the variable it references and the
129 /// \brief Unpack a MemberRef cursor into the field it references and the
133 /// \brief Create a CXX base specifier cursor.
137 /// \brief Unpack a CXXBaseSpecifier cursor int
267 getSelectorIdentifierIndex(CXCursor cursor) argument
270 getSelectorIdentifierLoc(CXCursor cursor) argument
276 getTypeRefedCallExprCursor(CXCursor cursor) argument
[all...]
/external/libedit/src/
H A Dchared.c68 vu->cursor = (int)(el->el_line.cursor - el->el_line.buffer);
105 if (el->el_line.cursor < el->el_line.lastchar) {
107 for (cp = el->el_line.lastchar; cp >= el->el_line.cursor; cp--)
115 * Delete num characters after the cursor
121 if (el->el_line.cursor + num > el->el_line.lastchar)
122 num = (int)(el->el_line.lastchar - el->el_line.cursor);
126 cv_yank(el, el->el_line.cursor, num);
132 for (cp = el->el_line.cursor; cp <= el->el_line.lastchar; cp++)
141 * Delete the character after the cursor, d
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-bce.cc236 for (HInstruction* cursor = end_of_scan_range; cursor != insert_before;) {
237 if (cursor == left_input) must_move_left_input = true;
238 if (cursor == right_input) must_move_right_input = true;
239 if (cursor == index) must_move_index = true;
240 if (cursor->previous() == NULL) {
241 cursor = cursor->block()->dominator()->end();
243 cursor = cursor
[all...]
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_positioner.cc117 const gfx::Point& cursor) const {
122 anchor = gfx::Point(work_area.x(), cursor.y());
125 anchor = gfx::Point(work_area.right(), cursor.y());
128 anchor = gfx::Point(cursor.x(), work_area.y());
131 anchor = gfx::Point(cursor.x(), work_area.bottom());
174 const gfx::Point& cursor) const {
180 return std::max(0, cursor.x() - work_area.x());
182 return std::max(0, work_area.right() - cursor.x());
184 return std::max(0, cursor.y() - work_area.y());
186 return std::max(0, work_area.bottom() - cursor
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dstrrepl.cpp28 * text and sets the cursor to the given position.
32 * @param theCursorPos cursor position that will be returned by
49 * text and does not modify the cursor.
105 int32_t& cursor) {
118 // Setup default cursor position (for cursorPos within output)
158 // Record the position of the cursor
177 int32_t len = r->replace(text, destLimit, destLimit, cursor);
188 // Record the position of the cursor
203 // Adjust the cursor for positions outside the key. These
231 cursor
102 replace(Replaceable& text, int32_t start, int32_t limit, int32_t& cursor) argument
245 int32_t cursor = cursorPos; local
[all...]
/external/icu/icu4c/source/i18n/
H A Dstrrepl.cpp28 * text and sets the cursor to the given position.
32 * @param theCursorPos cursor position that will be returned by
49 * text and does not modify the cursor.
105 int32_t& cursor) {
118 // Setup default cursor position (for cursorPos within output)
158 // Record the position of the cursor
177 int32_t len = r->replace(text, destLimit, destLimit, cursor);
188 // Record the position of the cursor
203 // Adjust the cursor for positions outside the key. These
231 cursor
102 replace(Replaceable& text, int32_t start, int32_t limit, int32_t& cursor) argument
245 int32_t cursor = cursorPos; local
[all...]
/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/e2fsprogs/e2fsck/
H A Dea_refcount.c34 blk_t cursor; member in struct:ea_refcount
73 refcount->cursor = 0;
175 if (refcount->cursor >= refcount->count)
176 refcount->cursor = 0;
177 if (blk == refcount->list[refcount->cursor].ea_blk)
178 return &refcount->list[refcount->cursor++];
180 printf("Non-cursor get_refcount_el: %u\n", blk);
185 refcount->cursor = mid+1;
275 refcount->cursor = 0;
285 if (refcount->cursor >
[all...]
/external/libunwind/src/x86/
H A DGos-freebsd.c39 unw_is_signal_frame (unw_cursor_t *cursor) argument
41 struct cursor *c = (struct cursor *) cursor;
100 unw_handle_signal_frame (unw_cursor_t *cursor) argument
102 struct cursor *c = (struct cursor *) cursor;
142 x86_get_scratch_loc (struct cursor *c, unw_regnum_t reg)
335 x86_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, voi argument
[all...]
H A DGos-linux.c30 unw_is_signal_frame (unw_cursor_t *cursor) argument
32 struct cursor *c = (struct cursor *) cursor;
71 unw_handle_signal_frame (unw_cursor_t *cursor) argument
73 struct cursor *c = (struct cursor *) cursor;
141 x86_get_scratch_loc (struct cursor *c, unw_regnum_t reg)
283 x86_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, voi argument
[all...]
/external/libunwind/src/x86_64/
H A DGtrace.c215 unw_cursor_t *cursor,
221 struct cursor *c = (struct cursor *) cursor;
234 /* Reinitialise cursor to this instruction - but undo next/prev RIP
248 && likely((ret = unw_step (cursor)) >= 0))
273 trace_lookup (unw_cursor_t *cursor, argument
330 return trace_init_addr (frame, cursor, cfa, rip, rbp, rsp);
397 tdep_trace (unw_cursor_t *cursor, void **buffer, int *size) argument
399 struct cursor *
214 trace_init_addr(unw_tdep_frame_t *f, unw_cursor_t *cursor, unw_word_t cfa, unw_word_t rip, unw_word_t rbp, unw_word_t rsp) argument
[all...]
/external/mksh/src/
H A Dedit.c177 * If successful, *lenp contains the new length. Note: cursor should be
1255 /* ad-hoc hack for fixing the cursor position */
1413 /* Delete nc chars to the right of the cursor (including cursor position) */
2139 * upper case character or underscore indicating the cursor position:
2160 * the cursor, do not change cursor position
2179 * cursor, move cursor position along one.
3255 * Will position the cursor correctl
3341 ssize_t cursor; member in struct:edstate
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
H A Dfeed.css16 cursor: pointer;
30 cursor: pointer;
45 cursor: pointer;
/external/chromium_org/media/audio/sounds/
H A Dwav_audio_handler.cc85 bool WavAudioHandler::AtEnd(size_t cursor) const {
86 return data_.size() <= cursor;
90 size_t cursor,
98 if (AtEnd(cursor)) {
103 (data_.size() - cursor) / params_.GetBytesPerFrame();
105 bus->FromInterleaved(data_.data() + cursor, frames,
89 CopyTo(AudioBus* bus, size_t cursor, size_t* bytes_written) const argument
/external/chromium_org/tools/perf/page_sets/endure/
H A Dindexeddb_app_worker.js178 var cursor = cursorRequest.result;
179 if (cursor) {
184 var key = cursor.key;
185 var chunk = cursor.value;
207 cursor.delete(key);
208 cursor.continue();
/external/chromium_org/ppapi/examples/mouse_cursor/
H A Dmouse_cursor.cc60 // Top part gets custom cursor of wait.
63 // Next part gets custom image cursor.
64 pp::ImageData cursor(this, pp::ImageData::GetNativeImageDataFormat(),
68 FillRect(&cursor, 0, 0, 32, 32, 0x80000080);
69 pp::MouseCursor::SetCursor(this, PP_MOUSECURSOR_TYPE_CUSTOM, cursor,
72 // Next part gets no cursor.
/external/libcxxabi/src/Unwind/
H A DUnwindLevel1.c403 unw_cursor_t *cursor = (unw_cursor_t *)context; local
406 if (unw_get_proc_info(cursor, &frameInfo) == UNW_ESUCCESS)
422 unw_cursor_t *cursor = (unw_cursor_t *)context; local
424 unw_get_reg(cursor, index, &result);
439 unw_cursor_t *cursor = (unw_cursor_t *)context; local
440 unw_set_reg(cursor, index, new_value);
447 unw_cursor_t *cursor = (unw_cursor_t *)context; local
449 unw_get_reg(cursor, UNW_REG_IP, &result);
464 unw_cursor_t *cursor = (unw_cursor_t *)context; local
465 unw_set_reg(cursor, UNW_REG_I
473 unw_cursor_t *cursor = (unw_cursor_t *)context; local
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleSubtreeStream.as52 if ( dirty || (cursor>=n && n==1) ) {

Completed in 4885 milliseconds

<<11121314151617181920>>